1. 安裝
    1. Beginners' Guide(http://ppt.cc/brmN) http://wiki.archlinux.org/index.php/Beginners'_Guide
    2. Official Arch Linux Install Guide(http://ppt.cc/Evuf) http://wiki.archlinux.org/index.php/Official_Arch_Linux_Install_Guide
    3. Lawliet's blog - ArchLinux 推廣教學起跑!(http://ppt.cc/G9tx) http://antimalicious.blogspot.com/2009/04/archlinux.html
  2. 常用
    1. compile時需要的
      1. $pacman -S base-devel
    2. 可垂直/水平分割視窗的terminal
      1. $pacman -S terminator
    3. Chromium (Google 瀏覽器的開發版本)
      1. $pacman -S chromium
  3. pacman
    1. pacman wiki(http://ppt.cc/PdHh) http://wiki.archlinux.org/index.php/Pacman
      1. install packages
        1. $pacman -S PKGNAME
      2. install local package(not from database)
        1. $pacman -U PATH_TO_PACKAGE
      3. remove packages
        1. $pacman -R PKGNAME
      4. remove with dependencies
        1. $pacman -Rs PKGNAME
      5. remove with configuration files
        1. $pacman -Rn PKGNAME
      6. search packages
        1. $pacman -Ss PKGNAME
      7. whole system upgrade
        1. $pacman -Syu
  4. yaourt
    1. yaourt wiki(http://ppt.cc/1;bW) http://wiki.archlinux.org/index.php/Yaourt
      1. add to /etc/pacman.conf
        1. for i686
          1. [archlinuxfr] Server = http://repo.archlinux.fr/i686
        2. for x86_64
          1. [archlinuxfr] Server = http://repo.archlinux.fr/x86_64
      2. 安裝
        1. $pacman -S yaourt
      3. 指令基本上跟pacman一樣
      4. building from sources
        1. install packages
          1. $yaourt -Sb PKGNAME
        2. whole system upgrade
          1. $yaourt -Sybu
  5. abs(arch build system)
    1. 安裝
      1. $pacman -S abs
    2. configuration file
      1. /etc/abs.conf
    3. sync
      1. $abs
    4. 我的作法
      1. $cd /usr/local/src
      2. 創造build directory
        1. $ln -sf /var/abs/extra/mplayer ./ (好處是下一次sync時compile的東西會一起刪掉)
        2. or $cp -r /var/abs/extra/mplayer ./ (好處是自己改的東西可以保留)
      3. $cd mplayer
      4. 編輯設定檔
        1. $nano -w PKGBUILD
      5. compile && create package && install
        1. $makepkg -i