如何使用fdisk在/ dev / sdx上创建ntfs分区?


23

我想知道如何在/ dev / sdx上创建一个ntfs分区。我不知道是否应该使用分区类型7 86或87。

要使用的命令的完整列表是什么?


随着partition type 7 86 or 87我假设你的意思是fdisk当然的外壳分区类型。
索帕拉霍·德·阿里埃雷斯

Answers:


35
  1. 使用创建分区 fdisk

    fdisk /dev/sdx
    

    命令:

    • 创建分区:n,p,[enter],[enter]
    • 为分区指定类型:t,7(不要选择86或87,这些是用于卷集的)
    • 如果要使其可启动:
    • 查看更改:p
    • 写下更改:w
  2. 在/ dev / sdx1上创建一个ntfs fileystem:

    mkfs.ntfs /dev/sdx1
    
  3. 随便安装

    mount /dev/sdx1 /mnt/myNtfsDevice
    

1
当磁盘大小大于2TB时,应使用gdisk而不是fdisk。命令很相似
寺庙

9
如果您有大型文件系统,并且不想等待数小时通过它写入零,则可以通过运行mkfs.ntfs -f /dev/sdx1代替跳过该部分
DCIndieDev

3

您可以使用fdisk创建分区“ disk ”分区,但对于分区的文件系统,可以使用mkfs.ntfs在将使用分区的分区中创建文件系统。

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.