ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login

    What Are You Doing Right Now

    Scheduled Pinned Locked Moved Water Closet
    time waster
    88.9k Posts 285 Posters 43.6m Views
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • scottalanmillerS
      scottalanmiller
      last edited by

      Powering down a Windows Server 2003 R2 host and it is suddenly trying to apply.... TWENTY FIVE updates.

      Holy crap, WTF.

      1 Reply Last reply Reply Quote 0
      • scottalanmillerS
        scottalanmiller
        last edited by

        Trying to get to the boot menu of a Dell PowerEdge 2650.

        black3dynamiteB GreyG dbeatoD 3 Replies Last reply Reply Quote 0
        • black3dynamiteB
          black3dynamite @scottalanmiller
          last edited by

          @scottalanmiller said in What Are You Doing Right Now:

          Trying to get to the boot menu of a Dell PowerEdge 2650.

          Wow! What OS is running on that?

          1 Reply Last reply Reply Quote 0
          • GreyG
            Grey @scottalanmiller
            last edited by Grey

            @scottalanmiller said in What Are You Doing Right Now:

            Trying to get to the boot menu of a Dell PowerEdge 2650.

            wow. Why?

            1 Reply Last reply Reply Quote 0
            • dbeatoD
              dbeato @scottalanmiller
              last edited by

              @scottalanmiller said in What Are You Doing Right Now:

              Trying to get to the boot menu of a Dell PowerEdge 2650.

              I retired my last 2650 in 2012 and it had a Diskette to allow BOOT to USB !

              1 Reply Last reply Reply Quote 0
              • siringoS
                siringo
                last edited by

                beautiful sunny clear -1 degree morning. TGIF.

                1 Reply Last reply Reply Quote 1
                • T
                  thecreaitvone91
                  last edited by

                  Possibly looking into do some side work on UpWork for random IT Networking Jobs.

                  1 Reply Last reply Reply Quote 1
                  • EddieJenningsE
                    EddieJennings
                    last edited by

                    Poking around with Stratis for the first time.

                    1 Reply Last reply Reply Quote 0
                    • T
                      thecreaitvone91
                      last edited by

                      Wondering... What if the reason microsoft is release so much of there software for linux is because the next version of windows will be Windows the Linux Distro.. maybe with a compatiblity layer better than wine to run current apps til they convert to native apps..

                      1 Reply Last reply Reply Quote 0
                      • black3dynamiteB
                        black3dynamite
                        last edited by

                        Total Annihilation Commander Pack giveaway on GOG

                        1 Reply Last reply Reply Quote 1
                        • black3dynamiteB
                          black3dynamite
                          last edited by

                          31 Games on GOG
                          a1c51596-113a-4a62-b1cf-f9dd039e7c96-image.png

                          1 Reply Last reply Reply Quote 0
                          • WrCombsW
                            WrCombs
                            last edited by

                            Just had a call:

                            Customer:"yeah, our terminal is broke, we changed it out with a different one.. "

                            Me: "well what happened to the terminal.."

                            Customer: "It was dropped violently...."

                            "what...? "

                            travisdh1T 1 Reply Last reply Reply Quote 0
                            • scottalanmillerS
                              scottalanmiller
                              last edited by

                              Looked at another house today, but it's just too small and needs too much maintenance stuff.

                              DashrenderD 1 Reply Last reply Reply Quote 0
                              • travisdh1T
                                travisdh1 @WrCombs
                                last edited by

                                @WrCombs said in What Are You Doing Right Now:

                                Just had a call:

                                Customer:"yeah, our terminal is broke, we changed it out with a different one.. "

                                Me: "well what happened to the terminal.."

                                Customer: "It was dropped violently...."

                                "what...? "

                                I.E. Someone got mad about something unrelated and smashed it on a concrete floor somewhere.

                                WrCombsW 1 Reply Last reply Reply Quote 1
                                • black3dynamiteB
                                  black3dynamite
                                  last edited by

                                  Discovered a wicked way of auto answering mysql_secure_installation.
                                  https://bertvv.github.io/notes-to-self/2015/11/16/automating-mysql_secure_installation/#comment-4927261334

                                  printf "\nn\nn\nY\nY\nY\nY\n" | sudo mysql_secure_installation
                                  
                                  export DB_ROOT_PASS="$(head /dev/urandom | tr -dc A-Za-z0-9 | head -c 13)"
                                  mysql -e "UPDATE mysql.user SET Password=PASSWORD('$DB_ROOT_PASS') WHERE User='root';"
                                  
                                  echo ""
                                  echo "Your MariaDB Root Password: $DB_ROOT_PASS"
                                  echo ""
                                  
                                  JaredBuschJ 1 Reply Last reply Reply Quote 1
                                  • WrCombsW
                                    WrCombs @travisdh1
                                    last edited by

                                    @travisdh1 said in What Are You Doing Right Now:

                                    @WrCombs said in What Are You Doing Right Now:

                                    Just had a call:

                                    Customer:"yeah, our terminal is broke, we changed it out with a different one.. "

                                    Me: "well what happened to the terminal.."

                                    Customer: "It was dropped violently...."

                                    "what...? "

                                    I.E. Someone got mad about something unrelated and smashed it on a concrete floor somewhere.

                                    That's the first thing i thought..
                                    Then they wanted a new one sent out to them for free ....

                                    Yeah no... Temper tantrums are not a part of your contract with us.

                                    1 Reply Last reply Reply Quote 1
                                    • scottalanmillerS
                                      scottalanmiller
                                      last edited by

                                      Just chilling this morning. Making coffee now.

                                      1 Reply Last reply Reply Quote 0
                                      • black3dynamiteB
                                        black3dynamite
                                        last edited by

                                        Cooking a late breakfast. Sausage gravy with buttermilk biscuits and scrambled eggs.

                                        1 Reply Last reply Reply Quote 1
                                        • JaredBuschJ
                                          JaredBusch @black3dynamite
                                          last edited by JaredBusch

                                          @black3dynamite said in What Are You Doing Right Now:

                                          Discovered a wicked way of auto answering mysql_secure_installation.

                                          Or just don’t use it.

                                          You can do the same with 4 mysql commands

                                          # Secure MariaDB (this does what mysql_secure_installation performs without interaction)
                                          mysql -e "UPDATE mysql.user SET Password=PASSWORD('Generate a random password here') WHERE User='root';"
                                          mysql -e "DELETE FROM mysql.user WHERE User='root' AND Host NOT IN ('localhost', '127.0.0.1', '::1');"
                                          mysql -e "DELETE FROM mysql.user WHERE User='';"
                                          mysql -e "FLUSH PRIVILEGES;"
                                          
                                          1 Reply Last reply Reply Quote 1
                                          • EddieJenningsE
                                            EddieJennings
                                            last edited by

                                            Busy weekend: Completed four videos for YouTube 🙂

                                            1 Reply Last reply Reply Quote 0
                                            • 1
                                            • 2
                                            • 3
                                            • 4
                                            • 5
                                            • 4443
                                            • 4444
                                            • 1 / 4444
                                            • First post
                                              Last post