Last active
          October 18, 2025 01:31 
        
      - 
            
      
        
      
    Star
      
          
          (104)
      
  
You must be signed in to star a gist 
- 
              
      
        
      
    Fork
      
          
          (36)
      
  
You must be signed in to fork a gist 
- 
      
- 
        Save yufengwng/9cff3fc82403e3f3052d to your computer and use it in GitHub Desktop. 
    Arch Linux Commands Cheatsheet
  
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | pacman | |
| ====== | |
| view logs: /var/log/pacman.log | |
| update system | |
| # pacman -Syu | |
| list installed packages | |
| # pacman -Q | |
| list packages no longer required by others | |
| # pacman -Qdtq | |
| search installed packages | |
| # pacman -Qs <name> | |
| search packages | |
| # pacman -Ss <name> | |
| install packages | |
| # pacman -S <name> | |
| remove package, its dependencies and config file backups | |
| # pacman -Rns <name> | |
| clean old packages in cache | |
| # pacman -Sc | |
| yaourt | |
| ====== | |
| same as pacman | |
| systemd | |
| ======= | |
| unit files: /usr/lib/systemd/system/ or /etc/systemd/system/ | |
| list running units | |
| $ systemctl | |
| check status | |
| $ systemctl status <unit> | |
| start/stop a service | |
| # systemctl (start|stop) <unit> | |
| enable/disable a service at bootup | |
| # systemctl (enable|disable) <unit> | |
| reload systemd | |
| # systemctl daemon-reload | |
| manual install of AUR packages | |
| ============================== | |
| update repositories | |
| # pacman -Sy | |
| grab the package | |
| $ curl -O <url> (e.g. https://aur.archlinux.org/packages/ya/yaourt/yaourt.tar.gz) | |
| untar package | |
| $ tar xzvf <package.tar.gz> | |
| change into package directory | |
| $ cd <package> | |
| build and install | |
| $ makepkg -si | |
| java environments | |
| ================= | |
| check status | |
| $ archlinux-java status | |
| set default version | |
| # archlinux-java set <version> | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment
  
            
commands for tolss run in terminal