• Skip to main content

Uly.me

cloud engineer

  • Home
  • Archives
  • Search

df

Check Mounted File Systems

July 28, 2022 by Ulysses

Check mounted file systems using df. Displaying different options.

df 
df -h
df -Th

df df -h df -Th

To get rid tmpfs, run this.

df -Th| grep -Ev '(udev|tmpfs)'

df -Th| grep -Ev '(udev|tmpfs)'

Filed Under: Linux Tagged With: check, df, file, mounts, systems, tmpfs

Determine USB Format Type

January 21, 2020 by Ulysses

Here’s how to determine what type of USB format a thumb drive is in Linux.

  • df -Th (shows the file system type)
  • lsblk (shows the block devices)
  • lsusb (show usb ports and devices)
  • fdisk -l (displays the USB format type)

To display, use “fdisk -l” to display either NTFS, FAT32 or exFAT32.

Filed Under: Linux Tagged With: df, fdisk, format, lsblk, lsusb, type, usb

  • Home
  • About
  • Contact

Copyright © 2022