Problem With Folder Permissions
- Anmelden oder Registrieren um Kommentare zu schreiben
Having trouble gaining access to a folder and files.
I have a folder and files backed up on an external hard disc.
They are vmdk files for Virtualbox.
At the moment I cannot change the permissions of them. I've tried as Nautilus root but to no effect. Is ther a apt command that I can use?
The chown command allows you to change ownership. Start with the folder.
Changing permissions of a folder ? Well if it is an ntfs partition you might not have the ntfs writer tool, if so then do this in the terminal :
sudo apt-get install ntfs-3g
Then mont and unmont the partition and try again.
It it is a Linux-friendly (ext2,3,4 etc.. partitions), you can try the *Chuck Norris Mode* which is very extreme and might not be suitable for the long term (so make sure to take it back to other less permissive permissions once you've done with it), by doing this (I will take the foo.bin file as example) :
Defining Permission
sudo chmod 777 /media/MyMEDIA/foo.bin
But be careful with this one and use it only in last case.
PS: It is only this file, or any other file from the partition?
The disc is formatted fat 32 but there is only one folder and files that appear to be affected.I've tried this -
dhmod/Home/John/Folder Name
but I got the error John not known
What should the path be ?
chmod xyz /path/to/the/file
You missed the xyz numbers, which set the permissions to the file. And be careful with spaces in the path name, for example, '/home/user/my\ folder' instead of '/home/user/my folder'
As far as I know, FAT 32 does not support permissions. Not sure what the 'chmod' would do...
OK , did this
chmod 777/Home/john/virtualbox
and I get
chmod: missing operand after `777/Home/john/virtualbox'
Perhaps I did not explain very well what I'm trying to do.
If I right click on the folder and then on Properties and then on permissions I'm shown as 'Owner'
Down the bottom is a box to be ticked to 'Allow executing as a program'
It won't allow me to tick that box.
Are VMDK files supposed to be directly executed? I would believe they are supposed to be opened from VirtualBox.
Anyway, your error was to omit a space between 777 and /home/john/virtualbox and to write /Home instead of /home. But, again, there is no notion of permission on FAT filesystems. That probably explain why you cannot change them.
You're right. I have just tried to change permissions in a fat32 pendrive and nothing happens after executing chmod.
There should be a space between 777 and /home/John/virualbox.
Also remember bash is case-sensitive.
If the path contains a space, e.g. New Folder it must be escaped
New\ Folder
Or the entire expression quoted:
"New Folder"
One can find good documentation starting from https://gnu.org/software/bash/
Also, here is a good introduction to the command-line interface: http://flossmanuals.net/command-line/
- Anmelden oder Registrieren um Kommentare zu schreiben