Linux
A cheatsheet by @rstacruz|Refreshed about 2 years ago.Refresh|View source on Github

Mounting a RAM drive

Mounting a RAM drive

$ mount -t tmpfs -o size=5G,nr_inodes=5k,mode=700 tmpfs /tmp

Visudo

Visudo

sudo visudo

username ALL=(ALL) NOPASSWD:/sbin/restart whatever

Display the amount of available disk space

Display the amount of available disk space

df
df -h   # human-readable format
df -a   # all filesystems

Display disk usage

Display disk usage

du
du -hsx * | sort -rh | head -10    # largest 10 folders