Skip to content

Latest commit

 

History

History
54 lines (43 loc) · 828 Bytes

extended_installation.md

File metadata and controls

54 lines (43 loc) · 828 Bytes

Extended installation

This extended installation covert user management, Desktop environment, etc.

  1. Delete the home folder rm -r /home

  2. setup a btrfs subvolume for home btrfs subvolume create /home

  3. enable network again

ip link #get device name
ip link set <devicename> up
dhcpch <devicename>
  1. install sudo pacman -S sudo

  2. grant yourself root privileges

visudo
<username> ALL=(ALL) ALL
  1. Add the user you granted root privileges for
useradd -m -s /bin/bash <username>
  1. setup your password
passwd <username>
  1. Install Xorg
pacman -S xorg-server
  1. Install xfce4-goodies
pacman -S xfce4-goodies
  1. Install display manager
pacman -S lightdm lightdm-gtk-greeter
  1. Enable display manager
pacman -S enable lightdm.service