You are here |
shibumi.dev | ||
| | | |
willhaley.com
|
|
| | | | These commands can be used in a script to automate the installation of yay, an AUR Helper. #!/usr/bin/env bash set -e pacman -Sy --needed --noconfirm sudo wget base-devel # Set up passwordless-sudo for the aur helper account printf "aur ALL = (root) NOPASSWD: /usr/bin/makepkg, /usr/bin/pacman" > /etc/sudoers.d/02_aur useradd -m aur || true # Install package-query su - aur -c bash -c 'rm -rf /tmp/package-query ; mkdir -p /tmp/package-query ; cd /tmp/package-query ; wget https://aur.archlinux.org/cgit/aur.git/snapshot/package-query.tar.gz ; tar zxvf package-query.tar.gz ; cd package-query ; makepkg --syncdeps --rmdeps --install --noconfirm' # Install yay su - aur -c bash -c 'rm -rf /tmp/yay ; mkdir -p /tmp/yay ; cd /tmp/yay ; wget https://aur.archlinux.org/cgit/aur.git/snapshot/yay.tar.gz ; tar zxvf yay.tar.gz ; cd yay ; makepkg --syncdeps --rmdeps --install --noconfirm' | |
| | | |
vsupalov.com
|
|
| | | | X11, Wayland and how they work. | |
| | | |
wiredspace.de
|
|
| | | | This describes how to setup Arch Linux similar to my setup. This is rarely up-to-date, so be mindful when you type in your commands in the commandline, and be sure to check the Arch Linux Installation guide or the Arch Wiki in general, if you're unsure about something. Mirror List Location: /etc/pacman.d/mirrorlist Select the mirror(s) you want to use for the package manager pacman. Delete every other entry or mark it as a comment to ensure that pacman is using the right mirror. You can also install vim ... | |
| | | |
blag.nullteilerfrei.de
|
|
| |