Forum     

Go Back   Digit Technology Discussion Forum > Software > Open Source
Register FAQ Calendar Mark Forums Read

Open Source A place where you can talk to like-minded people about the fastest growing software movement today! Discuss anything and everything about Open Source software and Operating Systems.


Closed Thread
 
LinkBack Thread Tools Display Modes
Old 01-08-2007, 05:49 PM   #1 (permalink)
Wire muncher!
 
infra_red_dude's Avatar
 
Join Date: Nov 2003
Posts: 6,173
Default install thunar: a light weight file manager on gnome


i wanted to try out this file manager and now i've almost completely switched over to thunar (except some cases where nautilus is inevitable)

download and install thunar & related plugins plus gtweakui (for modifying nautilus)
Code:
sudo apt-get install thunar thunar-archive-plugin libthunar-vfs-1-2 thunar-media-tags-plugin thunar-volman-plugin gtweakui
now download this script (for gnome users, to change from nautilus to thunar as the default file manager): http://www.psychocats.net/ubuntu/defaultthunar.sh

make this script executable by keying this command in the terminal in the folder where u saved the script and then run it:
Code:
chmod +x defaultthunar.sh
./defaultthunar.sh
this will set thunar as the default file manager, tho nautilus still exists. if you haf any shortcuts to folders then in the properties dialog replace "nautilus" wid "thunar".

now lets strip down nautilus to its bare minimum (for use in extreme cases where thunar doesn't work). run gtweakui-nautilus from system>preferences. uncheck "always use browser mode", this will strip nautilus interface to the minimum. do not modify anything else. nautilus is still used to draw desktop. but as of now there is no fix for this. i'm searching.

also to solve issues wid removable storage, launch gconf-editor. navigate to /desktop/gnome/applications/component_viewer and change "nautilus %s" to "thunar %s" in the exec key.

************************************************

to revert back to nautilus, jus undo what you've done till now (as indicated above) and run this script instead of the above indicated: http://www.psychocats.net/ubuntu/restorenautilus.sh

************************************************

screenshots

this is the heavy nautilus file manager before stripping down:


this is the new thunar file manager:


and this is the stripped down nautilus which works in conjunction wid thunar:


*******************************************

wid jus the default settings its not possible to browse spl locations like samba shares. follow this guide (this applies to XFCE users as well), for enabling this feature in thunar:
http://ubuntuforums.org/showthread.php?t=304131

edit: jus found one more guide to make thunar the default file manager. going thru this now.
http://assente.altervista.org/it/use...e_file_manager
__________________
"The true measure of a man is how he treats someone who can do him absolutely no good."

http://phoenix-ani.blogspot.com

Last edited by infra_red_dude; 01-08-2007 at 10:21 PM.
infra_red_dude is offline  
Advertisements. Register and be a member of the community to get rid of them.
Advertisement

Old 01-08-2007, 06:06 PM   #2 (permalink)
left this forum longback
 
praka123's Avatar
 
Join Date: Sep 2005
Location: -
Posts: 7,536
Default Re: install thunar: a light weight file manager on gnome

thunar is default fm fur xfce.tried thunar already.but still feels nautilus "works" for me!(as of 2.18 ).
__________________
left this forum long back.Admin Can Delete this Account and posts Permanantly.Thank You
Get GNU/Linux - http://getgnulinux.org
praka123 is offline  
Old 01-08-2007, 10:27 PM   #3 (permalink)
Wire muncher!
 
infra_red_dude's Avatar
 
Join Date: Nov 2003
Posts: 6,173
Default Re: install thunar: a light weight file manager on gnome

yeah, but thunar has been really snappy for me i've almost migrated to it. it has jus the features that i need nothing more nothing less!

followed the follwing to replace nautilus:
Code:
sudo mv /usr/bin/nautilus /usr/bin/nautilus.real
sudo gedit /usr/bin/nautilus
the contents of /usr/bin/nautilus:
Code:
#!/bin/bash


#zenity --info --text="${1}/${@}" #DEBUG
if [ -n "${1}" ]; then
    if [ "${1:0:1}" == "/" ]; then
        thunar "${1}"
    elif [ "${1}" == "--no-desktop" ]; then
        if [ -n "${2}" ]; then
            if [ "${2:0:7}" == "file://" ] || [ "${2:0:1}" == "/" ]; then
                thunar "${2}"
            else
                nautilus.real "${2}"
            fi
        else
            thunar
        fi
    else
        nautilus.real "${@}"
    fi
else
    thunar
fi
now, completely removed nautilus by going to system>preferences>gtweakui-nautilus and unchecking all options. (even the use nautilus to draw desktop option)

now installed xf4desktop package and related (only 3 small packages). after that added "xfdesktop" to system>preferences>session by creating a new entry wid name and command as "xfdesktop". created one more entry there for "xfce4-panel" wid name and command.

now the xfdesktop is used for drawing desktop and the xfce panel gives me the dock style panel. no more nautilus! my system is much more snappier now! bye bye nautilus!
__________________
"The true measure of a man is how he treats someone who can do him absolutely no good."

http://phoenix-ani.blogspot.com

Last edited by infra_red_dude; 01-08-2007 at 10:27 PM. Reason: Automerged Doublepost
infra_red_dude is offline  
Old 02-08-2007, 03:43 PM   #4 (permalink)
Alpha Geek
 
saurabh.sauron's Avatar
 
Join Date: Jan 2006
Location: Middle Earth
Posts: 503
Default Re: install thunar: a light weight file manager on gnome

thunar is real fast. it's not as well featured as nautilus, but gets all my work done. i use it when i use XFCE.
saurabh.sauron is offline  
Old 02-08-2007, 04:19 PM   #5 (permalink)
You gave been GXified
 
gxsaurav's Avatar
 
Join Date: Jan 2007
Location: New Delhi
Posts: 5,636
Default Re: install thunar: a light weight file manager on gnome

Infra, you need to configure nautilas then. How is it slow? Whats your system config.
__________________
about.me/gxsaurav
gxsaurav is offline  
Old 02-08-2007, 11:43 PM   #6 (permalink)
Wire muncher!
 
infra_red_dude's Avatar
 
Join Date: Nov 2003
Posts: 6,173
Default Re: install thunar: a light weight file manager on gnome

its not abt being slow. but i feel its bloated... thunar serves my purpose and is lighter than nautilus... thats the only reason..

btw, i haf a compaq lappy wid p4 2.8ghz, 512mb ram..etc...etc..
__________________
"The true measure of a man is how he treats someone who can do him absolutely no good."

http://phoenix-ani.blogspot.com
infra_red_dude is offline  
Old 04-08-2007, 12:42 PM   #7 (permalink)
Wire muncher!
 
infra_red_dude's Avatar
 
Join Date: Nov 2003
Posts: 6,173
Default Re: install thunar: a light weight file manager on gnome

guys who are using xfce plz suggest some solutions to this. in the xfdesktop config, i've enabled show removable drives. that is coz all the other parititons (ntfs, fat32) are shown under removable drives. but it also shows a floppy drive icon. i wanna remove that. i've tried disabling the floppy drive mount in fstab but no matter what, the icon is shown on the desktop. if i uncheck show removable devices then even the usb flash drives and the phone memory card disappears.
__________________
"The true measure of a man is how he treats someone who can do him absolutely no good."

http://phoenix-ani.blogspot.com
infra_red_dude is offline  
Old 04-08-2007, 12:57 PM   #8 (permalink)
left this forum longback
 
praka123's Avatar
 
Join Date: Sep 2005
Location: -
Posts: 7,536
Default Re: install thunar: a light weight file manager on gnome

may be u can look on some conffiles inside ~/.xfce*
__________________
left this forum long back.Admin Can Delete this Account and posts Permanantly.Thank You
Get GNU/Linux - http://getgnulinux.org
praka123 is offline  
Old 04-08-2007, 03:01 PM   #9 (permalink)
Wire muncher!
 
infra_red_dude's Avatar
 
Join Date: Nov 2003
Posts: 6,173
Default Re: install thunar: a light weight file manager on gnome

thats the problem! there is no config file for the desktop icons. i looked everywhere....!!!
__________________
"The true measure of a man is how he treats someone who can do him absolutely no good."

http://phoenix-ani.blogspot.com
infra_red_dude is offline  
Closed Thread

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Help Me I can't able to install any of the download manager jayanbhm Internet & WWW 8 16-07-2007 11:45 PM
Xplore- A new file manager for S60 and S60 third edition krazyfrog Buying Advice 2 03-02-2007 03:58 PM
Gain Weight - How far Health powders take?? prashantisonline QnA (read only) 19 13-02-2005 11:04 PM

 
Latest Threads
- by Sujeet
- by soumya
- by clmlbx
- by Charan

Advertisement




All times are GMT +5.5. The time now is 12:52 PM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.

Search Engine Optimization by vBSEO 3.3.2