May 16, 2008 · General · Email This Post
Share

If you're new here, you may want to subscribe to my RSS feed and if you have questions related to your ubuntu system post question to our forums. Thanks for visiting!

By default, Ubuntu does not show Computer,home,network and Trash icon on the desktop in Ubuntu. Instead Ubuntu shows the Trash icon on the extreme right of the bottom panel. Also having the Trash icon on the desktop in Ubuntu is a good option, because it becomes easier to drag - drop files onto the Trash icon.

A Computer icon on your desktop gives you easy access to all mounted drives and your home folder at one place just like Windows does. Here is how you can show the Computer,home,network and Trash icon on your Ubuntu Desktop.

Press Alt + F2 and type gconf-editor in the dialog box and Click Run to start the GNOME Configuration Editor.


Now you need to Go to the apps/nautilus/desktop from left menu and On the right hand side,you need to check the following options

trash_icon_visible
computer_icon_visible
home_icon_visible
network_icon_visible

You can do few more things from that place too, change the trash_icon_name,home_icon_name,network_icon_name and computer_icon_name.

That’s it now you should see The Computer, home and Trash,Network icons on Your Ubuntu desktop


  • Share/Bookmark

Related Articles

2 Comments to “Show The Computer, home, Network and Trash icons on Your Ubuntu desktop”

  1. Sudarshan says:

    Hi,

    Can you please give the instructions for Kubuntu too?

    Thanks

  2. as root open gnome-terminal

    # show home icon”
    gconftool-2 \
    --config-source xml:readwrite:/etc/gconf/gconf.xml.defaults \
    -t bool -s /apps/nautilus/desktop/home_icon_visible true

    # show icon computer
    gconftool-2 \
    --config-source xml:readwrite:/etc/gconf/gconf.xml.defaults \
    -t bool -s /apps/nautilus/desktop/computer_icon_visible true

    # show trash icon
    gconftool-2 \
    --config-source xml:readwrite:/etc/gconf/gconf.xml.defaults \
    -t bool -s /apps/nautilus/desktop/trash_icon_visible true

    logout and login for source configuration, enjoy!

Leave a Reply