feature/build-my-own-kernel-rootfs #1

Merged
antoine merged 34 commits from feature/build-my-own-kernel-rootfs into main 2024-01-06 13:25:49 +00:00
Showing only changes of commit 0c7175284b - Show all commits

View File

@ -17,7 +17,7 @@ mkdir -p $DISK_ROOT
sudo mount $DISK_FILE $DISK_ROOT
sudo pacstrap -c $DISK_ROOT bash filesystem systemd-sysvcompat pacman iproute2 git
sudo pacstrap -c $DISK_ROOT bash filesystem systemd-sysvcompat pacman iproute2 openssh git vim
echo "nameserver 1.1.1.1" | sudo tee $DISK_ROOT/etc/resolv.conf
@ -39,9 +39,14 @@ EOF
sudo ln -s /etc/systemd/system/internal-network.service $DISK_ROOT/etc/systemd/system/multi-user.target.wants/
sudo ln -s /usr/lib/systemd/system/sshd.service $DISK_ROOT/etc/systemd/system/multi-user.target.wants/
# allow root login with empty password, unsafe !
sudo tee $DISK_ROOT/etc/ssh/sshd_config.d/98-archlinux.conf <<-'EOF'
PermitEmptyPasswords yes
PermitRootLogin yes
EOF
# Remove default (locked) root password
# See https://github.com/archlinux/svntogit-packages/commit/0320c909f3867d47576083e853543bab1705185b
sudo sed 's/^root:.*/root::14871::::::/' -i $DISK_ROOT/etc/shadow
sudo umount $DISK_ROOT