I have upgraded my Ubuntu 12.04 to 14.04. After the upgrade I noticed that my external hard disk is being mounted in a separate path.
Earlier, It used to be in /media/u10
. Now I see it is mounted on /media/walt/u10
.
walt is the root username for my ubuntu PC.
I have to change it manually by running this below command everytime,
sudo mount -B /media/walt/u10 /media/u10
How to resolve this issue , I don't want to run above command everytime.
/dev/sdb1 1.8T 240G 1.5T 14% /media/walt/u10
– walterb Oct 05 '14 at 12:42sudo ln -s walt/u10 /media
. That's less invasive and permanent than adding an fstab entry. – David Foerster Oct 05 '14 at 13:04