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

check folder size in linux terminal

du -sh /home/user/
Comment

show directory size linux

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

how to get the size of directory in linux

du -sh /var
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

how to get directory size in linux

du -a / | sort -n -r | head -n 10
5351116 /
2462616 /usr
2153492 /home
2153472 /home/george
1571924 /usr/lib
Comment

get Linux directory size

du -sh directory_path
-s, --summarize
         display only a total for each argument

  -h, --human-readable
         print sizes in human readable format (e.g., 1K 234M 2G)
Comment

PREVIOUS NEXT
Code Example
Shell :: adb reverse tcp 8081 
Shell :: how to ignore already committed files in git 
Shell :: pip install sys 
Shell :: error: cannot open .git/FETCH_HEAD: Permission denied 
Shell :: ubuntu keepass2 
Shell :: zoom download linux 
Shell :: refresh bash_profile 
Shell :: how to remove git from project 
Shell :: Could not find tools.jar debian 
Shell :: install firebase angular 8 
Shell :: git config user 
Shell :: vscode give music permissions 
Shell :: figma download linux 
Shell :: react select install 
Shell :: linux ram size 
Shell :: homebrew restart service 
Shell :: Failed to start redis-server.service: Unit redis-server.service is masked. 
Shell :: install angular 9.1.7 
Shell :: find large files linux 
Shell :: awk print first column 
Shell :: update chrome in kali linux through terminal 
Shell :: install compass mongodb ubuntu 
Shell :: Error loading webview 
Shell :: ubuntu dconf editor install 
Shell :: how to remove the last character terminal 
Shell :: install lerna on Linux 
Shell :: bash get width of terminal 
Shell :: see my dns server linux 
Shell :: docker clear cache 
Shell :: ubuntu remove cuda 
ADD CONTENT
Topic
Content
Source link
Name
6+6 =