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

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

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

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 get 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 :: check ntp server linux 
Shell :: copy all files from a folder to another ubuntu 
Shell :: how to update git 
Shell :: setup wordpress on ubuntu 
Shell :: install activitywatch ubunut 
Shell :: enzyme npm install 
Shell :: Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), are you root? 
Shell :: install linux subsystem windows 10 
Shell :: merge master with main 
Shell :: uvicorn run fastapi 
Shell :: install pre-commit 
Shell :: centos vmware guest mount shared folder 
Shell :: ubuntu check permissions of file 
Shell :: git list stashes 
Shell :: loop over file bash 
Shell :: git check merged branches 
Shell :: install ionic version 
Shell :: unzip ubuntu 
Shell :: how to download a text file with curl 
Shell :: [Errno 13] Permission denied: ubuntu 
Shell :: copy whole directory command line 
Shell :: how to install xdebug on Windows 
Shell :: install virtualbox extension pack from command line 
Shell :: git pull shows already up to date 
Shell :: setup github password terminal 
Shell :: git remote using ssh 
Shell :: how to check what default browser in linux 
Shell :: how to check directory size in linux 
Shell :: prittier download ubuntu 
Shell :: run bash script on zsh 
ADD CONTENT
Topic
Content
Source link
Name
1+7 =