configuration

Container and docker and Hypervisor

在玩容器虛擬化前,先建立何謂容器的觀念,不同於虛疑主機系統消耗的資源會少非常多。 LXC  使用者空間控制核心命名空間合併cgroup功能創建的應用容器 ‌‌使用上類似:‌‌* Feels like somewhere between a chroot and a VM‌‌* Can run a full distro using the "host" kernel‌‌* Processes running in a container are visible from the outside‌‌* Doesn't require any specific hardware, works on all supported architecutres 實作上我選擇安裝Proxmox原因是滿多介紹HomeLab的youtuber就有提到它。比較類似的平台有VMware
Phillips Hsieh

Ubuntu Linux 使用 apt-get 指令移除軟體並清理遺留的垃圾

在 Ubuntu 下移除某個軟體套件,使用的指令是 apt-get remove,例如:     sudo apt-get remove texlive-full 但由於先前安裝此套件,會一併自動安裝相依套件(dependencies),所以需要再用 autoremove 清理。     sudo apt-get autoremove 或是在 remove 時加參數:     sudo apt-get remove –auto-remove 但是這樣還不夠乾淨,因為預設的 remove 行為,會保留一些設定檔之類的遺物。所以需要用 purge 的方式移除。針對單一套件使用 purge 方式徹底移除:     sudo apt-get purge texlive-full 或     sudo apt-get remove –purge texlive-full 在使用 autoremove
ipstor