我最近安装了ubuntu 16.04
. 在安装之前,我已经备份了我的数据(以前的系统是ubuntu 14.04
)。安装后我想复制我的文件,但我无法访问它。光盘未出现在 . 下的文件(左侧栏)中unity
。在mate
我可以看到它的下方,但是如果我尝试打开它,则会出现消息unable to mount location
。
sudo fdisk -l
输出是:
Disk /dev/sda: 298,1 GiB, 320072933376 bytes, 625142448 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disklabel type: dos
Disk identifier: 0x924cef05
Device Boot Start End Sectors Size Id Type
/dev/sda1 * 2048 617050111 617048064 294,2G 83 Linux
/dev/sda2 617052158 625141759 8089602 3,9G 5 Extended
/dev/sda5 617052160 625141759 8089600 3,9G 82 Linux swap / Solaris
Partition 2 does not start on physical sector boundary.
Disk /dev/sdb: 298,1 GiB, 320072933376 bytes, 625142448 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x000e1e9b
Device Boot Start End Sectors Size Id Type
/dev/sdb1 2048 625141759 625139712 298,1G 83 Linux
maria@maria-Vostro-3360:/media$ sudo mount -t ntfs /dev/sdb1 /media/external
我在/media
命名中创建了安装点external
我跑了sudo mount /dev/sdb1 /media/external
输出是:
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.
我试过了mount -t ext4 /dev/sdb1 /media/external
输出:
mount: special device /dev/sdb1 does not exist
maria@maria-Vostro-3360:/media$
还有其他方法我应该尝试访问数据吗?
更新
我试图在 GParted 中查看光盘。这显示unknown file system
并在详细信息下有以下内容:
这是否意味着我的光盘突然坏了?
更新 3
Disk /dev/sdb - 320 GB / 298 GiB - CHS 38913 255 63
Partition Start End Size in sectors
D Linux 0 32 33 38913 70 5 625139712
D Linux 1215 170 44 38913 70 5 605612032
D Linux 1490 100 19 38913 70 5 601198592
D Linux 19611 118 28 25015 239 56 86822912
更新
由于似乎问题不是挂载而是文件系统损坏,因此我提出了有关数据恢复的新问题:数据恢复-损坏的文件系统。
你有两个问题。
问题 #1
在您的 /dev/sda 硬盘上,分区 sda2/sda5 未正确对齐。这是一个相对简单的修复,因为它是您的交换分区。
问题 #2
您需要恢复您的 sdb1 分区,将其从 unknown 更改为 EXT4。最好使用testdisk。
您可以访问http://www.cgsecurity.org/wiki/TestDisk_Step_By_Step了解有关 testdisk 分区恢复的更多信息。