Created
July 4, 2022 08:15
-
-
Save dahse89/9c0c7167af190ddf730ec6ecf14bf9a5 to your computer and use it in GitHub Desktop.
Arch Linux | Things to do after install
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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