Jump to content

Installing Arch Linux on VMWare: Revision history

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

6 August 2025

  • curprev 15:2815:28, 6 August 2025 Encryptid talk contribs 2,430 bytes +2,430 Created page with "=Legacy= <pre> #!/bin/bash # This assumes you want the following partitions setup: # /dev/sda1 -> /boot # /dev/sda2 -> Swap # /dev/sda3 -> / read -p "This will wipe /dev/sda1-3, press enter to continue" mkfs.ext2 /dev/sda1 mkswap /dev/sda2 mkfs.ext4 /dev/sda3 mount /dev/sda3 /mnt mkdir /mnt/boot && mount /dev/sda1 /mnt/boot swapon /dev/sda2 clear read -p "Press Enter to install System" pacstrap /mnt base{,-devel} pacstrap /mnt grub-bios os-prober open-vm-tools pacstrap..."