Skip to content

Instantly share code, notes, and snippets.

@peteyoung
Last active February 13, 2017 10:32
Show Gist options
  • Save peteyoung/7780167 to your computer and use it in GitHub Desktop.
Save peteyoung/7780167 to your computer and use it in GitHub Desktop.
Arch Linux VM Setup

Arch Linux VM Setup

Beginner's Guide

Following the steps found on the Arch wiki: https://wiki.archlinux.org/index.php/Beginners%27_Guide

  • set font
setfont Lat2-Terminus16
  • set up locale
vi /etc/locale.gen

un comment line with "en_US.UTF-8 UTF-8"

  • test network
ping -c 3 www.google.com
  • check interface
ip link
  • copy down name of interface (enp0s3)

  • partition drive

cgdisk /dev/sda
  • format partition
mkfs.ext4 /dev/sda1
  • mount partiton
mount /dev/sda1 /mnt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment