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.
Revisions
-
yufengwng revised this gist
Apr 29, 2017 . 1 changed file with 3 additions and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -9,6 +9,9 @@ update system list installed packages # pacman -Q list packages no longer required by others # pacman -Qdtq search installed packages # pacman -Qs <name> -
Yufeng Wang revised this gist
Jan 12, 2015 . 1 changed file with 28 additions and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -47,4 +47,31 @@ 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> -
Yufeng Wang created this gist
Dec 9, 2014 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,50 @@ pacman ====== view logs: /var/log/pacman.log update system # pacman -Syu list installed packages # pacman -Q 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