EDIT: Posted past each other. If it's fixed now don't mess with things. If it ain't broke ..... Well, there is something definitely odd about these two
/dev/sda1: LABEL="RECOVERY" UUID="46509D79509D7083" TYPE="ntfs"
/dev/sdb1: LABEL="Expansion Drive" UUID="24C49FABC49F7E2C" TYPE="ntfs"
They should be showing up as "Recovery" and "Expansion Drive". But either way none of them should be showing up as sdxy.
All I would suggest is that you have all the internal ntfs partitions defined in fstab so they mount to their proper names or at least ones that you create for them.
[1] Create mount points for the 2 internal NTFS partitions:
- Code: Select all
sudo mkdir /media/Recovery
sudo mkdir /media/Win7
[2] Add the following lines to the end of /etc/fstab:
- Code: Select all
UUID=46509D79509D7083 /media/Recovery ntfs defaults,noauto 0 0
UUID=DA668DEA668DC829 /media/Win7 ntfs defaults,nls=utf8,uid=1000,umask=000,windows_names 0 0
[3] If you currently have sda1 or sda2 mounted unmount them.
[4] The run the following command to test for syntax errors and mount the partitions to their new mount points:
- Code: Select all
sudo mount -a
That should take care of the 2 internal ntfs partitions - doesn't fix the external one showing up incorrectly though.
BTW, the "RECOVERY" partition I have set as "noauto" in fstab so it shouldn't mount and shouldn't show up anywhere. Shouldn't be going in there anyway.