Find directory size

find size of each directory in ‘/’ order by size
du -h --max-depth=1 / | sort -nr

find size of each directory in current directory order by size
du -h --max-depth=1 | sort -nr

Configuring Static Routes with ip commands

As a system administrator, you can configure static routes using the ip route command. ...

Mais vistos