7d14796716
https://mailman.archlinux.org/pipermail/arch-releng/2013-May/003163.html Thanks Dave & Thomas Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
21 lines
472 B
Bash
Executable File
21 lines
472 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e -u
|
|
|
|
sed -i 's/#\(en_US\.UTF-8\)/\1/' /etc/locale.gen
|
|
locale-gen
|
|
|
|
ln -sf /usr/share/zoneinfo/UTC /etc/localtime
|
|
|
|
usermod -s /bin/zsh root
|
|
cp -aT /etc/skel/ /root/
|
|
|
|
useradd -m -p "" -g users -G "adm,audio,floppy,log,network,rfkill,scanner,storage,optical,power,wheel" -s /bin/zsh arch
|
|
|
|
chmod 750 /etc/sudoers.d
|
|
chmod 440 /etc/sudoers.d/g_wheel
|
|
|
|
sed -i "s/#Server/Server/g" /etc/pacman.d/mirrorlist
|
|
|
|
systemctl enable multi-user.target pacman-init.service
|