Skip to content

Instantly share code, notes, and snippets.

@EverettBerry
Last active August 29, 2015 13:57
Show Gist options
  • Save EverettBerry/9745412 to your computer and use it in GitHub Desktop.
Save EverettBerry/9745412 to your computer and use it in GitHub Desktop.

Linux Cheet Sheet

Specifically for Ubuntu 12.04 and on

Users

  • Display your user attributes
    id -a

  • Add user to group
    usermod -a -G <group_name> <user_name>

  • Change passwords in batch fashion (as sudo)
    echo "user:password" | chpasswd

Git

  • Track a remote git branch
    git branch <remote_branch_name> origin/<remote_branch_name>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment