Answers for "linux format usb command line"

6

linux format usb command line

df -h 
Select the correct drive
sudo umount /dev/sdc1
This command formats the drive as FAT32, you can use other formats too
sudo mkfs.vfat /dev/sdc1
Posted by: Guest on December-21-2020
0

linux quick format usb drive

umount
fdisk -l to get the dev/sxxx
For the vFAT (FAT32) file system: sudo mkfs.vfat /dev/sdc1
Posted by: Guest on October-04-2020

Code answers related to "linux format usb command line"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language