Skip to content

Instantly share code, notes, and snippets.

@Thijzer
Last active April 22, 2018 14:22
Show Gist options
  • Save Thijzer/8b0485476982c15cce4f53273be3ae86 to your computer and use it in GitHub Desktop.
Save Thijzer/8b0485476982c15cce4f53273be3ae86 to your computer and use it in GitHub Desktop.
Arch install guide For Proxmox VM
loadkeys be-latin1
fdisk /dev/sda
# setup sda1 as a single partition
mkfs.ext4 /dev/sda1
mount /dev/sda1 /mnt
pacstrap /mnt base
# grub instead of bootctl becauce bootctl doesn't support BIOS
pacman -S grub intel-ucode openssh
grub-install --target=i386-pc /dev/sdX
grub-mkconfig -o /boot/grub/grub.cfg
systemctl enable sshd
systemctl start sshd
systemctl enable dhcpd
systemctl start dhcpd
useradd -m -g users -G lp,scanner,audio,video,optical,storage,network,power,games,wheel -s /bin/bash jenkins
passwd jenkins
exit
reboot
ssh jenkins@....
hostnamectl set-hostname jenkins.lan
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment