LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 10-29-2019, 08:17 AM   #1
u9477100
LQ Newbie
 
Registered: Aug 2018
Location: Rajarhat-New Town, Kolkata, West Bengal, India
Distribution: Linux-Mint 19 Tara
Posts: 24

Rep: Reputation: Disabled
External HDD not mounting


I am quite new in Linux. My mobo is Gigabyte B85M-D3H. Processor i3. Ram 8GB. OS Linux Mint 19.2 One of my External HDD suddenly not mounting I can see it in Computer but cannot open it. It is connected Directly with the Box not by any hub. I used the folloing command but no result.

Code:
 soma@soma-B85M-D3H:~$ lsblk
NAME   MAJ:MIN RM   SIZE RO TYPE MOUNTPOINT
loop0    7:0    0 140.7M  1 loop /snap/gnome-3-26-1604/97
loop1    7:1    0  89.1M  1 loop /snap/core/7917
loop2    7:2    0  44.2M  1 loop /snap/gtk-common-themes/1353
loop3    7:3    0   156M  1 loop /snap/gnome-3-28-1804/91
loop4    7:4    0 150.2M  1 loop /snap/opera/57
loop5    7:5    0  28.9M  1 loop /snap/chromium-ffmpeg/15
loop6    7:6    0 229.7M  1 loop /snap/krita/52
loop7    7:7    0  84.3M  1 loop /snap/simplenote/129
loop8    7:8    0  54.5M  1 loop /snap/core18/1223
sda      8:0    0 931.5G  0 disk 
└─sda1   8:1    0 931.5G  0 part /
sdb      8:16   0 931.5G  0 disk 
└─sdb1   8:17   0 931.5G  0 part 
sr0     11:0    1  1024M  0 rom  
soma@soma-B85M-D3H:~$ grep $USER /etc/passwd
soma:x:1000:1000:soma,,,:/home/soma:/bin/bash
soma@soma-B85M-D3H:~$ sudo mount /dev/sdb1 /Full/path/ -
[sudo] password for soma:          
mount: bad usage
Try 'mount --help' for more information.
soma@soma-B85M-D3H:~$
I also tried

CODE] soma@soma-B85M-D3H:~$ sudo mount -t ntfs /dev/sdb1 /media
$MFTMirr does not match $MFT (record 0).
Failed to mount '/dev/sdb1': Input/output error
NTFS is either inconsistent, or there is a hardware fault, or it's a
SoftRAID/FakeRAID hardware. In the first case run chkdsk /f on Windows
then reboot into Windows twice. The usage of the /f parameter is very
important! If the device is a SoftRAID/FakeRAID then first activate
it and mount a different device under the /dev/mapper/ directory, (e.g.
/dev/mapper/nvidia_eahaabcc1). Please see the 'dmraid' documentation
for more details.[/CODE]

I am feeling helpless. Please guide me what to do.
 
Old 10-29-2019, 08:28 AM   #2
teckk
LQ Guru
 
Registered: Oct 2004
Distribution: Arch
Posts: 5,138
Blog Entries: 6

Rep: Reputation: 1827Reputation: 1827Reputation: 1827Reputation: 1827Reputation: 1827Reputation: 1827Reputation: 1827Reputation: 1827Reputation: 1827Reputation: 1827Reputation: 1827
Quote:
One of my External HDD suddenly not mounting
What file system is on it? If it's NTFS then use ntfs-3g
What is the output of:
Code:
fdisk -l /dev/sdb1
or
Code:
parted /dev/sdb1
Oh ok I can read.
Quote:
NTFS is either inconsistent, or there is a hardware fault
You may need to stick it into a microsoft machine and fix its file system.
 
Old 10-29-2019, 08:43 AM   #3
rnturn
Senior Member
 
Registered: Jan 2003
Location: Illinois (SW Chicago 'burbs)
Distribution: openSUSE, Raspbian, Slackware. Previous: MacOS, Red Hat, Coherent, Consensys SVR4.2, Tru64, Solaris
Posts: 2,803

Rep: Reputation: 550Reputation: 550Reputation: 550Reputation: 550Reputation: 550Reputation: 550
Quote:
Originally Posted by u9477100 View Post
I am quite new in Linux. My mobo is Gigabyte B85M-D3H. Processor i3. Ram 8GB. OS Linux Mint 19.2 One of my External HDD suddenly not mounting I can see it in Computer but cannot open it. It is connected Directly with the Box not by any hub. I used the folloing command but no result.

Code:
 soma@soma-B85M-D3H:~$ lsblk
NAME   MAJ:MIN RM   SIZE RO TYPE MOUNTPOINT
loop0    7:0    0 140.7M  1 loop /snap/gnome-3-26-1604/97
loop1    7:1    0  89.1M  1 loop /snap/core/7917
loop2    7:2    0  44.2M  1 loop /snap/gtk-common-themes/1353
loop3    7:3    0   156M  1 loop /snap/gnome-3-28-1804/91
loop4    7:4    0 150.2M  1 loop /snap/opera/57
loop5    7:5    0  28.9M  1 loop /snap/chromium-ffmpeg/15
loop6    7:6    0 229.7M  1 loop /snap/krita/52
loop7    7:7    0  84.3M  1 loop /snap/simplenote/129
loop8    7:8    0  54.5M  1 loop /snap/core18/1223
sda      8:0    0 931.5G  0 disk 
└─sda1   8:1    0 931.5G  0 part /
sdb      8:16   0 931.5G  0 disk 
└─sdb1   8:17   0 931.5G  0 part 
sr0     11:0    1  1024M  0 rom  
soma@soma-B85M-D3H:~$ grep $USER /etc/passwd
soma:x:1000:1000:soma,,,:/home/soma:/bin/bash
soma@soma-B85M-D3H:~$ sudo mount /dev/sdb1 /Full/path/ -
[sudo] password for soma:          
mount: bad usage
Try 'mount --help' for more information.
soma@soma-B85M-D3H:~$
I also tried

CODE] soma@soma-B85M-D3H:~$ sudo mount -t ntfs /dev/sdb1 /media
$MFTMirr does not match $MFT (record 0).

[snip]
First thing to do: Fix your "broken" CODE tag in the second bit of session you were trying to post. The content can still be read but it's a bit of a pain.

Second thing I'd do: Have you googled for that error message? I got a lot of hits when I did. Bottom line: Most of the hits suggest that the disk was unmounted incorrectly while on Windows. Did this come from a Windows system that suffered a crash? Or was the disk unplugged before it was finished writing data? Try plugging the drive into a Windows system (or, if you have one, booting your Windows partition) and running "scandisk". One post suggested that the disk might need defragging but I'm not experienced enough using NTFS disks to know whether that's a really useful suggestion or not. I suspect it's not but if "scandisk" doesn't show any NTFS errors I suppose it's worth doing the defragmentation on Windows. (Caveat: I don't do enough Windows any more to help out too much on that part. I'm just reporting what the pages returned by the Google said.)

Good luck...
 
1 members found this post helpful.
Old 10-29-2019, 09:39 AM   #4
Rickkkk
Senior Member
 
Registered: Dec 2014
Location: Montreal, Quebec and Dartmouth, Nova Scotia CANADA
Distribution: Arch, AntiX, ArtiX
Posts: 1,364

Rep: Reputation: 511Reputation: 511Reputation: 511Reputation: 511Reputation: 511Reputation: 511
I concur that it sounds like either a corrupt file system or failing hardware.

I also concur with the recommendations of previous posters to hook it up to a Windows system and running the diagnostics / repairs from there and seeing what the results are.

Let us know how you make out.
 
Old 10-29-2019, 09:52 AM   #5
uteck
Senior Member
 
Registered: Oct 2003
Location: Elgin,IL,USA
Distribution: Ubuntu based stuff for the most part
Posts: 1,173

Rep: Reputation: 501Reputation: 501Reputation: 501Reputation: 501Reputation: 501Reputation: 501
Most trouble shooting in Linux can be solved by copy and paste the error message into Google. Usually the top results will get you going.

$MFTMirr does not match $MFT (record 0).
First search result goes into why this happens and recommends running the ntfsfix command. So in your case: sudo ntfsfix /dev/sdb1
If you don't have that command, that first result says to install the ntfs-3g package to get it and other ntfs tools installed.
 
1 members found this post helpful.
Old 10-29-2019, 10:11 AM   #6
Rickkkk
Senior Member
 
Registered: Dec 2014
Location: Montreal, Quebec and Dartmouth, Nova Scotia CANADA
Distribution: Arch, AntiX, ArtiX
Posts: 1,364

Rep: Reputation: 511Reputation: 511Reputation: 511Reputation: 511Reputation: 511Reputation: 511
Quote:
Originally Posted by uteck View Post
Most trouble shooting in Linux can be solved by copy and paste the error message into Google. Usually the top results will get you going.

$MFTMirr does not match $MFT (record 0).
First search result goes into why this happens and recommends running the ntfsfix command. So in your case: sudo ntfsfix /dev/sdb1
If you don't have that command, that first result says to install the ntfs-3g package to get it and other ntfs tools installed.
This is an interesting alternative to going back to Windows for repairs ... I have never used ntfs-3g's repair utilities - even though I rarely use ntfs on linux, it's good to know they exist .

Thanks uteck.
 
Old 10-29-2019, 10:33 AM   #7
teckk
LQ Guru
 
Registered: Oct 2004
Distribution: Arch
Posts: 5,138
Blog Entries: 6

Rep: Reputation: 1827Reputation: 1827Reputation: 1827Reputation: 1827Reputation: 1827Reputation: 1827Reputation: 1827Reputation: 1827Reputation: 1827Reputation: 1827Reputation: 1827
Quote:
I have never used ntfs-3g's repair utilities
They don't do much @Rickkkk. You will usually have to stick it into a windows machine and let windows fix its proprietary file system.

If you unmount a ntfs volume and then pull out the usb plug before it's done umounting, you'll have a corrupt ntfs volume. The only way you'll fix it is with windows.

When you unmount a ntfs volume, wait 10 seconds after you umnount it before you pull the plug out. That will solve the problem. ntfs doesn't unmount as quickly as ext4 or fat.
 
1 members found this post helpful.
  


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
[SOLVED] Time taken to copy data from PC to External USB HDD and External USB HDD to PC will same? jegadezz Linux - Newbie 3 11-14-2017 09:22 AM
Run customised HDD driver for external HDD while generic HDD driver for bootable purpose sonia49 Linux - Newbie 1 09-28-2016 08:52 PM
Bootable partion on external HDD? 40 gb firelight hdd. Trebile34 Linux - Hardware 1 03-14-2005 11:50 AM
External USB HDD"Mounting local filesystems: /dev/sdb1 is not a valid block device" manudath Linux - Hardware 3 12-13-2004 09:59 PM
External USB HDD not mounting glk Linux - Hardware 1 01-22-2004 10:14 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 04:37 PM.

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