Other Problem mounting one of my Drives

I have been able to mount all my drives but now I see I one of my drives not mounting. This drive I just test also in Windows and it works but here it just won't let me mount it.

Let me first verify drive is there
Code:
# gpart show


=>        63  4294967232  ada1  MBR  (2.7T)
          63        1985        - free -  (993K)
        2048  4294963200     1  ntfs  (2.0T)
  4294965248        2047        - free -  (1.0M)

# gpart show ada1

=>        63  4294967232  ada1  MBR  (2.7T)
          63        1985        - free -  (993K)
        2048  4294963200     1  ntfs  (2.0T)
  4294965248        2047        - free -  (1.0M)


# ntfsfix /dev/ada1p1

Mounting volume... Failed to access '/dev/ada1p1': No such file or directory
Error opening '/dev/ada1p1': No such file or directory
FAILED
Attempting to correct errors... Failed to access '/dev/ada1p1': No such file or directory
Error opening '/dev/ada1p1': No such file or directory
FAILED
Failed to startup volume: No such file or directory
Failed to access '/dev/ada1p1': No such file or directory
Error opening '/dev/ada1p1': No such file or directory
Volume is corrupt. You should run chkdsk.

how do I do a chkdsk for a certain drive?
 
It's an MBR disk, so it's ada1s1, not ada1p1 (that's for GPT).
 
I have been able to mount all my drives but now I see I one of my drives not mounting. This drive I just test also in Windows and it works but here it just won't let me mount it.

Let me first verify drive is there
Code:
# gpart show


=>        63  4294967232  ada1  MBR  (2.7T)
          63        1985        - free -  (993K)
        2048  4294963200     1  ntfs  (2.0T)
  4294965248        2047        - free -  (1.0M)

# gpart show ada1

=>        63  4294967232  ada1  MBR  (2.7T)
          63        1985        - free -  (993K)
        2048  4294963200     1  ntfs  (2.0T)
  4294965248        2047        - free -  (1.0M)


# ntfsfix /dev/ada1p1

Mounting volume... Failed to access '/dev/ada1p1': No such file or directory
Error opening '/dev/ada1p1': No such file or directory
FAILED
Attempting to correct errors... Failed to access '/dev/ada1p1': No such file or directory
Error opening '/dev/ada1p1': No such file or directory
FAILED
Failed to startup volume: No such file or directory
Failed to access '/dev/ada1p1': No such file or directory
Error opening '/dev/ada1p1': No such file or directory
Volume is corrupt. You should run chkdsk.

how do I do a chkdsk for a certain drive?

Thank You that worked for me ntfs-3g /dev/ada1s1 /mediatest
 
If you can't remember what's used with GPT or MBR, the output from gpart show -p is probably more helpful.
 
Back
Top