1

I have an SD card with two partitions labeled BOOT and DATA; BOOT is FAT32 and DATA is ext2. When I insert it into the card reader, automount properly mounts DATA but morphs the name of BOOT into BOOT1. Why does it do that and how can I make it mount to BOOT? And by that I mean /media//BOOT.

RadlyEel
  • 211

1 Answers1

1

What you are describing typically happens when there already exists a directory with the same name on the mounting location. It can be another BOOT partition mounted or it may happen that unmounting was unsuccessfull or not done at all. In that case the directory may stay there. When you try to mount it next time it will add number 1 as is original mounting point already taken.

It mounts it to the directory /media/<username>/. Check what you have in that directory by typing ls /media/<username>/, where you put your username instead of <username>. Or navigate to /media/<username> and see what you have there. Delete any directories which may be ledt there, but be careful if they are actualy mounted. In that case, you may delete the mounted partition content.

nobody
  • 4,412