Setting Utilitas

Install cups sudo pacman -S cups Aktifkan cups sudo systemctl start org.cups.cupsd.service Install hplip sudo pacman -S hplip Install simple-scan sudo pacman -S simple-scan Install bluetooth sudo pacman -S bluez bluez-utils Run bluetooth sudo systemctl start bluetooth Install ttf-ms-fonts git clone https://aur.archlinux.org/ttf-ms-fonts.git Compile makepkg -si PKGBUILD [Read More]

Firewalld

Install sudo pacman -S firewalld Konfigurasi sudo firewalld-config Klik connections Klik Change Zone Pilih Home Configuration Permanent Centang sesuai kebutuhan

Apparmor

cek Apparmor zgrep CONFIG_LSM= /proc/config.gz copy lsm=landlock,lockdown,yama,apparmor,bpf paste di titik-titik berikut pada file /etc/default/grub GRUB_CMDLINE_LINUX_DEFAULT="loglevel=3 quiet ......" run ulang grub sudo grub-mkconfig -o /boot/grub/grub.cfg install sudo pacman -S apparmor enable sudo systemctl enable --now apparmor.service cek status aa-enabled perlu di reboot ketika baru pertama kali dijalankan [Read More]

Configurasi Git Awal

Setting git account untuk default git config --global user.email "you@example.com" git config --global user.name "Your Name" Setting git account untuk directory tertentu git config --local user.email "you@example.com" git config --local user.name "Your Name"

Setelah Install Arch Linux

Pengaturan Xinit Copy konfigurasi ke home directory cp /etc/X11/xinit/xinitrc .xinitrc Beri tanda # supaya konfigurasi tidak dijalankan system #twm & # xclock -geometry 50x50-1+1 & # xterm -geometry 80x50+494+51 & # xterm -geometry 80x20+494-0 & # exec xterm -geometry 80x66+0+0 -name login Masukkan konfigurasi sesuai keinginan # Compositor picom -f... [Read More]