Tag: Command Line

  • Compress and Extract Files Using the tar Command on Linux

    Compress and Extract Files Using the tar Command on Linux

    Compress and Extract Files Using the tar Command on Linux Compress Exclude Extract Related Links Compress an Entire Directory or a Single File -c: Create an archive -z: Compress the archive with gzip -v: Verbose mode. Display progress in the terminal -f: Allows you to specify the filename of the archive. Exclude Directories and Files…

  • What is taking up space on Raspberry Pi

    What is taking up space on Raspberry Pi

    What is taking up space on Raspberry Pi. Recently tried to write to text file. Received disk is full error. Used this tool to find and fix the issue. Visualize used space on Raspberry Pi NCDU Related Links NCDU Drill down more Related What is Filling up my Disk Space Set Static IP Address on…

  • Install PowerShell Core on Raspberry Pi OS

    Install PowerShell Core on Raspberry Pi OS

    Install PowerShell Core on Raspberry Pi OS Related Links To find the latest version of PowerShell Core go to https://github.com/PowerShell/PowerShellPlatform = Raspbian (Arm) 32-bit -x = Extract -f = File -v = Verbose Optional Related AWS Tools for PowerShell Configure Windows to be Managed via Ansible Check for Pending Reboot on Windows Extend Volume in…

  • Linux Command Line Text Editors Essentials

    Linux Command Line Text Editors Essentials

    Linux Command Line Text Editors Essentials Nano Related Links Nano ctrl + c = temporary show line numbersalt + c = show line numbers and characterctrl + k = remove linectrl + w = search Related Nano Essentials How to Create a Command Alias in Linux Find Command in Linux Linux Users Linux Groups Displaying…

  • Symbolic Link Essentials

    Symbolic Link Essentials

    Symbolic Link Essentials Examples Related Links Examples ln -s target link ln -s /mnt/nas/downloads/ /home/u/Downloads Related Displaying Network Statistics in Linux Find Command in Linux IP Forwarding in Linux Linux IP Essentials Linux Routing Essentials Linux Users Linux Groups LUKS: Linux Unified Key Setup Essentials NetPlan Essentials Set Sound Output Device via Command Line tar…

  • Install WireGuard on Raspberry Pi Raspbian

    Install WireGuard on Raspberry Pi Raspbian

    Install WireGuard on Raspbian Buster Install Make WireGuard Auto Start Automatically Generating Keys Related Links Install Soon it will be as easy as sudo apt install wireguard Until then here is how it can be done. sudo apt updatesudo apt upgradesudo apt install raspberrypi-kernel-headers After this operation, 163 MB of additional disk space will be…

  • How To Install Google Chrome on Ubuntu Linux

    How To Install Google Chrome on Ubuntu Linux

    How To Install Google Chrome on Ubuntu Linux Related Links How To Install Google Chrome on Ubuntu Linux sudo wget -q -O – https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add – sudo sh -c ‘echo “deb http://dl-ssl.google.com/linux/chrome/deb stable main” >> /etc/apt/sources.list.d/google.list’sudo apt-get updatesudo apt-get install -y google-chrome-stable Tested with Ubuntu 1710 Related Move Files If They Exist…

  • How to setup WinRM in a WorkGroup Non Domain Environment

    Disclaimer: This will create a very basic unsecured/not encrypted connection. This should only be done in a test lab environment. This is being setup in a Non Domain/Work group setting. There is no certificate or DNS infrastructure in place. The connections will be going over TCP 5985. This is the Default TCP Port for not…

  • How to Start an Application as Another User from the Command Line in WIndows

    How to Start an Application as Another User from the Command Line in WIndows

    Via the GUI it is easy however… Recently I had the need to run an application from the command line under a different user context. My computer was not domain joined but I wanted to run the application as a domain user. I achieved it using the line below. runas /netonly /user:sub.domain.tld\username “C:\Windows\System32\mmc.exe C:\windows\System32\dsa.msc /domain=sub.domain.tld…