Arch Linux - Installatie: verschil tussen versies

Uit De Vliegende Brigade
Naar navigatie springen Naar zoeken springen
Regel 12: Regel 12:
 
[[file:20180510-1858.png|thumb|Note-to-self: root-partitie aan het begin en swap aan het eind]]
 
[[file:20180510-1858.png|thumb|Note-to-self: root-partitie aan het begin en swap aan het eind]]
  
* Disk partitioneren (fdisk -l, csk /dev/sda)
+
* Device-aanduiding achterhalen: fdisk -l
** sda1 - Root
+
* Disk partitioneren: cfdisk /dev/sda
** sda2 - Swap
+
** sda1 - Root - Linux X86-64 7,5GB
 +
** sda2 - Swap - Linux Swap - 0,5GB
 
* formatteren: mkfs.ext4 /dev/sda1
 
* formatteren: mkfs.ext4 /dev/sda1
 
* Mount the root-partitie: mount /dev/sda1 /mnt
 
* Mount the root-partitie: mount /dev/sda1 /mnt

Versie van 10 mei 2018 16:10

Installatie op VirtualBox

Primaire bron: Deze video van Goguda55.

Opstarten op VirtualBox

  • Arch Linux is prima te downloaden als torrent]. Dan heb je een .iso-cd-image-bestand.
  • Binnen VirtualBox kan dat iso-bestand als een optische drive worden gemount. Van installatie van VirtualBox tot de Arch-prompt was nog geen vijf minuten werk.

Overig

Note-to-self: root-partitie aan het begin en swap aan het eind
  • Device-aanduiding achterhalen: fdisk -l
  • Disk partitioneren: cfdisk /dev/sda
    • sda1 - Root - Linux X86-64 7,5GB
    • sda2 - Swap - Linux Swap - 0,5GB
  • formatteren: mkfs.ext4 /dev/sda1
  • Mount the root-partitie: mount /dev/sda1 /mnt
  • Initiëer de swap-partititie: mkswap /dev/sda2
  • Basisinstallatie: pacstrap /mnt base base-devel - base-devel is nieuw voor mij

Bronnen