How-To | Install Arch Linux with Nvidia GeForce 1080Ti
Download Arch and Verify ISO
https://www.archlinux.org/download/
pg —keyserver-options auto-key-retrieve —verify archlinux-
Create Installation Medium
dd bs=4M if=/path/to/archlinux.iso of=/dev/sdx status=progress && sync
Arch Installation Guide
https://wiki.archlinux.org/index.php/installation_guide#Install_the_base_packages
Partition Scheme
|
|
Example:123456Partition number (3-128, default 3): 3 First sector (34-15728606, default = 4605952) or {+-}size{KMGTP}: Last sector (4605952-15728606, default = 15728606) or {+-}size{KMGTP}: +4GCurrent type is 'Linux filesystem'Hex code or GUID (L to show codes, Enter = 8300): 8300Changed type of partition to 'Linux filesystem
Make Swap-File
1234567fallocate -l 8GB /swapfilechmod 600 /swapfilemkswap /swapfileswapon /swapfile~ vim /etc/fstab/swapfile none swap defaults 0 0Installation of KDE Plasma (NVIDIA)
https://sadanand-singh.github.io/posts/completesetuparchplasma/1234567$ pacman -S xorg-server nvidia nvidia-libgl nvidia-settings mesa$ pacman -S ttf-hack ttf-anonymous-pro$ pacman -S ttf-dejavu ttf-freefont ttf-liberation$ pacman -S plasma-meta dolphin kdialog kfind$ pacman -S konsole gwenview okular spectacle kio-extras$ pacman -S kompare dolphin-plugins kwallet kwalletmanager$ pacman -S ark yakuake fliteSDDM
12345678910111213$ vim /etc/sddm.conf....[Theme]# Current theme nameCurrent=breeze# Cursor theme used in the greeterCursorTheme=breeze_cursors...$ systemctl enable sddm$ reboot