Quote:
1) How do I move files to Root Protected folders?
- I want to customize Fedora to my asthetic sense by customizing icons and such, however I do not want to liter up my Home Folder. So I want to move my downloaded PNG icons to the /usr/share/pixmaps folder where other icons are stored, however it says I do not have permission to access the folder, it doesn't prompt me to input my root password only gives me the error message. Where can I input my root password for this or in some other way bypass my problem?
|
It's actually best to not move things around in protected directories. Well, what I did was create a few of directories in /home. I have /home/user (my user directory created during the inital install), /home/mp3 (for my mp3 and ogg files), /home/images (for all my pictures), and /home/storage (for backups). The owner of these directories will need to be you. I have the following in a bash script in /home/user/bin which is set up to run as a root cronjob:
Code:
# nightly backups
tar -czf /home/storage/pics_backup.tar.gz /home/images
tar -czf /home/storage/mp3_backup.tar.gz /home/mp3
chown myusername.mygroup /home/storage/pics_backup.tar.gz
chown myusername.mygroup /home/storage/mp3_backup.tar.gz
mv /home/storage/pics_backup.tar.gz /home/storage/`date +%Y%m%d-%k%M`-pics_backup.tar.gz
mv /home/storage/mp3_backup.tar.gz /home/storage/`date +%Y%m%d-%k%M`-mp3_backup.tar.gz
Once a week I go into the /home/storage directory and burn all the .tar.gz files to CD or DVD, depending on the size of all the files. I have a friend who has /home on a seperate hd from the /boot, swap and /root partitions. He says this keeps everything seperate.
Quote:
2) How can I make folders open within the same window?
- This is something that just annoys me to death. I like to keep my desktop as organized as possible (by the way, the 4 workspaces really are neat for that very reason!) and when I am navigating a CD or the FS I get over four folder windows open. How can I make folders open within the same window? Or rather, how can I open folders Windows style? (So shoot me, one thing I like about Windows, lol)
|
I believe this depends on which file manager you are using. For KDE, open a konq window and select Settings -> Configure Konqueror from the menubar. This will open a configuration dialog. Go to the Behaviour section and you will see, under Misc options, a checkbox that reads "Open folders in seperate windows". If this is checked, uncheck it and click OK at the bottom of that window. In Gnome, you can open the settings dialog from within Nautilus and there is a similar setting in the Behaviour tab.
Quote:
|
1) How do I move files to Root Protected folders?
|
Again, it's actually best to not move things around in protected directories.
If you're using KDE, you can always setup a new KMenu item that reads "root fm" or something similar, and give it the command of: kdesu kfmclient openProfile filemanagement
When you click on it, the system will ask for the root password, and upon success, will open a konq window as root.
Another way of doing this is to create a new servicemenu item from:
Code:
[Desktop Entry]
ServiceTypes=inode/directory,inode/directory-locked
Actions=Openassu
[Desktop Action Openassu]
Name=Open as Root
Icon=kfm
Exec=kdesu "konqueror --profile filemanagement %U"
This will allow you to right-click on any directory and choose Actions -> Open as Root and supply the root password to open that directory as if the root user opened it.
I hope this helps.