Skip to content

Instantly share code, notes, and snippets.

@dahse89
Created July 4, 2022 08:15
Show Gist options
  • Save dahse89/9c0c7167af190ddf730ec6ecf14bf9a5 to your computer and use it in GitHub Desktop.
Save dahse89/9c0c7167af190ddf730ec6ecf14bf9a5 to your computer and use it in GitHub Desktop.
Arch Linux | Things to do after install
#!/bin/bash
# system update
pacman -Syyu
# install sudo
pacman -S sudo
nano /etc/sudoers # change what you need
# create user
useradd -m pdahse
passwd pdahse
usermod -aG wheel pdahse
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment