I'm on Debian Bookworm.
I am trying to format my USB drive to FAT32 filesystem.
~$ lsblk -f
NAME FSTYPE FSVER LABEL UUID FSAVAIL FSUSE% MOUNTPOINTS
sdb
└─sdb1
ntfs SONY 2DE23E532C9D2CAC
When I tried mkfs
I get the following error:
sudo mkfs -t vfat /dev/sdb1
[sudo] password for vrgovinda:
mkfs: failed to execute mkfs.vfat: No such file or directory
I have the following installed:
exfatprogs
udisks2
Is there anything I am doing wrong? Please help. Thanks in advance.
mkfs.vfat
is indosfstools
– muru Aug 21 '23 at 02:23apt-file search <path-to-binary>
, I get an error thatapt-file: command not found
– vrgovinda Aug 21 '23 at 09:42apt-file
; There's nothing like that in my repositories. I use Debian Bookworm – vrgovinda Aug 21 '23 at 09:49apt-file search mkfs.vfat dosfstools: /sbin/mkfs.vfat dosfstools: /usr/share/man/man8/mkfs.vfat.8.gz fish-common: /usr/share/fish/completions/mkfs.vfat.fish manpages-de: /usr/share/man/de/man8/mkfs.vfat.8.gz manpages-fr: /usr/share/man/fr/man8/mkfs.vfat.8.gz manpages-pl: /usr/share/man/pl/man8/mkfs.vfat.8.gz
– vrgovinda Aug 21 '23 at 10:51dosfstools
and my work is done! Thank you muru! – vrgovinda Aug 21 '23 at 10:52