Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

how to check folder size in linux

# show all folder size in the current directory
du -h --max-depth=1
Comment

show directory size linux

du -sh /home/george
2.1G    /home/george
Comment

linux folder size

du -sh folder
Comment

size of folder linux

sudo du -sh /path/to/folder
Comment

check directory size linux

du -sh *
du -sh /directory
du -shx /directory 
Comment

command to check size of folder in linux

du -lh --max-depth=1 --block-size=M | sort -nr
Comment

how to get the folder size in linux

du -sh folder/ 
Comment

get folder size linux

#This shows you the folder size in human readable format

sudo du -sh /folder
Comment

check folders sizes linux

du -sh -- *
Comment

find folder size in linux

df -sh .
Comment

Linux folder size

du -sh /* | sort -h
Comment

check directory size linux

du -sh *
du -sh /directory
du -shx /directory 
Comment

folder size in linux

sudo du -sh /var
du -h directory 
Comment

check total folder size linux

#and this shows all sizes in that directory/folder
ls -lsh
Comment

how to check directory size in linux

du -h --max-depth=1 /directory
du -sh *
du -sh /directory
du -shx /directory
Comment

linux get folder size

df -h .; du -sh -- * | sort -hr

#Filesystem      Size  Used Avail Use% Mounted on
#/dev/sdb2       206G  167G   29G  86% /
#115M    node_modules
#2.1M    examples
#68K     src
#4.0K    webpack.config.js
#4.0K    README.md
#4.0K    package.json
Comment

PREVIOUS NEXT
Code Example
Shell :: how to install unsigned drivers on windows 10 
Shell :: cat eof 
Shell :: git push with gpg key 
Shell :: how to check size of image in linux 
Shell :: download putty for ubuntu 
Shell :: grant current user access to /dev/kvm 
Shell :: git clone with subrepos 
Shell :: git squash last 2 commits 
Shell :: edge download ubuntu 
Shell :: Kali - How to Uninstall Software on Kali Linux 
Shell :: homebrew not in path on ubuntu 
Shell :: windows start stop service 
Shell :: renaming heroku remotes 
Shell :: copier un répertoire et son contenu sous linux 
Shell :: how to install brew on mac 
Shell :: debian bullseye install nvm 
Shell :: brave browser install on ubuntu 
Shell :: encrypt zip password 
Shell :: ssh save password 
Shell :: discord linux manjaro 
Shell :: scp ssh key 
Shell :: nmap vulnerabilty scan 
Shell :: ubuntu timestamp 
Shell :: run mutiple sass files at once 
Shell :: pyinstaller module not found 
Shell :: open podfile in xcode from terminal 
Shell :: enable ssh ubuntu 
Shell :: linux dd show progress 
Shell :: case insensitive zgrep 
Shell :: conda install line_profiler 
ADD CONTENT
Topic
Content
Source link
Name
7+9 =