0

I am not able to write on my hard disk ( eg- I am not even able to create a new folder there). In the properties it is written that the owner is root and it has not given writing rights to other users. We cant login as root in ubuntu.

this is how my hard disk is shown in files , as "Computer" in other locations options

this is what i see when i open hard disk i.e. click on "Computer" option

But every permission is given to root and I cant write or edit. How can I get the permission to write in the hard disk and if I want to access files in hard disk, what would be the address of files ???

  • 1
    Are you expecting it to work like on Windows where anyone can write to the root of the C drive? Linux doesn't work like that. Only the root user can write to the root directory. – wjandrea May 15 '18 at 19:28

1 Answers1

0

It's not Windows, where any user can write into System Dir by just clicking 'Yes' on UAC Prompt.

To access system files and folders as RW, type on terminal or ALT+F2 sudo filemanager /, here I see you're using nautilus, so type

sudo nautilus / -> Enter Password -> Access / files.

To access other files or volume on your computer, click on 'Other Locations' and see if your volume are listed there and if not, type sudo fdisk -l to know volume information. and mount it accordingly.

Note : gksu is recommended over sudo for running GUI applications due to various of factors, however it's removed in latest version of Debian/Ubuntu. In that case use pkexec or gvfs admin backend.