the permissions problem often happens when you try to remove a file that is not yoursi mean, try to list your files usingls -lyou may have the permissions set as 777 which is:-rwxrwxrwx root root file_namebut yet you're not the owneryou can solve this problem using this command:chown username:username file_name(note that you'll have to replace "username" with your user name)anyway, i just wanted to tell the problem causes ... (as it happened to me earlier)you got a nice blog over here :)keep it :)
Thanks BooDy for your comment, I just didn't know where to find the Trash files are located :)
BTW, When are you going to graduate BooDy?
that would be next year ... 2010hope so :D
OK, just let me know when you do :)
i'll try not to forget that -isa- :Dbut may i ask why?! :)
I think this doesn't work in all Linux distributions.for example on RHEL3.0 this file doesn't exist in this location. and when i do that :cd ; find ./ -iname *trash* 2>/dev/nullIt returns no results to me
I guess you'd better run the following command as the super user:find / -name "*"trash"*"
Post a Comment
9 comments:
the permissions problem often happens when you try to remove a file that is not yours
i mean, try to list your files using
ls -l
you may have the permissions set as 777 which is:
-rwxrwxrwx root root file_name
but yet you're not the owner
you can solve this problem using this command:
chown username:username file_name
(note that you'll have to replace "username" with your user name)
anyway, i just wanted to tell the problem causes ... (as it happened to me earlier)
you got a nice blog over here :)
keep it :)
Thanks BooDy for your comment, I just didn't know where to find the Trash files are located :)
BTW, When are you going to graduate BooDy?
that would be next year ... 2010
hope so :D
OK, just let me know when you do :)
i'll try not to forget that -isa- :D
but may i ask why?! :)
I think this doesn't work in all Linux distributions.
for example on RHEL3.0 this file doesn't exist in this location.
and when i do that :
cd ; find ./ -iname *trash* 2>/dev/null
It returns no results to me
I guess you'd better run the following command as the super user:
find / -name "*"trash"*"
Post a Comment