I recommend to follow this procedure.
Open a terminal and type the command:
- Code: Select all
cat /etc/passwd
Check if your user and group ids are 1000:
- Code: Select all
...
youruserhere:x:1000:1000:yournamehere,,,:/home/youruserhere:/bin/bash
...
I will suppose that those values are 1000. Change them if required.
Type these commands:
- Code: Select all
cd /etc
sudo cp fstab fstab.bak
Now you have to edit the file fstab with your prefered editor (nano, gedit, pluma, vi, etc). I will use gedit:
- Code: Select all
gksu gedit fstab
I recommend to update last lines with tese contents:
- Code: Select all
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc nodev,noexec,nosuid 0 0
# / was on /dev/sda1 during installation
UUID=d0d68d11-5d09-4909-a138-b1dea8a00c4b / ext2 errors=remount-ro 0 1
# swap was on /dev/sda5 during installation
UUID=f34c59dc-edd0-4a0f-96c3-d6dc1e887a5a none swap sw 0 0
# Secondary Disk
UUID=722A7F7E2A7F3DE3 /media/sdb1 ntfs defaults,uid=1000,gid=1000 0 0
#Tertiary Disk
UUID=36430AFC5DCAE3E6 /media/sdc1 ntfs defaults,uid=1000,gid=1000 0 0
Save & exit.
Type these commands:
- Code: Select all
sudo umount /media/sdb1
sudo umount /media/sdb2
sudo mount -a
mount
Check if partitions are correctly mounted.
Finally you can define Tash folders (very useful) in these partitions:
- Code: Select all
mkdir /media/sdb1/.Trash-1000
mkdir /media/sdc1/.Trash-1000