如何使用终端对3TB硬盘进行分区和挂载?


17

我有一个3TB硬盘,希望将其作为单个分区安装在Ubuntu 11.10服务器下,因为它超过2TB,我知道这有一些问题。我不确定要怎么做才能做到这一点。

我需要通过终端执行此操作,因为我正在使用服务器版本

Answers:


21

使用分手

它可能有点复杂,所以请在Internet(官方手册)或上阅读man parted。一些开始的命令:

parted /dev/sdX     # substitute with your drive (and you prolly need sudo)
> mklabel gpt       # makes a new gpt partition table, afaik needed for >2TB
> mkpart pri 1 -1   # makes a new primary partition from start to end,
                    # note there are only primary partitions on gpt

然后格式化您的分区,不确定ubuntu中的命令,请尝试

mkfs --type ext4 /dev/sdXY

用于ext4分区。

这足以使您能够挂载该分区。


1
parted目前不支持ext4:文件系统类型?[ext2]?ext4否实现:尚未实现对创建ext4文件系统的支持。
tarabyte

6

我是使用以下两个应用程序完成的:

  • gdisk(不是fdisk)创建初始分区,然后是
  • 软件包中的mkfs.ext4命令e2fsprogs以对其进行格式化

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.