|
You are here |
www.jeremymorgan.com | ||
| | | | |
nanxiao.me
|
|
| | | | | To install bcc on ArchLinux, firstly you need to setup yaourt from AUR: $ git clone https://aur.archlinux.org/yaourt.git $ cd yaourt $ makepkg -si Then execute yaourt bcc command: # yaourt bcc 1 aur/bcc 0.3.0-1 [installed] (17) (2.51) BPF Compiler Collection - C library and examples 2 aur/bcc-git v0.1.8.r330.52cd371-1 (2) (0.06) BPF Compiler Collection - C library and examples 3 aur/bcc-tools 0.3.0-1 [installed] (17) (2.51) BPF Compiler Collection - Tools 4 aur/bcc-tools-git v0.1.8.r330.52cd371-1 (2) (0.... | |
| | | | |
blog.stigok.com
|
|
| | | | | I wanted to compile my C code with gcc -m32 so I could easily follow old C and assembly tutorials, but it required 32-bit gcc libraries which are not availab... | |
| | | | |
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/cgi... | |
| | | | |
shrik3.com
|
|
| | | |||