1234567891011121314151617181920 |
- #!/usr/bin/bash -x
- # re-secure ssh
- sed -i "/^#\?PasswordAuthentication/d" /etc/ssh/sshd_config
- sed -i "/^#\?PermitRootLogin/d" /etc/ssh/sshd_config
- echo "PasswordAuthentication no" >> /etc/ssh/sshd_config
- echo "PermitRootLogin yes" >> /etc/ssh/sshd_config
- # install VirtualBox Guest Additions
- # https://wiki.archlinux.org/index.php/VirtualBox
- pacman -S --noconfirm linux-headers virtualbox-guest-utils virtualbox-guest-modules-arch nfs-utils
- echo -e 'vboxguest\nvboxsf\nvboxvideo' > /etc/modules-load.d/virtualbox.conf
- # enable related virtualization and networking services
- systemctl enable vboxservice.service
- systemctl enable rpcbind.service
- # Clean the pacman cache to minify image
- yes | pacman -Scc
- sync
|