When I try to copy downloaded files to other partition, I get an error like in this picture:
The partition is dev/sda6
which is empty and I want to use as and partition that just for saving files. Can someone help me?
When I try to copy downloaded files to other partition, I get an error like in this picture:
The partition is dev/sda6
which is empty and I want to use as and partition that just for saving files. Can someone help me?
sudo chmod -R 777 /media/agung/27820dc5-7261*
This will enable read, write and execute capability on the partition. Which means you can store files on it.
If you see 'Permission denied' or 'permission does not allow pasting files in this folder', this means you can only access the file as the root. If you want to do this via a file manager like nautilus, simply type this via your terminal:
sudo -H nautilus
Now you can read, write, and execute files. You can also set your file permission to 003 in fstab (computer > etc/fstab) this will give you (owner) and groups the read/write/execute access but any other person, just the read access. I think this is safer than 777 as suggested in the previous comment. The default in Ubuntu is 002. More information is given in How to fix external hard disk READ ONLY?