Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum. |
| Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
01-27-2009, 12:55 AM
|
#1
|
|
Member
Registered: Sep 2006
Location: Hendrik Ido Ambacht, Zuid-Holland, Nederland, Europa
Distribution: Ubuntu 12.04; CentOS 6.5
Posts: 137
Rep:
|
Change of default File Manager?
I found the solution, for using Thunar instead of Nautilus
READ POST 5
----------------------------------------------------------
Is there a possibility to make a change of default File Manager?
Locally i'm using Ubuntu 8.10 with as default fm Nautilus, but i rather use Dolphin instead.
If this could be done by system change, could it also be done like in (Open)Suse and Mandrake?
I thought it could also be done in Solaris, but that's unix, not linux ^^
Thanks for your comments on this.
Last edited by LAN-Dominator.nl; 06-07-2009 at 03:47 PM.
Reason: Solution found!
|
|
|
|
01-27-2009, 06:55 PM
|
#2
|
|
Senior Member
Registered: Mar 2004
Location: far enough
Distribution: OS X 10.6.7
Posts: 1,690
Rep:
|
The file manager is an integral part of the desktop you're using. I don't think that what you ask is possible. If you prefer Dolphin, you should probably use KDE if you're using a desktop instead of a window manager only. Solaris also has gnome which is now the default desktop if I recall, and it behaves the same as in Linux.
|
|
|
|
05-01-2009, 04:07 AM
|
#3
|
|
Member
Registered: Sep 2006
Location: Hendrik Ido Ambacht, Zuid-Holland, Nederland, Europa
Distribution: Ubuntu 12.04; CentOS 6.5
Posts: 137
Original Poster
Rep:
|
Thnx i'll stay with nautilus as it is 
|
|
|
|
05-01-2009, 12:15 PM
|
#4
|
|
Guru
Registered: May 2003
Location: London, UK
Distribution: Ubuntu 10.04, mostly
Posts: 6,002
|
If you use KDE as your desktop (and I'm referring to KDE 3.x.y, not 4 - I'm not using KDE4 yet) then it is very easy to set up different file managers to be the default:
Launch kcontrol from a terminal (as not all distros offer it from the menus)
click KDE Components -> file Associations
Click on inode
Click on Directory
Now choose whichever application you wish to open Directories with.
I prefer konqueror first in the list, but you can always put dolphin or nautilus or whatever.
If the first application isn't present on your system, it'll try the next in the list.
I am a bit surprised that gnome doesn't also offer this functionality.
|
|
|
|
06-07-2009, 03:43 PM
|
#5
|
|
Member
Registered: Sep 2006
Location: Hendrik Ido Ambacht, Zuid-Holland, Nederland, Europa
Distribution: Ubuntu 12.04; CentOS 6.5
Posts: 137
Original Poster
Rep:
|
[SOLVED] Change of default File Manager in Gnome
I found the perfect way to change the Default File Manager under Ubuntu (gnome)..
From Nautilus to Thunar
1. Backup the official Nautilus file
Code:
sudo mv /usr/bin/nautilus /usr/bin/nautilus.real
2. Now make the new Nautilus file
Code:
sudo gedit /usr/bin/nautilus
3. place this code and save it
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
4. Make sure that you own the file
Code:
sudo chmod 755 /usr/bin/nautilus
Done!
*ps. Thunar doesn't support gnome-vfs filesystem, like smb:// webdav:// ssh:// computer:///, and will be shown in nautilus by default, as the script tells it!
Last edited by LAN-Dominator.nl; 06-09-2009 at 12:34 PM.
Reason: Edit title, because the problem is solved!
|
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 05:40 PM.
|
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|