我刚刚从 USB 安装了最新的 Ubuntu x64。一切正常。安装在我的 Win 8.1 上,选择“用 Ubuntu 替换当前 Windows”。(不是与 Windows 双启动)我的问题是:如何进入我的硬盘来存储文件?PS 我是 Ubuntu 新手。以下是一些信息:
mrk@M:~$ sudo fdisk -l
Disk /dev/sda: 500.1 GB, 500107862016 bytes
255 heads, 63 sectors/track, 60801 cylinders, total 976773168 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
Disk identifier: 0x0001b5e0
Device Boot Start End Blocks Id System
/dev/sda1 * 2048 968419327 484208640 83 Linux
/dev/sda2 968421374 976771071 4174849 5 Extended
Partition 2 does not start on physical sector boundary.
/dev/sda5 968421376 976771071 4174848 82 Linux swap / Solaris
WARNING: GPT (GUID Partition Table) detected on '/dev/sdb'! The util fdisk doesn't support GPT. Use GNU Parted.
Disk /dev/sdb: 1000.2 GB, 1000204886016 bytes
255 heads, 63 sectors/track, 121601 cylinders, total 1953525168 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
Disk identifier: 0x00008000
Device Boot Start End Blocks Id System
/dev/sdb1 1 1953525167 976762583+ ee GPT
Disk /dev/sdg: 4043 MB, 4043308544 bytes
255 heads, 63 sectors/track, 491 cylinders, total 7897087 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
Disk identifier: 0x0004fb8d
Device Boot Start End Blocks Id System
/dev/sdg1 * 2048 7897086 3947519+ c W95 FAT32 (LBA)
mrk@M:~$ sudo parted -l
Model: ATA ST500DM002-1BD14 (scsi)
Disk /dev/sda: 500GB
Sector size (logical/physical): 512B/4096B
Partition Table: msdos
Number Start End Size Type File system Flags
1 1049kB 496GB 496GB primary ext4 boot
2 496GB 500GB 4275MB extended
5 496GB 500GB 4275MB logical linux-swap(v1)
Model: ATA ST31000520AS (scsi)
Disk /dev/sdb: 1000GB
Sector size (logical/physical): 512B/512B
Partition Table: gpt
Number Start End Size File system Name Flags
1 33.6MB 21.5GB 21.5GB primary raid
2 21.5GB 1000GB 979GB ntfs primary hidden, msftdata
Model: Generic USB Flash Disk (scsi)
Disk /dev/sdg: 4043MB
Sector size (logical/physical): 512B/512B
Partition Table: msdos
Number Start End Size Type File system Flags
1 1049kB 4043MB 4042MB primary fat32 boot, lba
mrk@M:~$
我真的还不明白这是什么意思。只是好奇:
21.5GB 1000GB 979GB ntfs primary hidden, msftdata
我的 1TB 硬盘上有非常重要的文件,但我可以格式化它。无法挂载或与该硬盘进行任何操作。如果有可能,我想保存它。
请帮忙。
答案1
由于这是内置硬盘,我们可以添加一个条目,/etc/fstab
让 Ubuntu 每次启动时都将其挂载。首先,选择要挂载它的目录(例如/home/marius/internal
,marius
您的用户名在哪里)。确保目录存在(如果需要,可以创建一个新目录)。然后,执行以下操作:
cat <<EOF | sudo tee -a /etc/fstab
/dev/sdb1 /home/marius/internal ntfs-3g rw,exec,uid=$(id -u),gid=$(id -u),umask=022 0 0
EOF
这将添加一个条目,为/etc/fstab
您提供适当的读/写权限。然后,执行以下操作:
sudo umount /dev/sdb1
sudo mount /dev/sdb1
第一个命令将撤消先前的挂载,然后第二个命令将使用新的设置进行挂载。
如果是新硬盘,您可以重新格式化它,然后开始使用它。打开磁盘程序,从右侧窗格中选择新硬盘,单击右上角的齿轮图标,然后选择格式。
使用默认选项(GPT 和 MBR 都可以)。创建新分区表后,单击+
,选择大小。对于类型,如果您也希望在 Windows 上使用它,请选择“兼容大多数系统 (NTFS)”而不是默认的 ( ext4
)。给它起一个好听的标签。单击播放图标将其挂载。(或者单击文件浏览器中的相应图标。)
很抱歉我无法向您提供有关隐藏 RAID 部分的更多信息。