I am new to Linux in general and am presently using Ubuntu 16.04 distro. Recently, I have been fiddling around with disk partitioning with the aim of putting all my documents on HDD disk and keep all my applications installed on an SSD disk. The whole procedure of what I did is described here (in the provided answer).
This works fine, however I have encountered one annoyance. In order to change and save any files from the HDD, I have to first copy them to the Desktop and modify them there. I believe this is due to the fact, that I moved all my files into a folder, which requires permission to be accessed every time I wish to modify any document. However I do not know, how to remove this permission request and whether that is a good idea in the first place. Any ideas of how to permanently remove this need for permission?
I thank you all for any provided answers.
/
or/home/$USER
directories? – George Udosen Nov 02 '18 at 07:44/home/$USER/mnt/data/
. Note, that I did not create this file, but it was there as a part of distro installation, apparently. I chose it, as it was also chosen in the tutorial for disk partitioning that I was following. – Nejc Kejzar Nov 02 '18 at 18:59sudo ls -l /home/$USER/mnt | cut -d" " -f5-
and lets see the ownership! – George Udosen Nov 02 '18 at 19:03Computer/mnt/data
(having run the above command, the directory couldn't be found). Thus,sudo ls -l /mnt | cut -d" " -f5-
gave the output4096 jul 24 19:06 data
– Nejc Kejzar Nov 03 '18 at 20:33sudo ls -l /mnt
. It givestotal 4 drwxrwxrwx 9 $USER $USER 4096 jul 24 19:06 data
– Nejc Kejzar Nov 04 '18 at 13:10