Skip to main content

Final Tweaks

  •  In System Settings app:
    • Uncheck Suspend Session in Power Management, Energy Savings (I've had back luck with corrupted suspends that cause boot failure)
    •  Turn on numlock in Input Devices, Keyboard
    •  Turn on night color in Display and Monitor, Night Color

  • In right-click Display Settings, set up random slide show with preferred wallpapers

  • sudo su and then EDITOR=micro visudo  to get rid of update password timeout
    Defaults passwd_timeout=0 
  • sudo micro  /boot/loader/loader.conf  to set longer time for boot menu
  • Set up Printer.  HP is easy using HPlip.  
Set up Printer:
  • For Brother Laser printer: download linux deb package from Brother
  • yay -S dpkg
  • sudo dpkg -i --force-architecture hll2480dwpdrv-4.1.0-1.i386.deb
    Then set up in KDE add printer; manually point to ppd file at /usr/share/ppd/brother/XXXXX.ppd

    socket://192.168.4.174
  • and https://support.cc.gatech.edu/support-tools/howto/direct-ip-printing-unix 
    • yay -S brother-hll2370dw
    • Set up in KDE System Settings, Printer
      • Select AppSocket/HP JetDirect, input ip address of printer, and manually add ppd file from /opt/brother/Printers/HLL2370DW/cupswrapper/brother-HLL2370DW-cups-en.ppd
crontab:
yay -S cronie
sudo systemctl enable cronie.service && sudo systemctl start cronie.service

paccache cleaner:
yay -S pacman-contrib
sudo systemctl enable paccache.timer && sudo systemctl start paccache.timer

In cachyos-hello:  check Ananicy Cpp enabled, Bpftune enabled and Sysemd-oomd enabled

# For zen kernel 
sudo pacman -S linux-zen linux-zen-headers

copy linux.conf entry in /boot/loader/entries to linux-zen.conf and edit accordingly

sudo mkinitcpio -P

# For firewall (laptop)
yay -S firewalld ipset ebtables
sudo systemctl enable --now firewalld
sudo firewall-cmd --add-service libvirt --zone=libvirt --permanent
for config: firewall-config
 
for Topgrade to not choke on oh-my-zsh update:
put export ZSH="$HOME/.oh-my-zsh" in your .zshrc file

Comments

Popular posts from this blog

Install Windows 11 on Virt-Manager

 Virt-Manager will have been installed in base install.  But to enable it (make sure SVM, or whatever virtualization is called in your BIOS is enabled). From https://computingforgeeks.com/install-kvm-qemu-virt-manager-arch-manjar/ sudo pacman -S qemu-full virt-manager virt-viewer dnsmasq vde2 bridge-utils openbsd-netcat dmidecode ip tables libguestfs edk2-ovmf swtpm Then enable and start libritd.service sudo systemctl enable libvirtd.service sudo systemctl start libvirtd.service sudo micro /etc/libvirt/libvirtd.conf Set the UNIX domain socket group ownership to libvirt, (around line 85 ) unix_sock_group = "libvirt" Set the UNIX socket permissions for the R/W socket (around line 102 ) unix_sock_rw_perms = "0770" Add your user account to libvirt group.   sudo usermod -a -G libvirt $(whoami) newgrp libvirt Restart libvirt daemon. sudo systemctl restart libvirtd.service Section below is quoted directly from https://linustechtips.com/topic/1379063-windows-11-in-virt-mana...

KDE's Own Distro

For installation details see the Installation section https://community.kde.org/KDE_Linux#Installation  and  https://kde.org/linux/install/ Install homebrew: (do oh-my-zsh and powerlevel10k first so .zshrc modification by brew survives) /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" Install distrobox:    curl -s https://raw.githubusercontent.com/89luca89/distrobox/main/install | sh -s -- --prefix ~/.local echo 'export PATH="$PATH:~/.local/bin"' >> ~/.bashrc echo 'export PATH="$PATH:~/.local/bin"' >> ~/.zshrc OneDrive:  brew install onedrive # type onedrive to register/connect with your MSft OneDrive account  brew services start onedrive-cli onedrive --force --skip-dot-files --skip-dir venv --sync    NOW ON MY Kinoite IMAGE, so just initiate normally and then: mkdir -p ~/.config/systemd/user/onedrive.service.d cat > ~/.config/systemd/user/onedrive.service.d/override.conf <...

Using rclone to integrate Google Drive in Arch

 sudo pacman -S rclone rclone config  # will need to set up secret key and client ID follow instructions    mkdir ~/GoogleDrive   rclone mount gdrive: ~/GoogleDrive --vfs-cache-mode writes --daemon  # can also use following to run in background (nohup): nohup rclone mount gdrive: ~/GoogleDrive --vfs-cache-mode writes --allow-non-empty --dir-cache-time 1000h --poll-interval 15s  systemctl --user edit --force --full rclone-mount.service   add: [Unit] Description=RClone Mount Google Drive After=network-online.target [Service] Type=notify ExecStart=/usr/bin/rclone mount gdrive: %h/GoogleDrive --vfs-cache-mode writes --vfs-cache-max-age 1h ExecStop=/bin/fusermount -u %h/GoogleDrive Restart=on-failure RestartSec=5 [Install] WantedBy=default.target    Enable: systemctl --user enable --now rclone-mount.service