Error writing on HDD
Hello fellow Linux users, I am running Ubuntu 12.04 32-bit with Xubuntu DE and recently got a hold of Maxtor 6Y080M0 SATA HDD and I formatted it to ext4 filesystem using Gparted tool. But since then I have a problem, I cannot write anything on it nor can I format it. When I try to mount it from Disks tool this is what it says:I have no idea anymore why is it not working, so please give me some advice.Code:Error mounting system-managed device /dev/sdb1: Command-line `mount "/mnt/088464b0-321b-4690-bde7-9850831f22d4"' exited with non-zero exit status 32: mount: wrong fs type, bad option, bad superblock on /dev/sdb1, missing codepage or helper program, or other error In some cases useful info is found in syslog - try dmesg | tail or so (udisks-error-quark, 0)
My regards, stay brutal.
Last edited by LinuxUser666; October 3rd, 2013 at 06:47 PM.
Avoid the Gates of Hell. Use Linux.
September 30th, 2013
#2
Re: Error writing on HDD
Your error message indicates a filesystem failure, which can be caused by several reasons and it's causing it's refuse to mount. First you have to figure out what partition you're dealing with, by runningThe above will list all the partitions on all the drives in your computer. Then make sure your superblock is the problem, by starting a filesystem check, replacing xxx with your partition nameCode:sudo fdisk -lIf your superblock is corrupt, the output will look something like thisCode:sudo fsck.ext4 -v /dev/xxxYou'll have to find where your superblock backups are keptThe superblock could not be read or does not describe a correct ext4 filesystem. If the device is valid and it really contains an ext4 filesystem (and not swap or ufs or something else), then the superblock is corrupt, and you might try running e2fsck with an alternate superblock: e2fsck -b 8193 <device>Down at the bottom of the output, you should see a list of the backups, something like thisCode:sudo mke2fs -n /dev/xxxRestore the superblock from the backup, again replacing xxx with your partition name, and block_number with the first backup superblockCode:Superblock backups stored on blocks: 32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632Reboot, and the superblock should be fixed. If it’s not, repeat the steps, but restore a different backup superblock.Code:sudo e2fsck -b block_number /dev/xxx
Tidak ada komentar:
Posting Komentar