-
Notifications
You must be signed in to change notification settings - Fork 0
Linux Arch
-
download the iso from here https://alpinelinux.org/downloads/ At this time, I am downloading https://fr.alpinelinux.org/alpine/v3.4/releases/x86/alpine-3.4.6-x86.iso
-
Create a VBox for alpine and attach the ISO
-
Change the VBox network adaptor so that there is internet in the VBox. I'm using
Bridge Adaptor. -
start the VBox and login as root user.
-
setup-alipnewith the same command which will configure Keyboard layout, timezone, network config, boot config. -
apk updadefollowed by bysetup-xorg-base,apk add xfce4. (setup-xorg-basemay needrc-update add mdev sysinit) -
rc-service dbus start
https://wiki.alpinelinux.org/wiki/XFCE_Setup
-
apk add lxmdfollowed byrc-service lxdm startorstartxfce4 -
a dark screen pops up, looks like GUI
https://wiki.alpinelinux.org/wiki/Gnome_Setup
http://wideaperture.net/blog/?p=3851 http://www.cs.columbia.edu/~jae/4118-LAST/arch-setup-2016-1.html
make four partitions
ls /dev gdisk /dev/sda Command (? for help):n Command (? for help):n Command (? for help):n Command (? for help):n
mkfs -t ext4 /dev/sda1
mkfs -t ext4 /dev/sda3
mkfs -t ext4 /dev/sda4
mkswap /dev/sda2
swapon /dev/sda2
mount /dev/sda3 /mnt
ls -l
lost.found
mkdir /mnt/boot
mkdir /mnt/home
mount /dev/sda1 /mnt/boot
mount /dev/sda4 /mnt/ home
pacstrap /mnt base base-devel
genfstab -p /mnt >> /mnt/etc/fstab
more /mnt/etc/fstab
pacstrap /mnt syslinux