You are not logged in.
Pages: 1
I need to delete or rename a folder called pb (it has files in it) that is located in the /usr/local/games/enemy-territory/
when I was using Ubuntu I would just open the folder using nautilus and try and delete it but Arch is different so I don't know how to delete or rename a folder
Offline
from the command line:
#delete
rm -rf pb
# rename
mv pb newname
I don't know what DE/WM you're using, so I can't be sure any graphical advice I give you will be of any help, but the above should work.
I know in kde you can run a graphical app as root with kdesu, so to open the file manager (konqueror) you could run the command:
kdesu konqueror
don't know how it works in too many other environments.
Offline
hmm I am using xfce4 but what you gave me worked thank you
Last edited by Shadowmeph (2008-05-29 02:20:44)
Offline
hmm I am using xfce4
You may run thunar with root permissions (BE CAREFUL.)
sudo thunar
You can also install gksu
pacman -S gksu
And then
gksu thunar
Offline
Pages: 1