 
      
    | You are here | v3gard.com | ||
| | | | | www.jeremymorgan.com | |
| | | | | Here are a few easy ways to install Google Chrome Arch Linux and Manjaro. | |
| | | | | sookocheff.com | |
| | | | | I recently started using Xubuntu to see if the proclaimed speed differences actually made a difference in productivity. Unfortunately, the Thunar file manager does not automatically recognize network drives so I needed to manually mount SAMBA shares from the command line. In my searches I stumbled across this thread giving the exact solution I used. Hopefully this helps someone else who is having this same problem. | |
| | | | | 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' | |
| | | | | jlu5.com | |
| | | |||