Skip to content

Instantly share code, notes, and snippets.

@OdinsPlasmaRifle
Last active January 10, 2022 10:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save OdinsPlasmaRifle/44ac5935d0b2b9fa4da185ad1dd67973 to your computer and use it in GitHub Desktop.
Save OdinsPlasmaRifle/44ac5935d0b2b9fa4da185ad1dd67973 to your computer and use it in GitHub Desktop.

Arch Linux Post Installation

Create A User

Create a user:

useradd --create-home example_user

Set a password for the user:

passwd example_user

Make A Sudo User

Ensure sudo is installed.

Add to the wheel group (for sudo access):

usermod --append --groups wheel example_user

Finally, run visudo and uncomment the line below:

## Uncomment to allow members of group wheel to execute any command
%wheel ALL=(ALL) ALL
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment