How do I make krusader the default file manager?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
Is it possible to set krusader as the default file manager in ubuntu 13.10?
I tried to defined it in system settings > details > default applications
but there is nothing about file manager there.
default-programs krusader
add a comment |
Is it possible to set krusader as the default file manager in ubuntu 13.10?
I tried to defined it in system settings > details > default applications
but there is nothing about file manager there.
default-programs krusader
add a comment |
Is it possible to set krusader as the default file manager in ubuntu 13.10?
I tried to defined it in system settings > details > default applications
but there is nothing about file manager there.
default-programs krusader
Is it possible to set krusader as the default file manager in ubuntu 13.10?
I tried to defined it in system settings > details > default applications
but there is nothing about file manager there.
default-programs krusader
default-programs krusader
edited Oct 31 '13 at 12:50
Bruno Pereira
60.7k26181209
60.7k26181209
asked Oct 31 '13 at 12:44
OSdaveOSdave
1891316
1891316
add a comment |
add a comment |
4 Answers
4
active
oldest
votes
open your terminal with CTRL+ALT+T and paste this line
sudo mv /usr/bin/nautilus /usr/bin/natilus.back && sudo ln -s /usr/bin/krusader /usr/bin/nautilus
I've done that and it works, but could it provoke the desktop wallpaper to disappear? since then my desktop is black...
– OSdave
Nov 4 '13 at 7:38
The wallpaper you would like to set in pictures or home dir of your user. And problem occurs not due to this
– rɑːdʒɑ
Nov 4 '13 at 8:38
add a comment |
1) Make a folder in your home directory called bin
mkdir ~/bin
2) Make a script called Nautilus that executes Dolphin and put it in this folder
gedit ~/bin/nautilus
3) Then copy this code into it and save
#!/bin/bash
exec krusader $@
exit 0
This will launch krusader
every time nautilus
was to be launched.
I went with the other answer (because I'm lazy and it was only a one line solution), but now my desktop is black, no more wallpaper. Do you think it's related? Would your solution avoid that issue? How could I undo it in order to do yours?
– OSdave
Nov 4 '13 at 8:13
2
Just wanted to add a reminder to Bruno's excellent script to make sure you chmod it to be executable. I'm sure it's second nature for most, but it had me scratching my head for a minute or two.
– scott_trinh
Jan 9 '14 at 12:20
add a comment |
Ubuntu 18.04
If you want to set Nemo as the default file manager, run this command in Terminal:
xdg-mime default nemo.desktop inode/directory application/x-gnome-saved-search
To revert this enter
xdg-mime default nautilus.desktop inode/directory application/x-gnome-saved-search
Test it with
xdg-open $HOME
add a comment |
Another place where default file manager is configured (I use Debian 9.8):
/usr/share/dbus-1/services/org.freedesktop.FileManager1.service
This file is used, for example, Eclipse IDE for run "System Explorer" through a call to dbus-send
. The original file content looks as follows:
[D-BUS Service]
Name=org.freedesktop.FileManager1
Exec=/usr/bin/nautilus --gapplication-service
But you must write your own service to replace nautilus to use this config...
New contributor
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f368994%2fhow-do-i-make-krusader-the-default-file-manager%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
open your terminal with CTRL+ALT+T and paste this line
sudo mv /usr/bin/nautilus /usr/bin/natilus.back && sudo ln -s /usr/bin/krusader /usr/bin/nautilus
I've done that and it works, but could it provoke the desktop wallpaper to disappear? since then my desktop is black...
– OSdave
Nov 4 '13 at 7:38
The wallpaper you would like to set in pictures or home dir of your user. And problem occurs not due to this
– rɑːdʒɑ
Nov 4 '13 at 8:38
add a comment |
open your terminal with CTRL+ALT+T and paste this line
sudo mv /usr/bin/nautilus /usr/bin/natilus.back && sudo ln -s /usr/bin/krusader /usr/bin/nautilus
I've done that and it works, but could it provoke the desktop wallpaper to disappear? since then my desktop is black...
– OSdave
Nov 4 '13 at 7:38
The wallpaper you would like to set in pictures or home dir of your user. And problem occurs not due to this
– rɑːdʒɑ
Nov 4 '13 at 8:38
add a comment |
open your terminal with CTRL+ALT+T and paste this line
sudo mv /usr/bin/nautilus /usr/bin/natilus.back && sudo ln -s /usr/bin/krusader /usr/bin/nautilus
open your terminal with CTRL+ALT+T and paste this line
sudo mv /usr/bin/nautilus /usr/bin/natilus.back && sudo ln -s /usr/bin/krusader /usr/bin/nautilus
answered Oct 31 '13 at 12:52
rɑːdʒɑrɑːdʒɑ
59.2k85218302
59.2k85218302
I've done that and it works, but could it provoke the desktop wallpaper to disappear? since then my desktop is black...
– OSdave
Nov 4 '13 at 7:38
The wallpaper you would like to set in pictures or home dir of your user. And problem occurs not due to this
– rɑːdʒɑ
Nov 4 '13 at 8:38
add a comment |
I've done that and it works, but could it provoke the desktop wallpaper to disappear? since then my desktop is black...
– OSdave
Nov 4 '13 at 7:38
The wallpaper you would like to set in pictures or home dir of your user. And problem occurs not due to this
– rɑːdʒɑ
Nov 4 '13 at 8:38
I've done that and it works, but could it provoke the desktop wallpaper to disappear? since then my desktop is black...
– OSdave
Nov 4 '13 at 7:38
I've done that and it works, but could it provoke the desktop wallpaper to disappear? since then my desktop is black...
– OSdave
Nov 4 '13 at 7:38
The wallpaper you would like to set in pictures or home dir of your user. And problem occurs not due to this
– rɑːdʒɑ
Nov 4 '13 at 8:38
The wallpaper you would like to set in pictures or home dir of your user. And problem occurs not due to this
– rɑːdʒɑ
Nov 4 '13 at 8:38
add a comment |
1) Make a folder in your home directory called bin
mkdir ~/bin
2) Make a script called Nautilus that executes Dolphin and put it in this folder
gedit ~/bin/nautilus
3) Then copy this code into it and save
#!/bin/bash
exec krusader $@
exit 0
This will launch krusader
every time nautilus
was to be launched.
I went with the other answer (because I'm lazy and it was only a one line solution), but now my desktop is black, no more wallpaper. Do you think it's related? Would your solution avoid that issue? How could I undo it in order to do yours?
– OSdave
Nov 4 '13 at 8:13
2
Just wanted to add a reminder to Bruno's excellent script to make sure you chmod it to be executable. I'm sure it's second nature for most, but it had me scratching my head for a minute or two.
– scott_trinh
Jan 9 '14 at 12:20
add a comment |
1) Make a folder in your home directory called bin
mkdir ~/bin
2) Make a script called Nautilus that executes Dolphin and put it in this folder
gedit ~/bin/nautilus
3) Then copy this code into it and save
#!/bin/bash
exec krusader $@
exit 0
This will launch krusader
every time nautilus
was to be launched.
I went with the other answer (because I'm lazy and it was only a one line solution), but now my desktop is black, no more wallpaper. Do you think it's related? Would your solution avoid that issue? How could I undo it in order to do yours?
– OSdave
Nov 4 '13 at 8:13
2
Just wanted to add a reminder to Bruno's excellent script to make sure you chmod it to be executable. I'm sure it's second nature for most, but it had me scratching my head for a minute or two.
– scott_trinh
Jan 9 '14 at 12:20
add a comment |
1) Make a folder in your home directory called bin
mkdir ~/bin
2) Make a script called Nautilus that executes Dolphin and put it in this folder
gedit ~/bin/nautilus
3) Then copy this code into it and save
#!/bin/bash
exec krusader $@
exit 0
This will launch krusader
every time nautilus
was to be launched.
1) Make a folder in your home directory called bin
mkdir ~/bin
2) Make a script called Nautilus that executes Dolphin and put it in this folder
gedit ~/bin/nautilus
3) Then copy this code into it and save
#!/bin/bash
exec krusader $@
exit 0
This will launch krusader
every time nautilus
was to be launched.
answered Oct 31 '13 at 12:50
Bruno PereiraBruno Pereira
60.7k26181209
60.7k26181209
I went with the other answer (because I'm lazy and it was only a one line solution), but now my desktop is black, no more wallpaper. Do you think it's related? Would your solution avoid that issue? How could I undo it in order to do yours?
– OSdave
Nov 4 '13 at 8:13
2
Just wanted to add a reminder to Bruno's excellent script to make sure you chmod it to be executable. I'm sure it's second nature for most, but it had me scratching my head for a minute or two.
– scott_trinh
Jan 9 '14 at 12:20
add a comment |
I went with the other answer (because I'm lazy and it was only a one line solution), but now my desktop is black, no more wallpaper. Do you think it's related? Would your solution avoid that issue? How could I undo it in order to do yours?
– OSdave
Nov 4 '13 at 8:13
2
Just wanted to add a reminder to Bruno's excellent script to make sure you chmod it to be executable. I'm sure it's second nature for most, but it had me scratching my head for a minute or two.
– scott_trinh
Jan 9 '14 at 12:20
I went with the other answer (because I'm lazy and it was only a one line solution), but now my desktop is black, no more wallpaper. Do you think it's related? Would your solution avoid that issue? How could I undo it in order to do yours?
– OSdave
Nov 4 '13 at 8:13
I went with the other answer (because I'm lazy and it was only a one line solution), but now my desktop is black, no more wallpaper. Do you think it's related? Would your solution avoid that issue? How could I undo it in order to do yours?
– OSdave
Nov 4 '13 at 8:13
2
2
Just wanted to add a reminder to Bruno's excellent script to make sure you chmod it to be executable. I'm sure it's second nature for most, but it had me scratching my head for a minute or two.
– scott_trinh
Jan 9 '14 at 12:20
Just wanted to add a reminder to Bruno's excellent script to make sure you chmod it to be executable. I'm sure it's second nature for most, but it had me scratching my head for a minute or two.
– scott_trinh
Jan 9 '14 at 12:20
add a comment |
Ubuntu 18.04
If you want to set Nemo as the default file manager, run this command in Terminal:
xdg-mime default nemo.desktop inode/directory application/x-gnome-saved-search
To revert this enter
xdg-mime default nautilus.desktop inode/directory application/x-gnome-saved-search
Test it with
xdg-open $HOME
add a comment |
Ubuntu 18.04
If you want to set Nemo as the default file manager, run this command in Terminal:
xdg-mime default nemo.desktop inode/directory application/x-gnome-saved-search
To revert this enter
xdg-mime default nautilus.desktop inode/directory application/x-gnome-saved-search
Test it with
xdg-open $HOME
add a comment |
Ubuntu 18.04
If you want to set Nemo as the default file manager, run this command in Terminal:
xdg-mime default nemo.desktop inode/directory application/x-gnome-saved-search
To revert this enter
xdg-mime default nautilus.desktop inode/directory application/x-gnome-saved-search
Test it with
xdg-open $HOME
Ubuntu 18.04
If you want to set Nemo as the default file manager, run this command in Terminal:
xdg-mime default nemo.desktop inode/directory application/x-gnome-saved-search
To revert this enter
xdg-mime default nautilus.desktop inode/directory application/x-gnome-saved-search
Test it with
xdg-open $HOME
answered Oct 8 '18 at 14:01
abu_buaabu_bua
4,18981630
4,18981630
add a comment |
add a comment |
Another place where default file manager is configured (I use Debian 9.8):
/usr/share/dbus-1/services/org.freedesktop.FileManager1.service
This file is used, for example, Eclipse IDE for run "System Explorer" through a call to dbus-send
. The original file content looks as follows:
[D-BUS Service]
Name=org.freedesktop.FileManager1
Exec=/usr/bin/nautilus --gapplication-service
But you must write your own service to replace nautilus to use this config...
New contributor
add a comment |
Another place where default file manager is configured (I use Debian 9.8):
/usr/share/dbus-1/services/org.freedesktop.FileManager1.service
This file is used, for example, Eclipse IDE for run "System Explorer" through a call to dbus-send
. The original file content looks as follows:
[D-BUS Service]
Name=org.freedesktop.FileManager1
Exec=/usr/bin/nautilus --gapplication-service
But you must write your own service to replace nautilus to use this config...
New contributor
add a comment |
Another place where default file manager is configured (I use Debian 9.8):
/usr/share/dbus-1/services/org.freedesktop.FileManager1.service
This file is used, for example, Eclipse IDE for run "System Explorer" through a call to dbus-send
. The original file content looks as follows:
[D-BUS Service]
Name=org.freedesktop.FileManager1
Exec=/usr/bin/nautilus --gapplication-service
But you must write your own service to replace nautilus to use this config...
New contributor
Another place where default file manager is configured (I use Debian 9.8):
/usr/share/dbus-1/services/org.freedesktop.FileManager1.service
This file is used, for example, Eclipse IDE for run "System Explorer" through a call to dbus-send
. The original file content looks as follows:
[D-BUS Service]
Name=org.freedesktop.FileManager1
Exec=/usr/bin/nautilus --gapplication-service
But you must write your own service to replace nautilus to use this config...
New contributor
edited yesterday
zx485
1,47131315
1,47131315
New contributor
answered yesterday
Лекс ФронтовЛекс Фронтов
112
112
New contributor
New contributor
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f368994%2fhow-do-i-make-krusader-the-default-file-manager%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown