I'm new to Ubuntu and i have a problem and can't find an answer for it, so:
I'm using Windows + Ubuntu and i'm using a ext4 partition for storing my backup, BUT every time when i need to do some changes on this partition i need to do at as a super user and okay this is not a problem, but when the default backup program need do save the backup there the system is show me and error. Can you help me how to fix that ?
Asked
Active
Viewed 71 times
1
Maythux
- 87,123
Bogdan Bogdanov
- 113
2 Answers
0
Changing permissions in fstab in order to allow writing for this partition, or just change permissions for backup folder
0
Try to add your external Hdd to fstab so that it's automounted while booting
Get the UUID
Run the command:
sudo blkid
Then open /etc/fsatb:
sudo gedit /etc/fstab
Now add the line to the bottom of /etc/fsatb:
UUID=UUID /mounting-point ext4 defaults 0 2
Replace UUID with result of your UUID of /dev/sdX
Replace /mounting-point with path to mount the partition on
Reaplce ext4 with your partition filesystem type