HowTo Install Arch Linux: Difference between revisions
| (13 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
== |
== Installation Media == |
||
* Get the latest Arch install disk from https://www.archlinux.org/download/ |
|||
* Boot from it |
|||
== Initializing the Disk == |
|||
Install/reinitialize GPT (Guid Partition Table) on the disk` |
Install/reinitialize GPT (Guid Partition Table) on the disk` |
||
| Line 6: | Line 10: | ||
</syntaxhighlight> |
</syntaxhighlight> |
||
Create partition |
Create partition 1, leave 2048 sectors blank for the syslinux bootloader, and don't specify an end size, so that it takes the rest of the drive. |
||
<syntaxhighlight lang="bash"> |
<syntaxhighlight lang="bash"> |
||
sgdisk --new 1:2048: /dev/vda |
sgdisk --new 1:2048: /dev/vda |
||
| Line 16: | Line 20: | ||
</syntaxhighlight> |
</syntaxhighlight> |
||
Now that you have a partition, it will show as /dev/vda1. |
Now that you have a partition, it will show as /dev/vda1. Format The partition as ext4 |
||
<syntaxhighlight lang="bash"> |
<syntaxhighlight lang="bash"> |
||
mkfs.ext4 /dev/vda1 -F |
mkfs.ext4 /dev/vda1 -F |
||
| Line 30: | Line 34: | ||
Install Arch to /mnt |
Install Arch to /mnt |
||
<syntaxhighlight lang="bash"> |
<syntaxhighlight lang="bash"> |
||
pacstrap /mnt |
pacstrap /mnt base |
||
</syntaxhighlight> |
</syntaxhighlight> |
||
| Line 39: | Line 43: | ||
</syntaxhighlight> |
</syntaxhighlight> |
||
== Change Root (chroot) to |
== Change Root (chroot) to Arch == |
||
Switch into the arch installtion. |
Switch into the arch installtion. |
||
| Line 49: | Line 53: | ||
<syntaxhighlight lang="bash"> |
<syntaxhighlight lang="bash"> |
||
ln -s /usr/share/zoneinfo/America/Chicago /etc/localtime |
ln -s /usr/share/zoneinfo/America/Chicago /etc/localtime |
||
| ⚫ | |||
Set dhcpd to start at boot |
|||
| ⚫ | |||
systemctl enable dhcpcd |
|||
| ⚫ | |||
Set sshd to start at boot. |
|||
| ⚫ | |||
systemctl enable sshd |
|||
</syntaxhighlight> |
</syntaxhighlight> |
||
== Prepraring to Boot == |
== Prepraring to Boot == |
||
Create your initial ramdisk - |
Create your initial ramdisk - The initial file system before the real one boots |
||
<syntaxhighlight lang="bash"> |
<syntaxhighlight lang="bash"> |
||
mkinitcpio -p linux |
mkinitcpio -p linux |
||
| Line 74: | Line 67: | ||
</syntaxhighlight> |
</syntaxhighlight> |
||
| ⚫ | |||
Prepare the /boot folder with syslinux's micro programs. |
|||
| ⚫ | |||
| ⚫ | |||
| ⚫ | |||
Prepare the /boot folder with syslinux's modules. The .c32 files that ship with syslinux are for systems that use a bios to boot. Symlink the bios modules into syslinux's boot folder. |
|||
<syntaxhighlight lang="bash"> |
<syntaxhighlight lang="bash"> |
||
ln -s /usr/lib/syslinux/bios/*.c32 /boot/syslinux/ |
ln -s /usr/lib/syslinux/bios/*.c32 /boot/syslinux/ |
||
| ⚫ | |||
</syntaxhighlight> |
</syntaxhighlight> |
||
Run the syslinux extlinux installer. |
|||
| ⚫ | |||
* extlinux is the filesystem variant of syslinux |
|||
<syntaxhighlight lang="bash"> |
<syntaxhighlight lang="bash"> |
||
| ⚫ | |||
| ⚫ | |||
</syntaxhighlight> |
</syntaxhighlight> |
||
By default, syslinux tries to boot /dev/sda3. |
By default, syslinux tries to boot /dev/sda3. Change it to boot /dev/vda1 |
||
<syntaxhighlight lang="bash"> |
<syntaxhighlight lang="bash"> |
||
sed -i 's#/dev/sda3#/dev/vda1#' /boot/syslinux/syslinux.cfg |
sed -i 's#/dev/sda3#/dev/vda1#' /boot/syslinux/syslinux.cfg |
||
| Line 110: | Line 108: | ||
* You setup the syslinux boot loader correctly. |
* You setup the syslinux boot loader correctly. |
||
== Flavor == |
== PS:One Flavor == |
||
=== Salt === |
|||
Some settings common to most of the computers at PS:One can be applied by running the following commands: |
Some settings common to most of the computers at PS:One can be applied by running the following commands: |
||
<syntaxhighlight lang="bash"> |
<syntaxhighlight lang="bash"> |
||
| Line 117: | Line 116: | ||
systemctl start salt-minion |
systemctl start salt-minion |
||
salt-call state.highstate |
salt-call state.highstate |
||
| ⚫ | |||
=== Network Logins === |
|||
Enable Network logins by joining the domain server. |
|||
After this command is run, the machine will support network authentication. |
|||
| ⚫ | |||
net ads join -U <your user name> |
|||
</syntaxhighlight> |
</syntaxhighlight> |
||
Latest revision as of 03:54, 6 September 2015
Installation Media
- Get the latest Arch install disk from https://www.archlinux.org/download/
- Boot from it
Initializing the Disk
Install/reinitialize GPT (Guid Partition Table) on the disk` <syntaxhighlight lang="bash"> sgdisk --zap /dev/vda </syntaxhighlight>
Create partition 1, leave 2048 sectors blank for the syslinux bootloader, and don't specify an end size, so that it takes the rest of the drive. <syntaxhighlight lang="bash"> sgdisk --new 1:2048: /dev/vda </syntaxhighlight>
For Partition 1, set the bootable flag, (flag 2) <syntaxhighlight lang="bash"> sgdisk --attributes=1:set:2 /dev/vda </syntaxhighlight>
Now that you have a partition, it will show as /dev/vda1. Format The partition as ext4 <syntaxhighlight lang="bash"> mkfs.ext4 /dev/vda1 -F </syntaxhighlight>
Mount The partiton, so that we can install arch onto it. <syntaxhighlight lang="bash"> mount /dev/vda1 /mnt </syntaxhighlight>
Install Arch
Install Arch to /mnt <syntaxhighlight lang="bash"> pacstrap /mnt base </syntaxhighlight>
Now that arch is isntalled, build a partition to mount point table, and write it to /mnt/etc/fstab
<syntaxhighlight lang="bash">
genfstab /mnt >> /mnt/etc/fstab
</syntaxhighlight>
Change Root (chroot) to Arch
Switch into the arch installtion. <syntaxhighlight lang="bash"> arch-chroot /mnt </syntaxhighlight>
Set time Timezone <syntaxhighlight lang="bash"> ln -s /usr/share/zoneinfo/America/Chicago /etc/localtime </syntaxhighlight>
Prepraring to Boot
Create your initial ramdisk - The initial file system before the real one boots <syntaxhighlight lang="bash"> mkinitcpio -p linux </syntaxhighlight>
Install syslinux <syntaxhighlight lang="bash"> pacman -S syslinux </syntaxhighlight>
Install syslinux's GPT MBR (Master Boot Record) to the root of MBR. This will sit in the 2048 of reserved space from when we partitioned the drive. <syntaxhighlight lang="bash"> dd if=/usr/lib/syslinux/bios/gptmbr.bin of=/dev/vda </syntaxhighlight>
Prepare the /boot folder with syslinux's modules. The .c32 files that ship with syslinux are for systems that use a bios to boot. Symlink the bios modules into syslinux's boot folder. <syntaxhighlight lang="bash"> ln -s /usr/lib/syslinux/bios/*.c32 /boot/syslinux/ </syntaxhighlight>
Run the syslinux extlinux installer.
- extlinux is the filesystem variant of syslinux
<syntaxhighlight lang="bash"> extlinux --install /boot/syslinux </syntaxhighlight>
By default, syslinux tries to boot /dev/sda3. Change it to boot /dev/vda1 <syntaxhighlight lang="bash"> sed -i 's#/dev/sda3#/dev/vda1#' /boot/syslinux/syslinux.cfg </syntaxhighlight>
Reboot
<syntaxhighlight lang="bash"> exit reboot </syntaxhighlight>
When Something Goes Wrong
If something goes wrong with rebooting and you end up back on the live cd, you don't need to start over. Running the following 2 commands will bring you back to your Arch Linux Environment <syntaxhighlight lang="bash"> mount /dev/vda1 /mnt arch-chroot /mnt </syntaxhighlight>
Once you are back in the Arch environment, Check the following:
- You set the bootable flag on the partions
- You setup the syslinux boot loader correctly.
PS:One Flavor
Salt
Some settings common to most of the computers at PS:One can be applied by running the following commands: <syntaxhighlight lang="bash"> pacman -S salt-zmq systemctl start salt-minion salt-call state.highstate </syntaxhighlight>
Network Logins
Enable Network logins by joining the domain server. After this command is run, the machine will support network authentication. <syntaxhighlight lang="bash"> net ads join -U <your user name> </syntaxhighlight>