I have an external drive whose name used to be "2nd Brain". I lent it to a friend who renamed it but now I can't manage to rename it again. I followed the instructions from this answer, to use the disk utility to change the name, but as soon as I enter 2nd Brain
it automatically becomes 2ND BRAIN
.
I'm using Ubuntu 12.04 LTS. The filesystem format was FAT32, but now its listed as msdos. My friend must have changed that too. How do I change it back and how can I change the drive's name without having it capitalized?
msdos
is the partition table type, rather than the filesystem type. According to this [su] comment, the FAT32 standard supports lower case / mixed case although some Linux tools follow the Windows practice of not supporting it Setting a mixed-case volume label for a FAT32 drive on Windows - the comment suggests tryingfatlabel
from the dosfstools package. – steeldriver Jan 17 '17 at 14:52sudo fatlabel /dev/sdxN my_label
, where "x" is the drive letter, "N" is the partition (most likely 1) and "my_label" is self-explanatory. – Jan 17 '17 at 15:05dosfstools
package? – steeldriver Jan 17 '17 at 15:42