agomusa / Archlinux

:mortar_board: Personal notes of How to install @Archlinux

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Guide to Install Archlinux

TODO

Get yay:

pacman -S --needed git base-devel
git clone https://aur.archlinux.org/yay.git
cd yay
makepkg -si

Get Wifi Working:

yay -S rtl8821ce-dkms-git
sudo vim /etc/modprobe.d/blacklist.conf

Paste this blacklist rtw88_8821ce

nmcli device wifi list
nmcli device wifi connect "Your-Wifi" password "Your-Password"

Then to turn off the wifi:

nmcli radio wifi off

To turn on:

nmcli radio wifi on

Set Permanent Keyboard Layout:

sudo localectl set-keymap  "your-layout"

In my case:

sudo localectl set-keymap  la-latin1

Get Audio working:

sudo pacman -S alsa-utils
amixer set Master 2%+
amixer set Master 2%-

Adjust time to local time:

timedatectl list-timezones
timedatectl set-timezone America/Lima

Mount other Disks on Startup:

sudo vim /etc/fstab

Something like:

/dev/sda1     /home/yourusername/Disk ext4 defaults 0 1

Get a fonts with icons like noto-fonts-emoji-apple.

Useful Links

Other Links

About

:mortar_board: Personal notes of How to install @Archlinux

License:MIT License