I even tried some answers but I am a newbie at Ubuntu. I had no idea of what was everyone talking about. So please don't consider this a duplicate. I just need an easy how-to.
Asked
Active
Viewed 7,077 times
1 Answers
2
Now, you can fix it like this:
By presuming you have Ubuntu installed, I've fixed this problem by adding this line in the /etc/fstab file:
/dev/sda6 /media/MEDIA7 ntfs-3g defaults,user,locale=en_US.utf8,exec,uid=1000,gid=1000 0 0
Presuming that your external disk is formatted AS NTFS, replace /dev/sda6 with your disk path (you can find it out using fdisk -l). The /media/MEDIA7 is the mount point. Make sure that you replace the integer values of uid and gid with your own (you can get them by using id).
Now written in a different way:
- Open terminal
- Type
mkdir /media/MEDIA7 - Type
gedit /etc/fstab Copy/Paste this line:
/dev/sdaX /media/MEDIA7 ntfs-3g defaults,user,locale=en_US.utf8,exec,uid=1000,gid=1000 0 0Edit it to your info, you can get info by typing
fdisk -lin terminal.- Restart.
Found here: http://steamcommunity.com/app/221410/discussions/0/864974467574115543/?l=danish
Another workaround could be this:
- Open terminal
- Type
mkdir /MNT/DISKTHATISMOUNTED/MySteamLibrary - Type
chmod -R 777 /MNT/DISKTHATISMOUNTED/MySteamLibrary - Now create the steamlibrary through steam
Note:
/MNT/DISKTHATISMOUNTEDyou have to edit yourself to point to where your disk drive is mounted.