格式化存储驱动器的终端方法


59

我想知道如何从终端格式化存储驱动器。答案中提供的有用信息通常是人们可以用来推断未来用途的命令和基础知识的选项。具体来说,我想知道如何在不同的文件系统(例如NTFS,FAT32,EXT4等)中进行格式化。还需要有关如何通过终端对驱动器进行分区的信息。

我正在尝试从终端将高容量的外部硬盘驱动器(EHDD)格式化为NTFS。

我知道我可以在此gparted以及其他GUI程序中使用gparted,但现在我仍然想从终端上执行该操作。


1
对于愿意回答的人:请务必说明-m保留空间上的选项-这是相关的,因为它很直观。
Volker Siegel 2014年

Answers:


66

有一些可用的选项:

  1. fdisk(较旧,不支持GPT 4)。
  2. parted (GParted的CLI兄弟)。
  3. 各种mkfs程序,如果您已经有分区并希望进行格式化。

fdisk并且parted是交互式的,并且具有帮助命令,因此您始终可以在程序中寻求帮助。两者都可以编写脚本。这些mkfs命令不是交互式的。


fdisk

fdisk期望使用设备(例如/dev/sda)作为参数。它具有以下命令:

Command action
   a   toggle a bootable flag
   b   edit bsd disklabel
   c   toggle the DOS compatibility flag
   d   delete a partition
   l   list known partition types
   m   print this menu
   n   add a new partition
   o   create a new empty DOS partition table
   p   print the partition table
   q   quit without saving changes
   s   create a new empty Sun disklabel
   t   change a partition's system id
   u   change display/entry units
   v   verify the partition table
   w   write table to disk and exit
   x   extra functionality (experts only)

我用的fdisk不多。我只关注:


parted

parted并不需要一个参数(它试图“猜”),但你应该总是指定磁盘。有了选择,parted您应该首选该程序。它具有以下命令:

  align-check TYPE N                        check partition N for TYPE(min|opt) alignment
  check NUMBER                             do a simple check on the file system
  cp [FROM-DEVICE] FROM-NUMBER TO-NUMBER   copy file system to another partition
  help [COMMAND]                           print general help, or help on COMMAND
  mklabel,mktable LABEL-TYPE               create a new disklabel (partition table)
  mkfs NUMBER FS-TYPE                      make a FS-TYPE file system on partition NUMBER
  mkpart PART-TYPE [FS-TYPE] START END     make a partition
  mkpartfs PART-TYPE FS-TYPE START END     make a partition with a file system
  resizepart NUMBER END                    resize partition NUMBER
  move NUMBER START END                    move partition NUMBER
  name NUMBER NAME                         name partition NUMBER as NAME
  print [devices|free|list,all|NUMBER]     display the partition table, available devices, free space, all found partitions, or a particular partition
  quit                                     exit program
  rescue START END                         rescue a lost partition near START and END
  resize NUMBER START END                  resize partition NUMBER and its file system
  rm NUMBER                                delete partition NUMBER
  select DEVICE                            choose the device to edit
  set NUMBER FLAG STATE                    change the FLAG on partition NUMBER
  toggle [NUMBER [FLAG]]                   toggle the state of FLAG on partition NUMBER
  unit UNIT                                set the default unit to UNIT
  version                                  display the version number and copyright information of GNU Parted

可以将命令压缩为唯一的前缀(例如h的缩写help)。

我将使用/tmp/part我创建的临时文件()向您显示命令,因此大小会有些小。您应该将其替换为所需的设备(/dev/sda例如,)。

首先,如果您的磁盘没有分区表,则必须创建一个分区表:

parted /tmp/part mklabel gpt

mklabel msdos,如果您想要老式的4主分区(称为MBR或MSDOS分区表)。然后,我们说一个ext4分区开始于3GB(即,保留了最初的3G空闲),大小为2GB(即,至5GB)。parted期望以MB为单位的位置mkpartfs,但是我们可以指定后缀:

parted /tmp/part mkpart primary ext4 3G 5G

还有一个,现在是1GB的NTFS分区:

parted /tmp/part mkpart primary ntfs 5G 6G

结果:

# parted /tmp/part print
Model:  (file)
Disk /tmp/blah: 10.4GB
Sector size (logical/physical): 512B/512B
Partition Table: gpt

Number  Start   End     Size    File system  Name     Flags
 1      3000MB  5000MB  2000MB               primary
 2      5000MB  6000MB  1000MB               primary  msftdata

请注意,它如何使用SI前缀,而GParted坚定地使用二进制前缀(同时删除silly i)。我将标记分区:

# parted /tmp/part name 1 hello
# parted /tmp/part name 2 world
# parted /tmp/part print
Model:  (file)
Disk /tmp/blah: 10.4GB
Sector size (logical/physical): 512B/512B
Partition Table: gpt

Number  Start   End     Size    File system  Name   Flags
 1      3000MB  5000MB  2000MB               hello
 2      5000MB  6000MB  1000MB               world  msftdata

虽然parted可以ntfs很好地创建文件系统的分区,但不能将现有分区(!)格式化为NTFS:

mkfs partition fs-type
         Make a filesystem fs-type on partition. fs-type can be one 
         of "fat16", "fat32", "ext2", "linux-swap", or "reiserfs".

确实,parted会告诉您应该使用它来操作分区,而不是文件系统,这使我想到


mkfs

mkfs像一样fsck,本质上是各种文件系统特定命令的前端。在我的示例系统,mkfs.bfsmkfs.cramfsmkfs.ext2mkfs.ext3mkfs.ext4mkfs.ext4devmkfs.fatmkfs.minixmkfs.msdosmkfs.ntfsmkfs.vfat可供选择。

现在,不幸的是,虽然parted可以像我上面使用的那样在文件上正常运行,mkfs但是无法在此类文件中寻找分区。事实上,它希望块设备,所以如果我要使用一个新的文件/tmp/filemkfs,我必须迫使它这样做。您将使用与要格式化的分区相对应的块设备,例如/dev/sda2。的一般语法为mkfs

# mkfs --help
Usage: mkfs [options] [-t type fs-options] device [size]

Options:
 -t, --type=TYPE  file system type, when undefined ext2 is used
     fs-options   parameters to real file system builder
     device       path to a device
     size         number of blocks on the device
 -V, --verbose    explain what is done
                  defining -V more than once will cause a dry-run
 -V, --version    output version information and exit
                  -V as version must be only option
 -h, --help       display this help and exit

For more information, see mkfs(8).

如您所见,该-t标志使我们可以传递文件系统特定的标志。例如,NTFS标志:

# mkfs.ntfs --help 
Usage: mkntfs [options] device [number-of-sectors]

Basic options:
    -f, --fast                      Perform a quick format
    -Q, --quick                     Perform a quick format
    -L, --label STRING              Set the volume label
    -C, --enable-compression        Enable compression on the volume
    -I, --no-indexing               Disable indexing on the volume
    -n, --no-action                 Do not write to disk

Advanced options:
    -c, --cluster-size BYTES        Specify the cluster size for the volume
    -s, --sector-size BYTES         Specify the sector size for the device
    -p, --partition-start SECTOR    Specify the partition start sector
    -H, --heads NUM                 Specify the number of heads
    -S, --sectors-per-track NUM     Specify the number of sectors per track
    -z, --mft-zone-multiplier NUM   Set the MFT zone multiplier
    -T, --zero-time                 Fake the time to be 00:00 UTC, Jan 1, 1970
    -F, --force                     Force execution despite errors

Output options:
    -q, --quiet                     Quiet execution
    -v, --verbose                   Verbose execution
        --debug                     Very verbose execution

Help options:
    -V, --version                   Display version
    -l, --license                   Display licensing information
    -h, --help                      Display this help

Developers' email address: ntfs-3g-devel@lists.sf.net
News, support and information:  http://tuxera.com

因此,让我们制作一个具有快速格式化(-Q)的NTFS分区,使其强制在非块设备文件上运行(-F),并设置一个标签(-L "hello world")。

# mkfs -t ntfs -F -Q -L "hello world" /tmp/file
/tmp/file is not a block device.
mkntfs forced anyway.
The sector size was not specified for /tmp/file and it could not be obtained automatically.  It has been set to 512 bytes.
The partition start sector was not specified for /tmp/file and it could not be obtained automatically.  It has been set to 0.
The number of sectors per track was not specified for /tmp/file and it could not be obtained automatically.  It has been set to 0.
The number of heads was not specified for /tmp/file and it could not be obtained automatically.  It has been set to 0.
Cluster size has been automatically set to 4096 bytes.
To boot from a device, Windows needs the 'partition start sector', the 'sectors per track' and the 'number of heads' to be set.
Windows will not be able to boot from this device.
Creating NTFS volume structures.
mkntfs completed successfully. Have a nice day.

显然,它不喜欢处理文件。:)不用担心,它在实际磁盘上工作时应该会自动检测大多数值。甚至这个“文件”也可以作为文件系统正常工作:

# mount -t ntfs-3g /tmp/file /mnt
# touch "/mnt/a file in mnt"
# ls -l /mnt
total 0
-rwxrwxrwx 1 root root 0 Aug 29 06:43 a file in mnt
# umount /mnt
# ls -l /mnt
total 0

(看到奇怪的权限了吗?)


笔记:

  1. sudo尚未在此答案中使用任何地方。由于我正在处理文件以及我拥有的文件,因此不需要sudoparted会就此警告您。对于通常总是由拥有的块设备,root您将需要sudo(或必须通过sudo -i或使用根shell sudo su -)。
  2. parted是一个GNU程序,和许多GNU程序一样,具有大量info格式的文档。安装parted-docsudo apt-get install parted-doc),然后运行info parted。您也可以查看在线用户手册
  3. GParted能够将分区格式化为NTFS,因为它可以mkfs直接调用适当的程序(mkntfs在这种情况下- mkfs.ntfs只是指向的链接mkntfs)。它还设置了许多参数。实际上,对于大多数操作,您可以检查GParted消息的详细信息以查看运行了哪些命令。
  4. 我不会介绍GPT与MBR / MSDOS分区表的优点,但是GPT可能会在带有UEFI的新设备上找到,特别是如果您装有Windows 8。分区工具的状态?讨论了面对GPT时可用的工具。
  5. LVM,ZFS和btrfs完全是另一种游戏。它们都有其随附的工具,您应该使用它们而不是partedfdisk(可能不是创建分区以供其使用的初始步骤)。

parted使用注意事项:

parted程序的语法为:

parted [options] [device [command [options...]...]]

parted不使用命令运行时,例如:

parted /tmp/parted

将为您提供一个简单的shell,您可以在其中运行上述命令。但是,这些命令也可以直接使用该parted程序运行。所以这三个是等效的:

# parted /tmp/parted
GNU Parted 2.3
Using /tmp/parted
Welcome to GNU Parted! Type 'help' to view a list of commands.
(parted) mklabel gpt

# parted
GNU Parted 2.3
Using /dev/sda
Welcome to GNU Parted! Type 'help' to view a list of commands.
(parted) select /tmp/parted
Using /tmp/parted
(parted) mklabel gpt

parted /tmp/parted mklabel gpt

还请注意,使用创建分区时parted,分区结束的有用指示是-1s(连字符和“ s”之间为“ 1”)。如果您希望分区从指定的起始位置跨越到磁盘的其余部分,这将很有用。更具体地说,运行

parted /dev/sda -- mkpart primary ext4 3G -1s

将创建一个分区,/dev/sda该分区开始于3G,结束于/dev/sda磁盘的最后一个扇区(即,它从3G到磁盘的整个其余部分)。请注意,这--是必需的,这样才能1s避免将其解释为无效的选项。


恕我直言,gdisk,又名GPT fdisk,优于parted
Ethan Reesor

1
@FireLizzard很棒!请发布详细说明如何使用它的答案。
muru

虽然问题显然是关于如何格式化磁盘的,但您为什么还要提到part和fdisk?您甚至提到自己,无法格式化分区的磁盘。
zunder 2016年

@kreide再次阅读:“还需要有关如何通过终端对驱动器进行分区的信息。”
muru

11

首先,您将了解如何使用fdisk实用程序对硬盘进行实际分区。

Linux仅允许4个主分区。通过细分主分区之一,可以拥有更多的逻辑分区。

只能细分一个主分区。

通过在命令提示符下键入root fdisk设备来启动fdisk。

设备可能类似于/ dev / sda或/ dev / sdb

您需要的基本fdisk命令是:

p print the partition table

n create a new partition

d delete a partition

q quit without saving changes

w write the new partition table and exit

在发出write(w)命令之前,对分区表所做的更改才会生效。

这是一个示例分区表:

Disk /dev/sdb: 64 heads, 63 sectors, 621 cylinders
Units = cylinders of 4032 * 512 bytes

   Device Boot    Start       End    Blocks   Id  System
/dev/sdb1   *         1       184    370912+  83  Linux
/dev/sdb2           185       368    370944   83  Linux
/dev/sdb3           369       552    370944   83  Linux
/dev/sdb4           553       621    139104   82  Linux swap

例:

从shell提示符启动fdisk:

sudo su
fdisk /dev/sdb 

这表明您正在使用SATA控制器上的第二个驱动器。

Command (m for help): p

Disk /dev/hdb: 64 heads, 63 sectors, 621 cylinders
Units = cylinders of 4032 * 512 bytes

That makes for 384Mb per partition. 
Now You get to work.


Command (m for help): n
Command action
   e   extended
   p   primary partition (1-4)
p
Partition number (1-4): 1
First cylinder (1-621, default 1):<RETURN>
Using default value 1
Last cylinder or +size or +sizeM or +sizeK (1-621, default 621): +384M

Next, You set up the partition You want to use for swap:


Command (m for help): n
Command action
   e   extended
   p   primary partition (1-4)
p
Partition number (1-4): 2
First cylinder (197-621, default 197):<RETURN>
Using default value 197
Last cylinder or +size or +sizeM or +sizeK (197-621, default 621): +128M

现在,分区表如下所示:

 Device Boot      Start       End    Blocks   Id  System
/dev/sdb1             1       196    395104   83  Linux
/dev/sdb2           197       262    133056   83  Linux

最后,使第一个分区可引导:

Command (m for help): a
Partition number (1-4): 1

And You make the second partition of type swap:


Command (m for help): t
Partition number (1-4): 2
Hex code (type L to list codes): 82
Changed system type of partition 2 to 82 (Linux swap)      
Command (m for help): p

最终结果:

Disk /dev/sdb: 64 heads, 63 sectors, 621 cylinders
Units = cylinders of 4032 * 512 bytes

   Device Boot    Start       End    Blocks   Id  System
/dev/sdb1   *         1       196    395104+  83  Linux
/dev/sdb2           197       262    133056   82  Linux swap

最后,发出写命令(w)将表写到磁盘上。


mkfs实用程序用于在Linux系统上创建文件系统(ext2,ext3,ext4等)。

您应该将设备名称指定为要在其上创建文件系统的mkfs。

查看可用的文件系统生成器命令

通常在/sbin/、/sbin/fs、/sbin/fs.d、/etc/fs和/ etc等目录中搜索文件系统构建器(mkfs *命令)。

如果找不到,最后它将搜索在PATH变量中找到的目录。

以下列表显示了系统中可用的mkfs *命令。

sudo su
cd /sbin
ls mkfs*

mkfs  mkfs.bfs  mkfs.cramfs  mkfs.ext2  mkfs.ext3  mkfs.ext4  mkfs.ext4dev  
mkfs.minix  mkfs.msdos  mkfs.ntfs  mkfs.vfat

在特定设备上构建文件系统

为了使用mkfs命令构建文件系统,必需的参数是device-filename和filesystem-type,如下所示。

以下示例在/ dev / sdb1分区上创建ext4文件系统。

sudo su
mkfs -t ext4 /dev/sdb1 

mke2fs 1.42 (29-Nov-2011)
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
Stride=0 blocks, Stripe width=0 blocks
1120112 inodes, 4476416 blocks
223820 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=0
137 block groups
32768 blocks per group, 32768 fragments per group
8176 inodes per group
Superblock backups stored on blocks: 
    32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208, 
    4096000

Allocating group tables: done                            
Writing inode tables: done                            
Creating journal (32768 blocks): done
Writing superblocks and filesystem accounting information: done   

请注意,mkfs命令的默认文件系统类型是ext2。

如果不指定“ -t”选项,它将创建ext2文件系统。

另外,您可以使用我们前面讨论的方法来确定您是否具有ext2或ext3或ext4文件系统。


格式化NTFS驱动器

首先,您将需要具有创建NTFS文件系统的能力,因此请安装ntfsprogs:

sudo su 
apt-get install ntfs-3g

其次,删除分区并将其重新创建为NTFS。

sudo su 
umount /dev/sdb1
fdisk /dev/sdb

Options to select:

    ‘d’ to delete the partition
    ‘n’ to create a new partition
    ‘p’ for primary
    ‘1’ for partition number
    ‘Enter’ for first cylinder (default 1)
    ‘Enter’ for last cylinder (default of max size)
    ‘t’ for type
    ‘L’ to list codes, and enter code for HPFS/NTFS. In my case, it’s ‘7’
    ‘w’ to write changes to disk, and exit

umount /dev/sdb1

在最后一步,您卸载了该分区,因为Ubuntu再次为您自动安装了该分区。

现在,您需要创建文件系统。有两种解决方法:不耐烦的方法(快速格式化),或者更好但更长的方法(完整格式)。

快速格式化

这只是分配磁盘空间,而不是将驱动器清零或检查坏扇区。这意味着需要几秒钟。

sudo su 
mkfs.ntfs -f /dev/sdb1

全格式

如果您更关心数据的完整性并且不介意等待,请使用完整格式。

可能需要几个小时才能将大型驱动器归零!

sudo su 
mkfs.ntfs /dev/sdb1
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.