LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Linux Mint
User Name
Password
Linux Mint This forum is for the discussion of Linux Mint.

Notices


Reply
  Search this Thread
Old 05-27-2016, 08:29 AM   #16
drkarthik
LQ Newbie
 
Registered: May 2016
Location: HYDERABAD, TELANGANA, INDIA
Distribution: DEBIAN JESSIE
Posts: 17

Original Poster
Rep: Reputation: Disabled

Quote:
Originally Posted by hydrurga View Post
It certainly looks unusual.

Can you paste the output of:

Code:
cat /proc/mounts
here,
linuxmint drkarthik # cat /proc/mounts
sysfs /sys sysfs rw,nosuid,nodev,noexec,relatime 0 0
proc /proc proc rw,nosuid,nodev,noexec,relatime 0 0
udev /dev devtmpfs rw,relatime,size=2978772k,nr_inodes=744693,mode=755 0 0
devpts /dev/pts devpts rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000 0 0
tmpfs /run tmpfs rw,nosuid,noexec,relatime,size=598968k,mode=755 0 0
/dev/sda10 / ext4 rw,relatime,errors=remount-ro,data=ordered 0 0
none /sys/fs/cgroup tmpfs rw,relatime,size=4k,mode=755 0 0
none /sys/fs/fuse/connections fusectl rw,relatime 0 0
none /sys/kernel/debug debugfs rw,relatime 0 0
none /sys/kernel/security securityfs rw,relatime 0 0
none /sys/firmware/efi/efivars efivarfs rw,relatime 0 0
none /run/lock tmpfs rw,nosuid,nodev,noexec,relatime,size=5120k 0 0
none /run/shm tmpfs rw,nosuid,nodev,relatime 0 0
none /run/user tmpfs rw,nosuid,nodev,noexec,relatime,size=102400k,mode=755 0 0
none /sys/fs/pstore pstore rw,relatime 0 0
/dev/sda1 /boot/efi vfat rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro 0 0
binfmt_misc /proc/sys/fs/binfmt_misc binfmt_misc rw,nosuid,nodev,noexec,relatime 0 0
systemd /sys/fs/cgroup/systemd cgroup rw,nosuid,nodev,noexec,relatime,name=systemd 0 0
gvfsd-fuse /run/user/1000/gvfs fuse.gvfsd-fuse rw,nosuid,nodev,relatime,user_id=1000,group_id=1000 0 0

thanks!
 
Old 05-27-2016, 08:38 AM   #17
hydrurga
LQ Guru
 
Registered: Nov 2008
Location: Pictland
Distribution: Linux Mint 21 MATE
Posts: 8,048
Blog Entries: 5

Rep: Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925
Ok, thanks. Sorry for all this. Now the output of

Code:
cat /etc/mtab
so that we can confirm that mtab is somehow awry.
 
Old 05-27-2016, 08:41 AM   #18
drkarthik
LQ Newbie
 
Registered: May 2016
Location: HYDERABAD, TELANGANA, INDIA
Distribution: DEBIAN JESSIE
Posts: 17

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by hydrurga View Post
Ok, thanks. Sorry for all this. Now the output of

Code:
cat /etc/mtab
so that we can confirm that mtab is somehow awry.
here,

linuxmint drkarthik # cat /etc/mtab
/dev/sda1 /boot/efi vfat rw 0 0
binfmt_misc /proc/sys/fs/binfmt_misc binfmt_misc rw,noexec,nosuid,nodev 0 0
systemd /sys/fs/cgroup/systemd cgroup rw,noexec,nosuid,nodev,none,name=systemd 0 0


thanks!
 
Old 05-27-2016, 09:00 AM   #19
hydrurga
LQ Guru
 
Registered: Nov 2008
Location: Pictland
Distribution: Linux Mint 21 MATE
Posts: 8,048
Blog Entries: 5

Rep: Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925
Now that is not what I expected (I hoped that mtab would show faulty mount info, including the NTFS filesystem in question). It doesn't even show your mounted Mint installation on /dev/sda10.

I think it probably needs a more experienced head than me. What I was going to suggest however is that you reset /etc/mtab through the following command:

Code:
sudo sh -c 'grep -v rootfs /proc/mounts > /etc/mtab'
 
Old 05-27-2016, 09:14 AM   #20
drkarthik
LQ Newbie
 
Registered: May 2016
Location: HYDERABAD, TELANGANA, INDIA
Distribution: DEBIAN JESSIE
Posts: 17

Original Poster
Rep: Reputation: Disabled
Unhappy

Quote:
Originally Posted by hydrurga View Post
Now that is not what I expected (I hoped that mtab would show faulty mount info, including the NTFS filesystem in question). It doesn't even show your mounted Mint installation on /dev/sda10.

I think it probably needs a more experienced head than me. What I was going to suggest however is that you reset /etc/mtab through the following command:

Code:
sudo sh -c 'grep -v rootfs /proc/mounts > /etc/mtab'
start

well this step also failed to address the problem.
i reset mtab with the above command and restarted the computer and the problem is there.
how can i make sure that an experienced head looks into the problem?
thanks!!
 
Old 05-28-2016, 01:04 AM   #21
hydrurga
LQ Guru
 
Registered: Nov 2008
Location: Pictland
Distribution: Linux Mint 21 MATE
Posts: 8,048
Blog Entries: 5

Rep: Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925
You could always try converting mtab into a symlink (make a copy of the file first as mtab-copy or similar so that you can revert to it if you encounter problems):

Code:
ln -sf /proc/mounts /etc/mtab
 
1 members found this post helpful.
Old 05-28-2016, 01:13 AM   #22
drkarthik
LQ Newbie
 
Registered: May 2016
Location: HYDERABAD, TELANGANA, INDIA
Distribution: DEBIAN JESSIE
Posts: 17

Original Poster
Rep: Reputation: Disabled
Thumbs up

Quote:
Originally Posted by hydrurga View Post
You could always try converting mtab into a symlink (make a copy of the file first as mtab-copy or similar so that you can revert to it if you encounter problems):

Code:
ln -sf /proc/mounts /etc/mtab

well hydrurga,
looks like you are the experienced head!!!!
converting mtab to symlink with the above code worked perfect!
all partitions are now mounted correctly and i am able to access them fine.
thanks a lot!!
you just saved lot of my time i would have wasted in reinstalling linux mint again!!!

Last edited by drkarthik; 05-28-2016 at 01:16 AM.
 
Old 05-28-2016, 01:25 AM   #23
hydrurga
LQ Guru
 
Registered: Nov 2008
Location: Pictland
Distribution: Linux Mint 21 MATE
Posts: 8,048
Blog Entries: 5

Rep: Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925
Quote:
Originally Posted by drkarthik View Post
well hydrurga,
looks like you are the experienced head!!!!
converting mtab to symlink with the above code worked perfect!
all partitions are now mounted correctly and i am able to access them fine.
thanks a lot!!
you just saved lot of my time i would have wasted in reinstalling linux mint again!!!
Great news, and thanks for the promotion. If you could mark the thread as "solved" then that would be great. Have fun!
 
  


Reply



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 Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Mount NTFS Partitions Sarath1245 Linux - Newbie 8 09-28-2009 06:26 AM
Mount NTFS Partitions Sarath1245 Linux - Software 2 09-26-2009 02:50 PM
I can't mount ntfs partitions with the latest ntfs-3g version BK2 Linux - Software 1 02-01-2008 07:08 PM
unable to mount ntfs partitions sundoe Linux - Desktop 3 01-26-2008 05:06 AM
mount NTFS partitions heinrich Linux - Software 3 08-11-2003 03:27 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Linux Mint

All times are GMT -5. The time now is 08:48 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration