ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Topics
    2. black3dynamite
    3. Best
    • Profile
    • Following 0
    • Followers 3
    • Topics 42
    • Posts 5,987
    • Groups 0

    Posts

    Recent Best Controversial
    • RE: Using Rsync to remotely backup Apple OSX User profiles
      ssh -t admin@hostname 'sudo rsync -av /Users/UserName/ /Volumes/VolumeName --progress'
      

      No need to enable root, just use an account that has sudo rights.

      posted in IT Discussion
      black3dynamiteB
      black3dynamite
    • RE: What Are You Watching Now

      Youtube Video

      That was an awesome speech from the major and the translator was awesome too.

      posted in Water Closet
      black3dynamiteB
      black3dynamite
    • RE: Comparing MeshCentral 2 to ScreenConnect

      @Scott said in Comparing MeshCentral 2 to ScreenConnect:

      When connected to a Windows or Linux computer (have not tried on Mac) and the machine's public IP address changes I can no longer connect to desktop, terminal, files, etc. however the machine still shows up on MC as powered on, so there is some connection, yes?
      How do we handle this if a remote machine has its IP address change? Such as a laptop going to a different location, or in my testing, changing address with a VPN.

      MeshCentral should be getting that information from the meshagent.

      On my Linux system, meshagent is set to always restart every 3 seconds or at least I think what it means.
      4f89b4f9-43f8-438f-b8dd-dee20672e1d5-image.png

      posted in IT Discussion
      black3dynamiteB
      black3dynamite
    • RE: What Are You Doing Right Now

      GOG Free Games Collection
      https://www.gog.com/partner/stay_at_home

      posted in Water Closet
      black3dynamiteB
      black3dynamite
    • Dar (Disk ARchive)

      I discovered this shell command called dar that is used to backup files.

      http://dar.linux.free.fr/
      http://dar.linux.free.fr/doc/Limitations.html
      http://dar.linux.free.fr/doc/presentation.html
      http://dar.linux.free.fr/doc/man/dar.html
      http://dar.linux.free.fr/doc/Tutorial.html
      http://dar.linux.free.fr/doc/mini-howto/dar-differential-backup-mini-howto.en.html

      For Windows Users
      https://chocolatey.org/packages/dar
      choco install dar

      When using dar on Windows, the path is based on the Unix way.
      c:\temp\user1 has to be written /cygdrive/c/temp/user1

      # Create backup
      dar -c /cygdrive/c/temp/backup -R /cygdrive/c/temp/user1
      
      # Restore backup
      dar -x /cygdrive/c/temp/backup -R /cygdrive/c/temp/restore
      
      # Test backup
      dar -t /cygdrive/c/temp/backup
      
      # Compare backup
      dar -d /cygdrive/c/temp/backup -R /cygdrive/c/temp/user1
      
      # List backup contents
      dar -l /cygdrive/c/temp/backup
      

      For macOS Users
      https://formulae.brew.sh/formula/dar
      brew install dar

      For Fedora Users
      sudo dnf install dar

      For CentOS Users
      sudo yum install dar

      For Debian/Ubuntu Users
      sudo apt install dar

      posted in IT Discussion
      black3dynamiteB
      black3dynamite
    • RE: Non-IT News Thread

      https://www.nbcnews.com/news/us-news/3-more-minneapolis-officers-charged-george-floyd-death-derek-chauvin-n1222796

      posted in Water Closet
      black3dynamiteB
      black3dynamite
    • RE: Creating a Shortcut for Chrome Incognito with Proxy Settings

      @wrx7m said in Creating a Shortcut for Chrome Incognito with Proxy Settings:

      @black3dynamite said in Creating a Shortcut for Chrome Incognito with Proxy Settings:

      @wrx7m said in Creating a Shortcut for Chrome Incognito with Proxy Settings:

      @wrx7m said in Creating a Shortcut for Chrome Incognito with Proxy Settings:

      "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --incognito --proxy-server="http://squid.domain.com:3128" --user-data-dir="%LOCALAPPDATA%\Google\ChromeProxy01\User Data"

      I created a script that I placed on a server share. I then manually created a shortcut to it on the desktop. When running, it launches Chrome in icognito and connects to the proxy server correctly. However, the CMD windows stays open and says

      CMD.EXE was started with the above path as the current directory.
      UNC paths are not supported. Defaulting to Windows directory.

      I have tried adding @ECHO OFF and used PUSHD to create a mapped drive to the sever share, but it still does that. Any suggestions?

      Have you tried creating the shortcut using Group Policy Preferences?

      I just tried that. It isn't creating the shortcut. It says it is applying the policy, but shows under computer configuration, even though I have the shortcut in the User Configuration.

      b76586ac-dffc-478d-b4d9-5fac82a23a51-image.png
      5858e83b-4765-47f6-ba60-d30266be998f-image.png

      I've had more success using Replace instead of Create. When I used that policy it was linked at the domain level but my security filtering applied to users in a specific group only.

      posted in IT Discussion
      black3dynamiteB
      black3dynamite
    • RE: What Are You Watching Now

      @Grey The Greatest American Hero

      posted in Water Closet
      black3dynamiteB
      black3dynamite
    • RE: Creating a Shortcut for Chrome Incognito with Proxy Settings

      @wrx7m said in Creating a Shortcut for Chrome Incognito with Proxy Settings:

      @Obsolesce Someday I will get to deploying salt stack. #pipedreams #onemanarmy

      SaltStack is awesome for a one man army.

      posted in IT Discussion
      black3dynamiteB
      black3dynamite
    • RE: What Are You Doing Right Now

      Total Annihilation Commander Pack giveaway on GOG

      posted in Water Closet
      black3dynamiteB
      black3dynamite
    • RE: How would you build a File server with 170TB of Usable Storage?

      LVM Thin Pool and XFS for a file server?

      posted in IT Discussion
      black3dynamiteB
      black3dynamite
    • RE: What Are You Doing Right Now

      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 ""
      
      posted in Water Closet
      black3dynamiteB
      black3dynamite
    • RE: Cockpit/Spice: connect to VM console

      You need to make some changes to the Spice Server settings for that VM.

      From Virt-Manager, change Address: Localhost only to All interfaces
      652f0a2f-41d0-4c4a-88c8-98c9517d4d50-image.png

      You can also make the same changes using virsh

      posted in IT Discussion
      black3dynamiteB
      black3dynamite
    • RE: What Are You Doing Right Now

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

      posted in Water Closet
      black3dynamiteB
      black3dynamite
    • RE: Joplin, an Open Source Note Application with NextCloud Sync

      @scottalanmiller said in Joplin, an Open Source Note Application with NextCloud Sync:

      On macOS you need to go to the website and download.

      If you have homebrew installed, you can install it using brew cask install joplin

      posted in IT Discussion
      black3dynamiteB
      black3dynamite
    • RE: Gaming - What's everyone playing / hosting / looking to play

      @scottalanmiller said in Gaming - What's everyone playing / hosting / looking to play:

      ARK is free on Epic this week.

      There's another free game too. SAMURAI SHODOWN NeoGeo collection.

      posted in Water Closet
      black3dynamiteB
      black3dynamite
    • RE: AMD Vs Intel

      I really miss my AMD Phenom II desktop. That was my first and last AMD CPU.

      posted in IT Discussion
      black3dynamiteB
      black3dynamite
    • RE: What Are You Watching Now

      Youtube Video

      posted in Water Closet
      black3dynamiteB
      black3dynamite
    • RE: Fedora install doesn't see SATA drives ...

      @BraswellJay said in Fedora install doesn't see SATA drives ...:

      I'm new to Linux and have pieced together a system that I was going to use to test with at home. I was going to install Fedora 30 on the machine but when I go through the installer it doesn't see any of the 4 SATA drives in the system.

      The bios is detecting them but not the installer. I tried Centos 7 and had the same issue.

      The motherboard is an MSI H310I Pro. I had thought that SATA drives would just be seen without any concern about incompatibilities or anything. I feel like there is something simple I'm overlooking. Is there anything that I need to do to make these drives available to the installer?

      Thanks

      Try turning off SecureBoot.

      posted in IT Discussion
      black3dynamiteB
      black3dynamite
    • RE: What Are You Doing Right Now

      @travisdh1 said in What Are You Doing Right Now:

      @black3dynamite said in What Are You Doing Right Now:

      My wife and I trading our Rogue to a Pathfinder.

      Nice. My mother-in-law has a gerbalmobile (Kia Soul) she leased about a month ago. Decent vehicle, and going lease meant she got a new car instead of a used model.

      We were initially going for a 2018 model that has 52k miles on it but with a 2016 that has around 92k. It comes with practically the same features but leather seats that warms up front back seat passengers. Plus we can configured up to two different driver seat settings.

      posted in Water Closet
      black3dynamiteB
      black3dynamite
    • 1 / 1