12 lines
250 B
Bash
12 lines
250 B
Bash
pacman -S git base-devel sudo
|
|
|
|
useradd -m tobi
|
|
passwd tobi
|
|
echo "Adding tobi to sudoers list"
|
|
echo "tobi ALL=(ALL) ALL" >> my_file.txt
|
|
cd /home/tobi
|
|
mv ../arch_config /home/tobi/arch_config
|
|
chown -R tobi /home/tobi/arch_config
|
|
cd arch_config
|
|
su tobi
|