Difference between revisions of "Provision Arch"

From Pumping Station One
Jump to navigation Jump to search
Line 3: Line 3:
 
     sgdisk -n 1:2048: /dev/vda
 
     sgdisk -n 1:2048: /dev/vda
 
     sgdisk --attributes=1:set:2 /dev/vda
 
     sgdisk --attributes=1:set:2 /dev/vda
     mkfs.ext4 /dev/vda1
+
     mkfs.ext4 /dev/vda1 -F
 
     mount /dev/vda1 /mnt
 
     mount /dev/vda1 /mnt
 
     pacstrap /mnt base base-devel openssh syslinux
 
     pacstrap /mnt base base-devel openssh syslinux

Revision as of 04:44, 25 February 2015

Installing

   sgdisk -z /dev/vda
   sgdisk -n 1:2048: /dev/vda
   sgdisk --attributes=1:set:2 /dev/vda
   mkfs.ext4 /dev/vda1 -F
   mount /dev/vda1 /mnt
   pacstrap /mnt base base-devel openssh syslinux
   genfstab -p /mnt >> /mnt/etc/fstab
   arch-chroot /mnt
   unlink /etc/localtime
   ln -s /usr/share/zoneinfo/America/Chicago /etc/localtime
   mkinitcpio -p linux
   systemctl enable dhcpcd
   systemctl enable sshd
   cp -r /usr/lib/syslinux/bios/*.c32 /boot/syslinux/
   extlinux --install /boot/syslinux
   dd bs=440 count=1 conv=notrunc if=/usr/lib/syslinux/bios/gptmbr.bin of=/dev/vda
   sed -i 's#/dev/sda3#/dev/vda1#' /boot/syslinux/syslinux.cfg
   
   echo [archlinuxfr] >> /etc/pacman.conf
   echo SigLevel = Never >> /etc/pacman.conf
   echo Server = http://repo.archlinux.fr/\$arch >> /etc/pacman.conf
   pacman -Sy
   pacman -S --noconfirm salt
   systemctl enable salt-minion

enter your hostname

   echo ${hostname} > /etc/hostname


reboot

   exit
   reboot