To the list;
I find locked files in KNOPPIX and I want to open them. I am in root ( I think ) , in a shell or console and I cannot open locked files.
any ideas?
finder
Printable View
To the list;
I find locked files in KNOPPIX and I want to open them. I am in root ( I think ) , in a shell or console and I cannot open locked files.
any ideas?
finder
Hi,
go to a console and type. If you are not yet root, typeCode:whoami
in order to become root. Verify it again by typingCode:sudo su
.Code:whoami
Then, to view a file, simply do:where you replace /path/to/myfile with the name of the file you want to see.Code:cat /path/to/myfile
It could be that the permissions are wrong. If that is the case, you can doin order to give root full access (and deny it to others).Code:chmod 700 /path/to/myfile
Greetings,
probono[/code]