HON95 1 年之前
父節點
當前提交
ca5f123173
共有 3 個文件被更改,包括 22 次插入2 次删除
  1. 2 1
      check-links.sh
  2. 1 1
      personal-device/_name
  3. 19 0
      personal-device/linux.md

+ 2 - 1
check-links.sh

@@ -143,12 +143,13 @@ Random collection of config notes and Miscellanea. _Technically not a wiki._
 - [Wi-Fi Protected Access (WPA)](/networking/wpa/)
 - [Zero Trust Networking](/networking/zero-trust/)
 
-## Personal Devieces
+## Personal Devices
 
 - [Android](/personal-device/android/)
 - [PC Applications](/personal-device/applications/)
 - [Arch (i3)](/personal-device/arch-i3/)
 - [Kubuntu](/personal-device/kubuntu/)
+- [Linux](/personal-device/linux/)
 - [Manjaro (KDE)](/personal-device/manjaro-kde/)
 - [Windows](/personal-device/windows/)
 

+ 1 - 1
personal-device/_name

@@ -1 +1 @@
-Personal Devieces
+Personal Devices

+ 19 - 0
personal-device/linux.md

@@ -0,0 +1,19 @@
+---
+title: Linux
+breadcrumbs:
+- title: Personal Devieces
+---
+{% include header.md %}
+
+Common Linux stuff.
+
+# System Cleanup
+
+- Show dir file sizes: `sudo du -sh _DIR_/{.,}* 2>/dev/null | sort -hr | head -n10`
+- Show biggest dirs/files (GUI): `baobab`
+- Clean trash: `sudo rm -rf ~/.local/share/Trash/*`
+- Clean Docker: `sudo docker system prune -af`
+- Clean Singularity: `sudo singularity cache clean`
+- Clean yay/pacman (Arch): `yay -Scc` (or `sudo pacman -Scc`)
+
+{% include footer.md %}