Partition not showing as device in NautilusHow to add bookmark to Nautilus 3.6?Ubuntu confuses my...
Being asked to review a paper in conference one has submitted to
Draw bounding region by list of points
If nine coins are tossed, what is the probability that the number of heads is even?
PTIJ: What’s wrong with eating meat and couscous?
GDAL GetGeoTransform Documentation -- Is there an oversight, or what am I misunderstanding?
Why is it "take a leak?"
Plagiarism of code by other PhD student
1970s scifi/horror novel where protagonist is used by a crablike creature to feed its larvae, goes mad, and is defeated by retraumatising him
Can we carry rice to Japan?
How to merge row in the first column in LaTeX
Rationale to prefer local variables over instance variables?
Are there other characters in the Star Wars universe who had damaged bodies and needed to wear an outfit like Darth Vader?
How to disable or uninstall iTunes under High Sierra without disabling SIP
How can neutral atoms have exactly zero electric field when there is a difference in the positions of the charges?
Called into a meeting and told we are being made redundant (laid off) and "not to share outside". Can I tell my partner?
Would the melodic leap of the opening phrase of Mozart's K545 be considered dissonant?
How do we objectively assess if a dialogue sounds unnatural or cringy?
When was drinking water recognized as crucial in marathon running?
Can a Trickery Domain cleric cast a spell through the Invoke Duplicity clone while inside a Forcecage?
School performs periodic password audits. Is my password compromised?
The need of reserving one's ability in job interviews
Why won't the strings command stop?
Lock enemy's y-axis when using Vector3.MoveTowards to follow the player
Sometimes a banana is just a banana
Partition not showing as device in Nautilus
How to add bookmark to Nautilus 3.6?Ubuntu confuses my partitionsPrevent nautilus showing partition mounted in bash scriptIn Nautilus I have two identical entries in my devices list, why?“system reserved” windows partition showed on ubuntu 12.04. Not installed using wubiDisable automount in Nautilus to avoid mount-devices being listed twice in NautilusAutomount NTFS partition like Nautilus doUbuntu 16.04 no devices shown in nautilusHow to mount a partition from live usbWhy aren't my mounted internal partitions showing in the SidebarUsing Plex and Snap apps. Mounting issues
I have mounted a partition as ext4 and define in /etc/fstab
.
UUID=4xxxxxx-xxxxx /wdd ext4 defaults 0 2
I can see the mount point as /wdd
running df -k
.
But it is not showing up as device under Nautilus. I wish it is found there. I search and found a post saying that I need to mount under /media
. I do not want to mount under /media
. Is there a way there?
partitioning nautilus
add a comment |
I have mounted a partition as ext4 and define in /etc/fstab
.
UUID=4xxxxxx-xxxxx /wdd ext4 defaults 0 2
I can see the mount point as /wdd
running df -k
.
But it is not showing up as device under Nautilus. I wish it is found there. I search and found a post saying that I need to mount under /media
. I do not want to mount under /media
. Is there a way there?
partitioning nautilus
Yes. Use Nemo.
– muru
Sep 25 '14 at 4:45
add a comment |
I have mounted a partition as ext4 and define in /etc/fstab
.
UUID=4xxxxxx-xxxxx /wdd ext4 defaults 0 2
I can see the mount point as /wdd
running df -k
.
But it is not showing up as device under Nautilus. I wish it is found there. I search and found a post saying that I need to mount under /media
. I do not want to mount under /media
. Is there a way there?
partitioning nautilus
I have mounted a partition as ext4 and define in /etc/fstab
.
UUID=4xxxxxx-xxxxx /wdd ext4 defaults 0 2
I can see the mount point as /wdd
running df -k
.
But it is not showing up as device under Nautilus. I wish it is found there. I search and found a post saying that I need to mount under /media
. I do not want to mount under /media
. Is there a way there?
partitioning nautilus
partitioning nautilus
edited Sep 25 '14 at 4:38
muru
1
1
asked Sep 25 '14 at 4:25
HaansHaans
4115
4115
Yes. Use Nemo.
– muru
Sep 25 '14 at 4:45
add a comment |
Yes. Use Nemo.
– muru
Sep 25 '14 at 4:45
Yes. Use Nemo.
– muru
Sep 25 '14 at 4:45
Yes. Use Nemo.
– muru
Sep 25 '14 at 4:45
add a comment |
3 Answers
3
active
oldest
votes
You could add it as a bookmark. Just add the line file:///wdd
to file ~/.config/gtk-3.0/bookmarks
. For more details see How to add bookmark to Nautilus 3.6?
It worked!. Thanks for the workaround. Can know the rational behind why it is not showing under devices?
– Haans
Sep 25 '14 at 6:02
I guess because you added it to fstab so it is not a hot-pluggable device any more. If you want to experiment remove it from there and reboot. You should see it in devices but it will not be mounted automatically. Click on it to mount it then create a symlink /wdd pointing to /media/<user>/4xxxxx. It is not quite the same (no automount) but you will see it in Devices.
– sмurf
Sep 25 '14 at 7:07
add a comment |
Another approach is to mount it under /media
and make /wdd
a link to the mount point. Make your fstab
like this:
UUID=4xxxxxx-xxxxx /media/wdd ext4 defaults 0 2
Then, remove the existing /wdd
directory and recreate it as a link:
sudo rmdir /wdd; sudo ln -s /media/wdd/ /wdd
You can also try the reverse approach but I;m not sure if nautilus will pick it up:
sudo ln -s /wdd /media/wdd
1
That worked like a charm! I am seeing the drive appearing under devices as soon as I mount it as /media/wdd.
– Haans
Sep 25 '14 at 12:47
@haans glad to hear it! If one of these answers solves your issue please take a minute and click the check mark under the vote count to the left, this will signify to everyone that your issue's been resolved.
– terdon♦
Sep 25 '14 at 12:51
Tried the reverse approach. Didn't work. I just used what Smurf suggested.
– jcora
Oct 19 '14 at 0:34
add a comment |
I realize this question is a bit old, but it's coming up as a top google search. By default Nautilus/Caja automatically show devices mounted in/media
. This policy may be overriden by use of the options x-gvfs-show
. So your fstab entry would look like:
UUID=4xxxxxx-xxxxx /wdd ext4 defaults,x-gvfs-show 0 2
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%2f528195%2fpartition-not-showing-as-device-in-nautilus%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
You could add it as a bookmark. Just add the line file:///wdd
to file ~/.config/gtk-3.0/bookmarks
. For more details see How to add bookmark to Nautilus 3.6?
It worked!. Thanks for the workaround. Can know the rational behind why it is not showing under devices?
– Haans
Sep 25 '14 at 6:02
I guess because you added it to fstab so it is not a hot-pluggable device any more. If you want to experiment remove it from there and reboot. You should see it in devices but it will not be mounted automatically. Click on it to mount it then create a symlink /wdd pointing to /media/<user>/4xxxxx. It is not quite the same (no automount) but you will see it in Devices.
– sмurf
Sep 25 '14 at 7:07
add a comment |
You could add it as a bookmark. Just add the line file:///wdd
to file ~/.config/gtk-3.0/bookmarks
. For more details see How to add bookmark to Nautilus 3.6?
It worked!. Thanks for the workaround. Can know the rational behind why it is not showing under devices?
– Haans
Sep 25 '14 at 6:02
I guess because you added it to fstab so it is not a hot-pluggable device any more. If you want to experiment remove it from there and reboot. You should see it in devices but it will not be mounted automatically. Click on it to mount it then create a symlink /wdd pointing to /media/<user>/4xxxxx. It is not quite the same (no automount) but you will see it in Devices.
– sмurf
Sep 25 '14 at 7:07
add a comment |
You could add it as a bookmark. Just add the line file:///wdd
to file ~/.config/gtk-3.0/bookmarks
. For more details see How to add bookmark to Nautilus 3.6?
You could add it as a bookmark. Just add the line file:///wdd
to file ~/.config/gtk-3.0/bookmarks
. For more details see How to add bookmark to Nautilus 3.6?
edited Apr 13 '17 at 12:24
Community♦
1
1
answered Sep 25 '14 at 5:14
sмurfsмurf
4,09911628
4,09911628
It worked!. Thanks for the workaround. Can know the rational behind why it is not showing under devices?
– Haans
Sep 25 '14 at 6:02
I guess because you added it to fstab so it is not a hot-pluggable device any more. If you want to experiment remove it from there and reboot. You should see it in devices but it will not be mounted automatically. Click on it to mount it then create a symlink /wdd pointing to /media/<user>/4xxxxx. It is not quite the same (no automount) but you will see it in Devices.
– sмurf
Sep 25 '14 at 7:07
add a comment |
It worked!. Thanks for the workaround. Can know the rational behind why it is not showing under devices?
– Haans
Sep 25 '14 at 6:02
I guess because you added it to fstab so it is not a hot-pluggable device any more. If you want to experiment remove it from there and reboot. You should see it in devices but it will not be mounted automatically. Click on it to mount it then create a symlink /wdd pointing to /media/<user>/4xxxxx. It is not quite the same (no automount) but you will see it in Devices.
– sмurf
Sep 25 '14 at 7:07
It worked!. Thanks for the workaround. Can know the rational behind why it is not showing under devices?
– Haans
Sep 25 '14 at 6:02
It worked!. Thanks for the workaround. Can know the rational behind why it is not showing under devices?
– Haans
Sep 25 '14 at 6:02
I guess because you added it to fstab so it is not a hot-pluggable device any more. If you want to experiment remove it from there and reboot. You should see it in devices but it will not be mounted automatically. Click on it to mount it then create a symlink /wdd pointing to /media/<user>/4xxxxx. It is not quite the same (no automount) but you will see it in Devices.
– sмurf
Sep 25 '14 at 7:07
I guess because you added it to fstab so it is not a hot-pluggable device any more. If you want to experiment remove it from there and reboot. You should see it in devices but it will not be mounted automatically. Click on it to mount it then create a symlink /wdd pointing to /media/<user>/4xxxxx. It is not quite the same (no automount) but you will see it in Devices.
– sмurf
Sep 25 '14 at 7:07
add a comment |
Another approach is to mount it under /media
and make /wdd
a link to the mount point. Make your fstab
like this:
UUID=4xxxxxx-xxxxx /media/wdd ext4 defaults 0 2
Then, remove the existing /wdd
directory and recreate it as a link:
sudo rmdir /wdd; sudo ln -s /media/wdd/ /wdd
You can also try the reverse approach but I;m not sure if nautilus will pick it up:
sudo ln -s /wdd /media/wdd
1
That worked like a charm! I am seeing the drive appearing under devices as soon as I mount it as /media/wdd.
– Haans
Sep 25 '14 at 12:47
@haans glad to hear it! If one of these answers solves your issue please take a minute and click the check mark under the vote count to the left, this will signify to everyone that your issue's been resolved.
– terdon♦
Sep 25 '14 at 12:51
Tried the reverse approach. Didn't work. I just used what Smurf suggested.
– jcora
Oct 19 '14 at 0:34
add a comment |
Another approach is to mount it under /media
and make /wdd
a link to the mount point. Make your fstab
like this:
UUID=4xxxxxx-xxxxx /media/wdd ext4 defaults 0 2
Then, remove the existing /wdd
directory and recreate it as a link:
sudo rmdir /wdd; sudo ln -s /media/wdd/ /wdd
You can also try the reverse approach but I;m not sure if nautilus will pick it up:
sudo ln -s /wdd /media/wdd
1
That worked like a charm! I am seeing the drive appearing under devices as soon as I mount it as /media/wdd.
– Haans
Sep 25 '14 at 12:47
@haans glad to hear it! If one of these answers solves your issue please take a minute and click the check mark under the vote count to the left, this will signify to everyone that your issue's been resolved.
– terdon♦
Sep 25 '14 at 12:51
Tried the reverse approach. Didn't work. I just used what Smurf suggested.
– jcora
Oct 19 '14 at 0:34
add a comment |
Another approach is to mount it under /media
and make /wdd
a link to the mount point. Make your fstab
like this:
UUID=4xxxxxx-xxxxx /media/wdd ext4 defaults 0 2
Then, remove the existing /wdd
directory and recreate it as a link:
sudo rmdir /wdd; sudo ln -s /media/wdd/ /wdd
You can also try the reverse approach but I;m not sure if nautilus will pick it up:
sudo ln -s /wdd /media/wdd
Another approach is to mount it under /media
and make /wdd
a link to the mount point. Make your fstab
like this:
UUID=4xxxxxx-xxxxx /media/wdd ext4 defaults 0 2
Then, remove the existing /wdd
directory and recreate it as a link:
sudo rmdir /wdd; sudo ln -s /media/wdd/ /wdd
You can also try the reverse approach but I;m not sure if nautilus will pick it up:
sudo ln -s /wdd /media/wdd
answered Sep 25 '14 at 12:23
terdon♦terdon
66.6k12139221
66.6k12139221
1
That worked like a charm! I am seeing the drive appearing under devices as soon as I mount it as /media/wdd.
– Haans
Sep 25 '14 at 12:47
@haans glad to hear it! If one of these answers solves your issue please take a minute and click the check mark under the vote count to the left, this will signify to everyone that your issue's been resolved.
– terdon♦
Sep 25 '14 at 12:51
Tried the reverse approach. Didn't work. I just used what Smurf suggested.
– jcora
Oct 19 '14 at 0:34
add a comment |
1
That worked like a charm! I am seeing the drive appearing under devices as soon as I mount it as /media/wdd.
– Haans
Sep 25 '14 at 12:47
@haans glad to hear it! If one of these answers solves your issue please take a minute and click the check mark under the vote count to the left, this will signify to everyone that your issue's been resolved.
– terdon♦
Sep 25 '14 at 12:51
Tried the reverse approach. Didn't work. I just used what Smurf suggested.
– jcora
Oct 19 '14 at 0:34
1
1
That worked like a charm! I am seeing the drive appearing under devices as soon as I mount it as /media/wdd.
– Haans
Sep 25 '14 at 12:47
That worked like a charm! I am seeing the drive appearing under devices as soon as I mount it as /media/wdd.
– Haans
Sep 25 '14 at 12:47
@haans glad to hear it! If one of these answers solves your issue please take a minute and click the check mark under the vote count to the left, this will signify to everyone that your issue's been resolved.
– terdon♦
Sep 25 '14 at 12:51
@haans glad to hear it! If one of these answers solves your issue please take a minute and click the check mark under the vote count to the left, this will signify to everyone that your issue's been resolved.
– terdon♦
Sep 25 '14 at 12:51
Tried the reverse approach. Didn't work. I just used what Smurf suggested.
– jcora
Oct 19 '14 at 0:34
Tried the reverse approach. Didn't work. I just used what Smurf suggested.
– jcora
Oct 19 '14 at 0:34
add a comment |
I realize this question is a bit old, but it's coming up as a top google search. By default Nautilus/Caja automatically show devices mounted in/media
. This policy may be overriden by use of the options x-gvfs-show
. So your fstab entry would look like:
UUID=4xxxxxx-xxxxx /wdd ext4 defaults,x-gvfs-show 0 2
New contributor
add a comment |
I realize this question is a bit old, but it's coming up as a top google search. By default Nautilus/Caja automatically show devices mounted in/media
. This policy may be overriden by use of the options x-gvfs-show
. So your fstab entry would look like:
UUID=4xxxxxx-xxxxx /wdd ext4 defaults,x-gvfs-show 0 2
New contributor
add a comment |
I realize this question is a bit old, but it's coming up as a top google search. By default Nautilus/Caja automatically show devices mounted in/media
. This policy may be overriden by use of the options x-gvfs-show
. So your fstab entry would look like:
UUID=4xxxxxx-xxxxx /wdd ext4 defaults,x-gvfs-show 0 2
New contributor
I realize this question is a bit old, but it's coming up as a top google search. By default Nautilus/Caja automatically show devices mounted in/media
. This policy may be overriden by use of the options x-gvfs-show
. So your fstab entry would look like:
UUID=4xxxxxx-xxxxx /wdd ext4 defaults,x-gvfs-show 0 2
New contributor
New contributor
answered 18 mins ago
jsgarmonjsgarmon
1
1
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%2f528195%2fpartition-not-showing-as-device-in-nautilus%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
Yes. Use Nemo.
– muru
Sep 25 '14 at 4:45