Disk Commands
Also relevant: zfs
df
Show free disk space including file system type:
> df -TH
Filesystem Type Size Used Avail Use% Mounted on
tmpfs tmpfs 3.4G 2.1M 3.4G 1% /run
/dev/nvme0n1p2 ext4 491G 298G 168G 64% /
tmpfs tmpfs 17G 13M 17G 1% /dev/shm
tmpfs tmpfs 5.3M 4.1k 5.3M 1% /run/lock
tmpfs tmpfs 17G 3.2M 17G 1% /tmp
/dev/nvme0n1p1 vfat 536M 41M 496M 8% /boot/efi
tmpfs tmpfs 3.4G 148k 3.4G 1% /run/user/1000
du
du estimates file space usage.
Show directory disk usage and use it to sort the files in this dir:
sudo du -s -- *|sort -s -r -n -k 1,1
Format disk
See cli-disk-format.
Using the Flash disk
- Identify it
# lsblk
OR
# fdisk -l
OR
$ sudo fdisk -l
- Create mount point
root@suprox:/media# mkdir flash
- Mount it
mount /dev/sdc2 /media/flash/
- Use it
root@suprox:/media# cd flash/
root@suprox:/media/flash# ls -la
total 100
drwxr-xr-x 4 root root 32768 Dec 31 1969 .
drwxr-xr-x 3 root root 4096 Jun 13 19:24 ..
- Unmount it
umount /media/flash