Main public logs
Appearance
Combined display of all available logs of YawgNetWiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 15:28, 6 August 2025 Encryptid talk contribs created page Installing Arch Linux on VMWare (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...")