Skip to content

Instantly share code, notes, and snippets.

@getianao
Last active April 2, 2025 08:46
Show Gist options
  • Select an option

  • Save getianao/e9fa3f898315324530f7546e647a304c to your computer and use it in GitHub Desktop.

Select an option

Save getianao/e9fa3f898315324530f7546e647a304c to your computer and use it in GitHub Desktop.
Command memo

Linux Command

Disable GUI

Switch to "text mode": sudo systemctl isolate multi-user.target

Switch to "graphical mode": sudo systemctl isolate graphical.target

Create User

sudo useradd -m -s /bin/bash tge # -g sudo 
sudo passwd tge
# sudo usermod -aG sudo tge
# show group members
cat /etc/group

Folder Size

du -h --max-depth=1 ./ | sort -hr
du -sh .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment