Inaccessible drive with the message: unknown filesystem type '(null)'
Clash Royale CLAN TAG#URR8PPP
up vote
1
down vote
favorite
Short story:
A disk with partitions sdb1-sdb4 and filetype ext4 now shows up as sdb
with no file type. While trying to mount sdb
I get the messages:
mount: /dev/sdb is write-protected, mounting read-only
mount: unknown filesystem type '(null)'
I believe that the power had gone out, but everything else on the server seems to be working fine. I had only mounted it using mount /dev/sdb4 /wdmycloud
.
How do I go about accessing the partitions and data that should be on that drive?
Long Story
I have a 3â¯TB WD mycloud that could no longer be accessed by the network, so after tens of hours trying to make it work I pulled the drive out of its enclosure and plugged it into a USB dock on my CentOSà7, minimal install system.
The disk has several partitions.
sdb1,
sbd2,
sbd3,
sdb4,
and maybe some others, but the one with my backed up information was sdb4.
I mounted it like so: mount /dev/sdb4 /wdmycloud
and then copied my family pictures and videos off of it to my Windows machine via ftp, but left some documents and files to be recovered later as it was taking quite a long time.
Later I came back and the previously mounted folder wdmycloud
was empty. I checked the disks withlsblk -f
and it reads
NAME FSTYPE LABEL UUID
MOUNTPOINT
sda
âÂÂâÂÂsda1 xfs 76a06aa5-7cc2-437b-837a-31d5b8f46d71 /boot
âÂÂâÂÂsda2 LVM2_member YJTbNJ-IOnq-M8V9-l5HF-Yy5E-P2oS-YgD1Ct
âÂÂâÂÂcentos-root xfs ff6b11a5-ca5e-4be9-a8c0-f31cee1af190 /
âÂÂâÂÂcentos-swap swap dd47b390-c3e8-43d9-94c7-eff8d085fbf3 [SWAP]
âÂÂâÂÂcentos-home xfs 7abd7360-bf08-4dd0-a08d-60df94281a4e /home
sdb
sr0
I don't remember there being an sr0
device before, but it doesn't mean that it wasn't there. The partitions on sdb
seem to be gone. While trying to mount sdb
it I get the messages:
mount: /dev/sdb is write-protected, mounting read-only
mount: unknown filesystem type '(null)'
How do I go about accessing the partitions and data that should be on that drive?
Note: I've tried checking the integrity of the drive with fsck
. It gives this error:
The superblock could not be read or does not describe a correct ext2 filesystem.
There are (or were) several partitions and the main one is ext4. The others I'm not sure about.
mount hard-disk disk-usage fdisk lsblk
add a comment |Â
up vote
1
down vote
favorite
Short story:
A disk with partitions sdb1-sdb4 and filetype ext4 now shows up as sdb
with no file type. While trying to mount sdb
I get the messages:
mount: /dev/sdb is write-protected, mounting read-only
mount: unknown filesystem type '(null)'
I believe that the power had gone out, but everything else on the server seems to be working fine. I had only mounted it using mount /dev/sdb4 /wdmycloud
.
How do I go about accessing the partitions and data that should be on that drive?
Long Story
I have a 3â¯TB WD mycloud that could no longer be accessed by the network, so after tens of hours trying to make it work I pulled the drive out of its enclosure and plugged it into a USB dock on my CentOSà7, minimal install system.
The disk has several partitions.
sdb1,
sbd2,
sbd3,
sdb4,
and maybe some others, but the one with my backed up information was sdb4.
I mounted it like so: mount /dev/sdb4 /wdmycloud
and then copied my family pictures and videos off of it to my Windows machine via ftp, but left some documents and files to be recovered later as it was taking quite a long time.
Later I came back and the previously mounted folder wdmycloud
was empty. I checked the disks withlsblk -f
and it reads
NAME FSTYPE LABEL UUID
MOUNTPOINT
sda
âÂÂâÂÂsda1 xfs 76a06aa5-7cc2-437b-837a-31d5b8f46d71 /boot
âÂÂâÂÂsda2 LVM2_member YJTbNJ-IOnq-M8V9-l5HF-Yy5E-P2oS-YgD1Ct
âÂÂâÂÂcentos-root xfs ff6b11a5-ca5e-4be9-a8c0-f31cee1af190 /
âÂÂâÂÂcentos-swap swap dd47b390-c3e8-43d9-94c7-eff8d085fbf3 [SWAP]
âÂÂâÂÂcentos-home xfs 7abd7360-bf08-4dd0-a08d-60df94281a4e /home
sdb
sr0
I don't remember there being an sr0
device before, but it doesn't mean that it wasn't there. The partitions on sdb
seem to be gone. While trying to mount sdb
it I get the messages:
mount: /dev/sdb is write-protected, mounting read-only
mount: unknown filesystem type '(null)'
How do I go about accessing the partitions and data that should be on that drive?
Note: I've tried checking the integrity of the drive with fsck
. It gives this error:
The superblock could not be read or does not describe a correct ext2 filesystem.
There are (or were) several partitions and the main one is ext4. The others I'm not sure about.
mount hard-disk disk-usage fdisk lsblk
General note #1: A (physical) disk generally doesnâÂÂt have a filesystem type.â A physical disk typically has partitions (which can be thought of as logical disks).â Each partition can have a filesystem, and they can be all the same type, or a mixture of different types, including(null)
.â If a disk (e.g.,sdb
) has a filesystem, that means it doesnâÂÂt have partitions.â It is possible to use the entire disk for one filesystem, but itâÂÂs not a great idea.âÂÂâ¦â¯(ContâÂÂd)
â G-Man
Feb 7 at 18:29
(ContâÂÂd) â¦â General note #2:sr
is a common name for an optical disc (CD/DVD) drive.â â¦ ⦠⦠⦠â¦â To get somewhat to the point, if you had a filesystem onsdb4
, you should not be trying to mount or fscksdb
.â Itâ¯looksâ¯like your partition table got corrupted, so the operating system canâÂÂt find the partitions.â Worst case scenario: the disk is totally erased or overwritten.âÂÂâ¦â¯(ContâÂÂd)
â G-Man
Feb 7 at 18:29
(ContâÂÂd) â¦â But itâÂÂs quite possible that the partitions, and all their data, are still there â just misplaced.â IâÂÂm not sure exactly how to handle this, but (1)â¯look at our data-recovery questions, and see if you can find something that matches your problem.â And (2)â¯research programs likefdisk
and GParted, and see if you can figure out how to use them to recover your partition table.â¯â¯ Be very careful â if your data are still on the disk, an error at this point could wipe it out.
â G-Man
Feb 7 at 18:29
add a comment |Â
up vote
1
down vote
favorite
up vote
1
down vote
favorite
Short story:
A disk with partitions sdb1-sdb4 and filetype ext4 now shows up as sdb
with no file type. While trying to mount sdb
I get the messages:
mount: /dev/sdb is write-protected, mounting read-only
mount: unknown filesystem type '(null)'
I believe that the power had gone out, but everything else on the server seems to be working fine. I had only mounted it using mount /dev/sdb4 /wdmycloud
.
How do I go about accessing the partitions and data that should be on that drive?
Long Story
I have a 3â¯TB WD mycloud that could no longer be accessed by the network, so after tens of hours trying to make it work I pulled the drive out of its enclosure and plugged it into a USB dock on my CentOSà7, minimal install system.
The disk has several partitions.
sdb1,
sbd2,
sbd3,
sdb4,
and maybe some others, but the one with my backed up information was sdb4.
I mounted it like so: mount /dev/sdb4 /wdmycloud
and then copied my family pictures and videos off of it to my Windows machine via ftp, but left some documents and files to be recovered later as it was taking quite a long time.
Later I came back and the previously mounted folder wdmycloud
was empty. I checked the disks withlsblk -f
and it reads
NAME FSTYPE LABEL UUID
MOUNTPOINT
sda
âÂÂâÂÂsda1 xfs 76a06aa5-7cc2-437b-837a-31d5b8f46d71 /boot
âÂÂâÂÂsda2 LVM2_member YJTbNJ-IOnq-M8V9-l5HF-Yy5E-P2oS-YgD1Ct
âÂÂâÂÂcentos-root xfs ff6b11a5-ca5e-4be9-a8c0-f31cee1af190 /
âÂÂâÂÂcentos-swap swap dd47b390-c3e8-43d9-94c7-eff8d085fbf3 [SWAP]
âÂÂâÂÂcentos-home xfs 7abd7360-bf08-4dd0-a08d-60df94281a4e /home
sdb
sr0
I don't remember there being an sr0
device before, but it doesn't mean that it wasn't there. The partitions on sdb
seem to be gone. While trying to mount sdb
it I get the messages:
mount: /dev/sdb is write-protected, mounting read-only
mount: unknown filesystem type '(null)'
How do I go about accessing the partitions and data that should be on that drive?
Note: I've tried checking the integrity of the drive with fsck
. It gives this error:
The superblock could not be read or does not describe a correct ext2 filesystem.
There are (or were) several partitions and the main one is ext4. The others I'm not sure about.
mount hard-disk disk-usage fdisk lsblk
Short story:
A disk with partitions sdb1-sdb4 and filetype ext4 now shows up as sdb
with no file type. While trying to mount sdb
I get the messages:
mount: /dev/sdb is write-protected, mounting read-only
mount: unknown filesystem type '(null)'
I believe that the power had gone out, but everything else on the server seems to be working fine. I had only mounted it using mount /dev/sdb4 /wdmycloud
.
How do I go about accessing the partitions and data that should be on that drive?
Long Story
I have a 3â¯TB WD mycloud that could no longer be accessed by the network, so after tens of hours trying to make it work I pulled the drive out of its enclosure and plugged it into a USB dock on my CentOSà7, minimal install system.
The disk has several partitions.
sdb1,
sbd2,
sbd3,
sdb4,
and maybe some others, but the one with my backed up information was sdb4.
I mounted it like so: mount /dev/sdb4 /wdmycloud
and then copied my family pictures and videos off of it to my Windows machine via ftp, but left some documents and files to be recovered later as it was taking quite a long time.
Later I came back and the previously mounted folder wdmycloud
was empty. I checked the disks withlsblk -f
and it reads
NAME FSTYPE LABEL UUID
MOUNTPOINT
sda
âÂÂâÂÂsda1 xfs 76a06aa5-7cc2-437b-837a-31d5b8f46d71 /boot
âÂÂâÂÂsda2 LVM2_member YJTbNJ-IOnq-M8V9-l5HF-Yy5E-P2oS-YgD1Ct
âÂÂâÂÂcentos-root xfs ff6b11a5-ca5e-4be9-a8c0-f31cee1af190 /
âÂÂâÂÂcentos-swap swap dd47b390-c3e8-43d9-94c7-eff8d085fbf3 [SWAP]
âÂÂâÂÂcentos-home xfs 7abd7360-bf08-4dd0-a08d-60df94281a4e /home
sdb
sr0
I don't remember there being an sr0
device before, but it doesn't mean that it wasn't there. The partitions on sdb
seem to be gone. While trying to mount sdb
it I get the messages:
mount: /dev/sdb is write-protected, mounting read-only
mount: unknown filesystem type '(null)'
How do I go about accessing the partitions and data that should be on that drive?
Note: I've tried checking the integrity of the drive with fsck
. It gives this error:
The superblock could not be read or does not describe a correct ext2 filesystem.
There are (or were) several partitions and the main one is ext4. The others I'm not sure about.
mount hard-disk disk-usage fdisk lsblk
edited Feb 7 at 18:27
G-Man
11.6k82657
11.6k82657
asked Nov 6 '17 at 14:23
Aunt Jemima
12718
12718
General note #1: A (physical) disk generally doesnâÂÂt have a filesystem type.â A physical disk typically has partitions (which can be thought of as logical disks).â Each partition can have a filesystem, and they can be all the same type, or a mixture of different types, including(null)
.â If a disk (e.g.,sdb
) has a filesystem, that means it doesnâÂÂt have partitions.â It is possible to use the entire disk for one filesystem, but itâÂÂs not a great idea.âÂÂâ¦â¯(ContâÂÂd)
â G-Man
Feb 7 at 18:29
(ContâÂÂd) â¦â General note #2:sr
is a common name for an optical disc (CD/DVD) drive.â â¦ ⦠⦠⦠â¦â To get somewhat to the point, if you had a filesystem onsdb4
, you should not be trying to mount or fscksdb
.â Itâ¯looksâ¯like your partition table got corrupted, so the operating system canâÂÂt find the partitions.â Worst case scenario: the disk is totally erased or overwritten.âÂÂâ¦â¯(ContâÂÂd)
â G-Man
Feb 7 at 18:29
(ContâÂÂd) â¦â But itâÂÂs quite possible that the partitions, and all their data, are still there â just misplaced.â IâÂÂm not sure exactly how to handle this, but (1)â¯look at our data-recovery questions, and see if you can find something that matches your problem.â And (2)â¯research programs likefdisk
and GParted, and see if you can figure out how to use them to recover your partition table.â¯â¯ Be very careful â if your data are still on the disk, an error at this point could wipe it out.
â G-Man
Feb 7 at 18:29
add a comment |Â
General note #1: A (physical) disk generally doesnâÂÂt have a filesystem type.â A physical disk typically has partitions (which can be thought of as logical disks).â Each partition can have a filesystem, and they can be all the same type, or a mixture of different types, including(null)
.â If a disk (e.g.,sdb
) has a filesystem, that means it doesnâÂÂt have partitions.â It is possible to use the entire disk for one filesystem, but itâÂÂs not a great idea.âÂÂâ¦â¯(ContâÂÂd)
â G-Man
Feb 7 at 18:29
(ContâÂÂd) â¦â General note #2:sr
is a common name for an optical disc (CD/DVD) drive.â â¦ ⦠⦠⦠â¦â To get somewhat to the point, if you had a filesystem onsdb4
, you should not be trying to mount or fscksdb
.â Itâ¯looksâ¯like your partition table got corrupted, so the operating system canâÂÂt find the partitions.â Worst case scenario: the disk is totally erased or overwritten.âÂÂâ¦â¯(ContâÂÂd)
â G-Man
Feb 7 at 18:29
(ContâÂÂd) â¦â But itâÂÂs quite possible that the partitions, and all their data, are still there â just misplaced.â IâÂÂm not sure exactly how to handle this, but (1)â¯look at our data-recovery questions, and see if you can find something that matches your problem.â And (2)â¯research programs likefdisk
and GParted, and see if you can figure out how to use them to recover your partition table.â¯â¯ Be very careful â if your data are still on the disk, an error at this point could wipe it out.
â G-Man
Feb 7 at 18:29
General note #1: A (physical) disk generally doesnâÂÂt have a filesystem type.â A physical disk typically has partitions (which can be thought of as logical disks).â Each partition can have a filesystem, and they can be all the same type, or a mixture of different types, including
(null)
.â If a disk (e.g., sdb
) has a filesystem, that means it doesnâÂÂt have partitions.â It is possible to use the entire disk for one filesystem, but itâÂÂs not a great idea.âÂÂâ¦â¯(ContâÂÂd)â G-Man
Feb 7 at 18:29
General note #1: A (physical) disk generally doesnâÂÂt have a filesystem type.â A physical disk typically has partitions (which can be thought of as logical disks).â Each partition can have a filesystem, and they can be all the same type, or a mixture of different types, including
(null)
.â If a disk (e.g., sdb
) has a filesystem, that means it doesnâÂÂt have partitions.â It is possible to use the entire disk for one filesystem, but itâÂÂs not a great idea.âÂÂâ¦â¯(ContâÂÂd)â G-Man
Feb 7 at 18:29
(ContâÂÂd) â¦â General note #2:
sr
is a common name for an optical disc (CD/DVD) drive.â â¦ ⦠⦠⦠â¦â To get somewhat to the point, if you had a filesystem on sdb4
, you should not be trying to mount or fsck sdb
.â Itâ¯looksâ¯like your partition table got corrupted, so the operating system canâÂÂt find the partitions.â Worst case scenario: the disk is totally erased or overwritten.âÂÂâ¦â¯(ContâÂÂd)â G-Man
Feb 7 at 18:29
(ContâÂÂd) â¦â General note #2:
sr
is a common name for an optical disc (CD/DVD) drive.â â¦ ⦠⦠⦠â¦â To get somewhat to the point, if you had a filesystem on sdb4
, you should not be trying to mount or fsck sdb
.â Itâ¯looksâ¯like your partition table got corrupted, so the operating system canâÂÂt find the partitions.â Worst case scenario: the disk is totally erased or overwritten.âÂÂâ¦â¯(ContâÂÂd)â G-Man
Feb 7 at 18:29
(ContâÂÂd) â¦â But itâÂÂs quite possible that the partitions, and all their data, are still there â just misplaced.â IâÂÂm not sure exactly how to handle this, but (1)â¯look at our data-recovery questions, and see if you can find something that matches your problem.â And (2)â¯research programs like
fdisk
and GParted, and see if you can figure out how to use them to recover your partition table.â¯â¯ Be very careful â if your data are still on the disk, an error at this point could wipe it out.â G-Man
Feb 7 at 18:29
(ContâÂÂd) â¦â But itâÂÂs quite possible that the partitions, and all their data, are still there â just misplaced.â IâÂÂm not sure exactly how to handle this, but (1)â¯look at our data-recovery questions, and see if you can find something that matches your problem.â And (2)â¯research programs like
fdisk
and GParted, and see if you can figure out how to use them to recover your partition table.â¯â¯ Be very careful â if your data are still on the disk, an error at this point could wipe it out.â G-Man
Feb 7 at 18:29
add a comment |Â
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
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
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f402840%2finaccessible-drive-with-the-message-unknown-filesystem-type-null%23new-answer', 'question_page');
);
Post as a guest
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
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
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
General note #1: A (physical) disk generally doesnâÂÂt have a filesystem type.â A physical disk typically has partitions (which can be thought of as logical disks).â Each partition can have a filesystem, and they can be all the same type, or a mixture of different types, including
(null)
.â If a disk (e.g.,sdb
) has a filesystem, that means it doesnâÂÂt have partitions.â It is possible to use the entire disk for one filesystem, but itâÂÂs not a great idea.âÂÂâ¦â¯(ContâÂÂd)â G-Man
Feb 7 at 18:29
(ContâÂÂd) â¦â General note #2:
sr
is a common name for an optical disc (CD/DVD) drive.â â¦ ⦠⦠⦠â¦â To get somewhat to the point, if you had a filesystem onsdb4
, you should not be trying to mount or fscksdb
.â Itâ¯looksâ¯like your partition table got corrupted, so the operating system canâÂÂt find the partitions.â Worst case scenario: the disk is totally erased or overwritten.âÂÂâ¦â¯(ContâÂÂd)â G-Man
Feb 7 at 18:29
(ContâÂÂd) â¦â But itâÂÂs quite possible that the partitions, and all their data, are still there â just misplaced.â IâÂÂm not sure exactly how to handle this, but (1)â¯look at our data-recovery questions, and see if you can find something that matches your problem.â And (2)â¯research programs like
fdisk
and GParted, and see if you can figure out how to use them to recover your partition table.â¯â¯ Be very careful â if your data are still on the disk, an error at this point could wipe it out.â G-Man
Feb 7 at 18:29