Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

ubuntu clean up disk space

#Quick clean up
sudo apt-get autoremove
sudo du -sh /var/cache/apt #clean apt cache
sudo apt-get autoclean
sudo apt-get clean
journalctl --disk-usage
du -h /var/lib/snapd/snaps #remove old versions of snap
rm -rf ~/.cache/thumbnails/* #clean thumbnail cache

#Detailed iformation
https://itsfoss.com/free-up-space-ubuntu-linux/
Comment

ubuntu disk free space

df -h
Comment

ubuntu clean up disk space

sudo apt-get autoremove &&
sudo du -sh /var/cache/apt &&
sudo apt-get clean &&
sudo apt-get remove --purge &&
sudo journalctl --vacuum-time=1d &&
rm -rf ~/.cache/thumbnails/*
Comment

ubuntu server clean up disk space

sudo apt install ncdu
ncdu
Comment

ubuntu clean up disk space

du -sk * | sort -nr | head -10
Comment

PREVIOUS NEXT
Code Example
Shell :: linux install figlet 
Shell :: spotify download ubuntu 
Shell :: nvm install lts 
Shell :: install postman in ubuntu 
Shell :: find and stop docker engine mac 
Shell :: ram usage in linux 
Shell :: hardhat install 
Shell :: sound switch ubuntu 
Shell :: install pm2 
Shell :: libssl-dev install on ubuntu 
Shell :: npm firebase-tools 
Shell :: ubuntu list all disks 
Shell :: How to rename a commit ? 
Shell :: how to install kite in ubuntu 
Shell :: apt-get install ps 
Shell :: change git remote repository 
Shell :: uninstall rvm 
Shell :: how reset commit git with losing changes 
Shell :: install audacity linux 
Shell :: ssh remove whole folder command 
Shell :: set hostname debian 10 
Shell :: nodemon install 
Shell :: inkscape ubuntu ppa 
Shell :: restart-Service sshd 
Shell :: wsl upgrade to 2 
Shell :: vim tab 2 spaces 
Shell :: arch linux emoji not showing 
Shell :: how to extract zip file in ubuntu terminal 
Shell :: rick roll terminal command 
Shell :: upgrade ubuntu version command line 
ADD CONTENT
Topic
Content
Source link
Name
8+9 =