fstab mount problem
Clash Royale CLAN TAG#URR8PPP
Fresh install Of Mint 17.
I have few partition and 3 OSs Win/Ubuntu-Gnome/ and this newly installed Mint. One of these partition is a storage disk for all documents, photos etc.. and I used to use it from both Linux OSs without any problem and mount it during start by editing fstab
. Last days i decided to try Mint 17.3 and after installation I wanted to edit fstab
via disk manager and
after changing mounting properties to
dev/disk/by-uuid/xxxx(here proper UUID) /mnt/Local ext4 nosuid,nodev,nofail,x-gvfs-show 0 0
it failed with
Error mounting system-managed device /dev/sda3:
Command-line mount "/mnt/Local"' exited with non-zero exit status 32:
mount: wrong fstype, bad option, bad superblock on /dev/sda3`- So I check it with
fsck.ext4 /dev/sda3
: no faults - Then I tried mount with
mount /dev/sda3 /mnt/Local
And it was mounted
successfully :) (and it is mounted as ext4 - as it should be)
I tried all possible options via UUID
, via /dev/sda3
via LABEL and it is not working - the same error... I have to add that the same option in fstab under my Ubuntu Gnome works properly... Any ideas?
mount fstab
add a comment |
Fresh install Of Mint 17.
I have few partition and 3 OSs Win/Ubuntu-Gnome/ and this newly installed Mint. One of these partition is a storage disk for all documents, photos etc.. and I used to use it from both Linux OSs without any problem and mount it during start by editing fstab
. Last days i decided to try Mint 17.3 and after installation I wanted to edit fstab
via disk manager and
after changing mounting properties to
dev/disk/by-uuid/xxxx(here proper UUID) /mnt/Local ext4 nosuid,nodev,nofail,x-gvfs-show 0 0
it failed with
Error mounting system-managed device /dev/sda3:
Command-line mount "/mnt/Local"' exited with non-zero exit status 32:
mount: wrong fstype, bad option, bad superblock on /dev/sda3`- So I check it with
fsck.ext4 /dev/sda3
: no faults - Then I tried mount with
mount /dev/sda3 /mnt/Local
And it was mounted
successfully :) (and it is mounted as ext4 - as it should be)
I tried all possible options via UUID
, via /dev/sda3
via LABEL and it is not working - the same error... I have to add that the same option in fstab under my Ubuntu Gnome works properly... Any ideas?
mount fstab
Did you try mounting with "defaults" instead of "nosuid,nodev,nofail,x-gvfs-show" ?
– Dani_l
Feb 24 '16 at 17:27
yes, i tried, with the same result...
– Korbaczek
Feb 24 '16 at 17:28
when you mount manually, mount | grep sda3 - what's the output? can you try using those exact options in your fstab?
– Dani_l
Feb 24 '16 at 17:30
It looks like something is wrong with x-gvfs-show.. (other options works fine). Don't know why as it used to work always (i used it in many distros) Thanks for all comments guys! i will try to investigate what's wrong with gvfs-show.
– Korbaczek
Feb 24 '16 at 18:47
add a comment |
Fresh install Of Mint 17.
I have few partition and 3 OSs Win/Ubuntu-Gnome/ and this newly installed Mint. One of these partition is a storage disk for all documents, photos etc.. and I used to use it from both Linux OSs without any problem and mount it during start by editing fstab
. Last days i decided to try Mint 17.3 and after installation I wanted to edit fstab
via disk manager and
after changing mounting properties to
dev/disk/by-uuid/xxxx(here proper UUID) /mnt/Local ext4 nosuid,nodev,nofail,x-gvfs-show 0 0
it failed with
Error mounting system-managed device /dev/sda3:
Command-line mount "/mnt/Local"' exited with non-zero exit status 32:
mount: wrong fstype, bad option, bad superblock on /dev/sda3`- So I check it with
fsck.ext4 /dev/sda3
: no faults - Then I tried mount with
mount /dev/sda3 /mnt/Local
And it was mounted
successfully :) (and it is mounted as ext4 - as it should be)
I tried all possible options via UUID
, via /dev/sda3
via LABEL and it is not working - the same error... I have to add that the same option in fstab under my Ubuntu Gnome works properly... Any ideas?
mount fstab
Fresh install Of Mint 17.
I have few partition and 3 OSs Win/Ubuntu-Gnome/ and this newly installed Mint. One of these partition is a storage disk for all documents, photos etc.. and I used to use it from both Linux OSs without any problem and mount it during start by editing fstab
. Last days i decided to try Mint 17.3 and after installation I wanted to edit fstab
via disk manager and
after changing mounting properties to
dev/disk/by-uuid/xxxx(here proper UUID) /mnt/Local ext4 nosuid,nodev,nofail,x-gvfs-show 0 0
it failed with
Error mounting system-managed device /dev/sda3:
Command-line mount "/mnt/Local"' exited with non-zero exit status 32:
mount: wrong fstype, bad option, bad superblock on /dev/sda3`- So I check it with
fsck.ext4 /dev/sda3
: no faults - Then I tried mount with
mount /dev/sda3 /mnt/Local
And it was mounted
successfully :) (and it is mounted as ext4 - as it should be)
I tried all possible options via UUID
, via /dev/sda3
via LABEL and it is not working - the same error... I have to add that the same option in fstab under my Ubuntu Gnome works properly... Any ideas?
mount fstab
mount fstab
edited Feb 24 '16 at 18:27
steeldriver
36.5k35287
36.5k35287
asked Feb 24 '16 at 17:16
KorbaczekKorbaczek
64
64
Did you try mounting with "defaults" instead of "nosuid,nodev,nofail,x-gvfs-show" ?
– Dani_l
Feb 24 '16 at 17:27
yes, i tried, with the same result...
– Korbaczek
Feb 24 '16 at 17:28
when you mount manually, mount | grep sda3 - what's the output? can you try using those exact options in your fstab?
– Dani_l
Feb 24 '16 at 17:30
It looks like something is wrong with x-gvfs-show.. (other options works fine). Don't know why as it used to work always (i used it in many distros) Thanks for all comments guys! i will try to investigate what's wrong with gvfs-show.
– Korbaczek
Feb 24 '16 at 18:47
add a comment |
Did you try mounting with "defaults" instead of "nosuid,nodev,nofail,x-gvfs-show" ?
– Dani_l
Feb 24 '16 at 17:27
yes, i tried, with the same result...
– Korbaczek
Feb 24 '16 at 17:28
when you mount manually, mount | grep sda3 - what's the output? can you try using those exact options in your fstab?
– Dani_l
Feb 24 '16 at 17:30
It looks like something is wrong with x-gvfs-show.. (other options works fine). Don't know why as it used to work always (i used it in many distros) Thanks for all comments guys! i will try to investigate what's wrong with gvfs-show.
– Korbaczek
Feb 24 '16 at 18:47
Did you try mounting with "defaults" instead of "nosuid,nodev,nofail,x-gvfs-show" ?
– Dani_l
Feb 24 '16 at 17:27
Did you try mounting with "defaults" instead of "nosuid,nodev,nofail,x-gvfs-show" ?
– Dani_l
Feb 24 '16 at 17:27
yes, i tried, with the same result...
– Korbaczek
Feb 24 '16 at 17:28
yes, i tried, with the same result...
– Korbaczek
Feb 24 '16 at 17:28
when you mount manually, mount | grep sda3 - what's the output? can you try using those exact options in your fstab?
– Dani_l
Feb 24 '16 at 17:30
when you mount manually, mount | grep sda3 - what's the output? can you try using those exact options in your fstab?
– Dani_l
Feb 24 '16 at 17:30
It looks like something is wrong with x-gvfs-show.. (other options works fine). Don't know why as it used to work always (i used it in many distros) Thanks for all comments guys! i will try to investigate what's wrong with gvfs-show.
– Korbaczek
Feb 24 '16 at 18:47
It looks like something is wrong with x-gvfs-show.. (other options works fine). Don't know why as it used to work always (i used it in many distros) Thanks for all comments guys! i will try to investigate what's wrong with gvfs-show.
– Korbaczek
Feb 24 '16 at 18:47
add a comment |
3 Answers
3
active
oldest
votes
First Method:
using the following command to check filesystem type and UUID and partition associated
# sudo blkid
in /etc/fstab add the entry in following format as
UUID=XXX.XXX.XXX /mnt/local ext4 defaults 0 0
(in-case file system is ext4)
mount the partition using
# mount -a
to check partion is working fine or not using
# df -h
Another method:
use following command to check the partition(current and umounted)
# lsblk
enter the entry in /etc/fstab eg: if block partition is /dev/sda6
/dev/sda6 /mnt/local ext4 defaults 0 0
Any one method will help you...
As i wrote above - it is a problem with x-gvfs-show. Not a matter of fs_spec or fs type (checked with all possible and relevant) or if a partition is working (it is).
– Korbaczek
Feb 24 '16 at 19:07
I will get back on this soon
– naveen dharman
Feb 24 '16 at 19:09
I was going through google and found one link, kindly check with this method by adding comment=x-gvfs-show askubuntu.com/questions/454225/…
– naveen dharman
Feb 24 '16 at 19:13
Yes, found the same... i have to check why it worked on other distros.. (perhaps it was not working and just ignoring this param) Thanks!
– Korbaczek
Feb 24 '16 at 19:16
Looks like it was discussed few times - askubuntu.com/questions/594197/…
– Korbaczek
Feb 24 '16 at 19:18
add a comment |
The problem is with wrong option "x-gvfs-show". "comment=x-gvfs-show" shall be used instead.
https://askubuntu.com/questions/594197/unrecognized-mount-option-x-gvfs-show-or-missing-value
add a comment |
From your question it seems you wrote /dev/disk/by-uuid/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx /mnt/Local ext4 nosuid,nodev,nofail,x-gvfs-show 0 0
in your /etc/fstab
when it should be UUID=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx /mnt/Local ext4 rw,nosuid,nodev,exec,auto,nouser,async,nofail,comment=x-gvfs-show 0 0
.
(defaults
: rw suid dev exec auto nouser async
)
Thanks, but you can address it by few things :) I checked them all and it was not a matter here.
– Korbaczek
Feb 24 '16 at 18:43
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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%2funix.stackexchange.com%2fquestions%2f265535%2ffstab-mount-problem%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
First Method:
using the following command to check filesystem type and UUID and partition associated
# sudo blkid
in /etc/fstab add the entry in following format as
UUID=XXX.XXX.XXX /mnt/local ext4 defaults 0 0
(in-case file system is ext4)
mount the partition using
# mount -a
to check partion is working fine or not using
# df -h
Another method:
use following command to check the partition(current and umounted)
# lsblk
enter the entry in /etc/fstab eg: if block partition is /dev/sda6
/dev/sda6 /mnt/local ext4 defaults 0 0
Any one method will help you...
As i wrote above - it is a problem with x-gvfs-show. Not a matter of fs_spec or fs type (checked with all possible and relevant) or if a partition is working (it is).
– Korbaczek
Feb 24 '16 at 19:07
I will get back on this soon
– naveen dharman
Feb 24 '16 at 19:09
I was going through google and found one link, kindly check with this method by adding comment=x-gvfs-show askubuntu.com/questions/454225/…
– naveen dharman
Feb 24 '16 at 19:13
Yes, found the same... i have to check why it worked on other distros.. (perhaps it was not working and just ignoring this param) Thanks!
– Korbaczek
Feb 24 '16 at 19:16
Looks like it was discussed few times - askubuntu.com/questions/594197/…
– Korbaczek
Feb 24 '16 at 19:18
add a comment |
First Method:
using the following command to check filesystem type and UUID and partition associated
# sudo blkid
in /etc/fstab add the entry in following format as
UUID=XXX.XXX.XXX /mnt/local ext4 defaults 0 0
(in-case file system is ext4)
mount the partition using
# mount -a
to check partion is working fine or not using
# df -h
Another method:
use following command to check the partition(current and umounted)
# lsblk
enter the entry in /etc/fstab eg: if block partition is /dev/sda6
/dev/sda6 /mnt/local ext4 defaults 0 0
Any one method will help you...
As i wrote above - it is a problem with x-gvfs-show. Not a matter of fs_spec or fs type (checked with all possible and relevant) or if a partition is working (it is).
– Korbaczek
Feb 24 '16 at 19:07
I will get back on this soon
– naveen dharman
Feb 24 '16 at 19:09
I was going through google and found one link, kindly check with this method by adding comment=x-gvfs-show askubuntu.com/questions/454225/…
– naveen dharman
Feb 24 '16 at 19:13
Yes, found the same... i have to check why it worked on other distros.. (perhaps it was not working and just ignoring this param) Thanks!
– Korbaczek
Feb 24 '16 at 19:16
Looks like it was discussed few times - askubuntu.com/questions/594197/…
– Korbaczek
Feb 24 '16 at 19:18
add a comment |
First Method:
using the following command to check filesystem type and UUID and partition associated
# sudo blkid
in /etc/fstab add the entry in following format as
UUID=XXX.XXX.XXX /mnt/local ext4 defaults 0 0
(in-case file system is ext4)
mount the partition using
# mount -a
to check partion is working fine or not using
# df -h
Another method:
use following command to check the partition(current and umounted)
# lsblk
enter the entry in /etc/fstab eg: if block partition is /dev/sda6
/dev/sda6 /mnt/local ext4 defaults 0 0
Any one method will help you...
First Method:
using the following command to check filesystem type and UUID and partition associated
# sudo blkid
in /etc/fstab add the entry in following format as
UUID=XXX.XXX.XXX /mnt/local ext4 defaults 0 0
(in-case file system is ext4)
mount the partition using
# mount -a
to check partion is working fine or not using
# df -h
Another method:
use following command to check the partition(current and umounted)
# lsblk
enter the entry in /etc/fstab eg: if block partition is /dev/sda6
/dev/sda6 /mnt/local ext4 defaults 0 0
Any one method will help you...
edited Feb 24 '16 at 19:05
Jakuje
16.5k53155
16.5k53155
answered Feb 24 '16 at 18:44
naveen dharmannaveen dharman
11
11
As i wrote above - it is a problem with x-gvfs-show. Not a matter of fs_spec or fs type (checked with all possible and relevant) or if a partition is working (it is).
– Korbaczek
Feb 24 '16 at 19:07
I will get back on this soon
– naveen dharman
Feb 24 '16 at 19:09
I was going through google and found one link, kindly check with this method by adding comment=x-gvfs-show askubuntu.com/questions/454225/…
– naveen dharman
Feb 24 '16 at 19:13
Yes, found the same... i have to check why it worked on other distros.. (perhaps it was not working and just ignoring this param) Thanks!
– Korbaczek
Feb 24 '16 at 19:16
Looks like it was discussed few times - askubuntu.com/questions/594197/…
– Korbaczek
Feb 24 '16 at 19:18
add a comment |
As i wrote above - it is a problem with x-gvfs-show. Not a matter of fs_spec or fs type (checked with all possible and relevant) or if a partition is working (it is).
– Korbaczek
Feb 24 '16 at 19:07
I will get back on this soon
– naveen dharman
Feb 24 '16 at 19:09
I was going through google and found one link, kindly check with this method by adding comment=x-gvfs-show askubuntu.com/questions/454225/…
– naveen dharman
Feb 24 '16 at 19:13
Yes, found the same... i have to check why it worked on other distros.. (perhaps it was not working and just ignoring this param) Thanks!
– Korbaczek
Feb 24 '16 at 19:16
Looks like it was discussed few times - askubuntu.com/questions/594197/…
– Korbaczek
Feb 24 '16 at 19:18
As i wrote above - it is a problem with x-gvfs-show. Not a matter of fs_spec or fs type (checked with all possible and relevant) or if a partition is working (it is).
– Korbaczek
Feb 24 '16 at 19:07
As i wrote above - it is a problem with x-gvfs-show. Not a matter of fs_spec or fs type (checked with all possible and relevant) or if a partition is working (it is).
– Korbaczek
Feb 24 '16 at 19:07
I will get back on this soon
– naveen dharman
Feb 24 '16 at 19:09
I will get back on this soon
– naveen dharman
Feb 24 '16 at 19:09
I was going through google and found one link, kindly check with this method by adding comment=x-gvfs-show askubuntu.com/questions/454225/…
– naveen dharman
Feb 24 '16 at 19:13
I was going through google and found one link, kindly check with this method by adding comment=x-gvfs-show askubuntu.com/questions/454225/…
– naveen dharman
Feb 24 '16 at 19:13
Yes, found the same... i have to check why it worked on other distros.. (perhaps it was not working and just ignoring this param) Thanks!
– Korbaczek
Feb 24 '16 at 19:16
Yes, found the same... i have to check why it worked on other distros.. (perhaps it was not working and just ignoring this param) Thanks!
– Korbaczek
Feb 24 '16 at 19:16
Looks like it was discussed few times - askubuntu.com/questions/594197/…
– Korbaczek
Feb 24 '16 at 19:18
Looks like it was discussed few times - askubuntu.com/questions/594197/…
– Korbaczek
Feb 24 '16 at 19:18
add a comment |
The problem is with wrong option "x-gvfs-show". "comment=x-gvfs-show" shall be used instead.
https://askubuntu.com/questions/594197/unrecognized-mount-option-x-gvfs-show-or-missing-value
add a comment |
The problem is with wrong option "x-gvfs-show". "comment=x-gvfs-show" shall be used instead.
https://askubuntu.com/questions/594197/unrecognized-mount-option-x-gvfs-show-or-missing-value
add a comment |
The problem is with wrong option "x-gvfs-show". "comment=x-gvfs-show" shall be used instead.
https://askubuntu.com/questions/594197/unrecognized-mount-option-x-gvfs-show-or-missing-value
The problem is with wrong option "x-gvfs-show". "comment=x-gvfs-show" shall be used instead.
https://askubuntu.com/questions/594197/unrecognized-mount-option-x-gvfs-show-or-missing-value
edited Apr 13 '17 at 12:22
Community♦
1
1
answered Feb 25 '16 at 15:40
KorbaczekKorbaczek
64
64
add a comment |
add a comment |
From your question it seems you wrote /dev/disk/by-uuid/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx /mnt/Local ext4 nosuid,nodev,nofail,x-gvfs-show 0 0
in your /etc/fstab
when it should be UUID=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx /mnt/Local ext4 rw,nosuid,nodev,exec,auto,nouser,async,nofail,comment=x-gvfs-show 0 0
.
(defaults
: rw suid dev exec auto nouser async
)
Thanks, but you can address it by few things :) I checked them all and it was not a matter here.
– Korbaczek
Feb 24 '16 at 18:43
add a comment |
From your question it seems you wrote /dev/disk/by-uuid/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx /mnt/Local ext4 nosuid,nodev,nofail,x-gvfs-show 0 0
in your /etc/fstab
when it should be UUID=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx /mnt/Local ext4 rw,nosuid,nodev,exec,auto,nouser,async,nofail,comment=x-gvfs-show 0 0
.
(defaults
: rw suid dev exec auto nouser async
)
Thanks, but you can address it by few things :) I checked them all and it was not a matter here.
– Korbaczek
Feb 24 '16 at 18:43
add a comment |
From your question it seems you wrote /dev/disk/by-uuid/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx /mnt/Local ext4 nosuid,nodev,nofail,x-gvfs-show 0 0
in your /etc/fstab
when it should be UUID=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx /mnt/Local ext4 rw,nosuid,nodev,exec,auto,nouser,async,nofail,comment=x-gvfs-show 0 0
.
(defaults
: rw suid dev exec auto nouser async
)
From your question it seems you wrote /dev/disk/by-uuid/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx /mnt/Local ext4 nosuid,nodev,nofail,x-gvfs-show 0 0
in your /etc/fstab
when it should be UUID=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx /mnt/Local ext4 rw,nosuid,nodev,exec,auto,nouser,async,nofail,comment=x-gvfs-show 0 0
.
(defaults
: rw suid dev exec auto nouser async
)
edited Jun 15 '16 at 20:23
Pierre.Vriens
99251015
99251015
answered Feb 24 '16 at 17:30
MCHMCH
11210
11210
Thanks, but you can address it by few things :) I checked them all and it was not a matter here.
– Korbaczek
Feb 24 '16 at 18:43
add a comment |
Thanks, but you can address it by few things :) I checked them all and it was not a matter here.
– Korbaczek
Feb 24 '16 at 18:43
Thanks, but you can address it by few things :) I checked them all and it was not a matter here.
– Korbaczek
Feb 24 '16 at 18:43
Thanks, but you can address it by few things :) I checked them all and it was not a matter here.
– Korbaczek
Feb 24 '16 at 18:43
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- 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%2funix.stackexchange.com%2fquestions%2f265535%2ffstab-mount-problem%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
Did you try mounting with "defaults" instead of "nosuid,nodev,nofail,x-gvfs-show" ?
– Dani_l
Feb 24 '16 at 17:27
yes, i tried, with the same result...
– Korbaczek
Feb 24 '16 at 17:28
when you mount manually, mount | grep sda3 - what's the output? can you try using those exact options in your fstab?
– Dani_l
Feb 24 '16 at 17:30
It looks like something is wrong with x-gvfs-show.. (other options works fine). Don't know why as it used to work always (i used it in many distros) Thanks for all comments guys! i will try to investigate what's wrong with gvfs-show.
– Korbaczek
Feb 24 '16 at 18:47