---恢复内容开始---

MKFS(8)                                                                MKFS(8)
NAME/名称
       mkfs - build a Linux file system
    构建Linux文件系统
SYNOPSIS/简介
       mkfs [ -V ] [ -t fstype ] [ fs-options ] filesys [ blocks ]
DESCRIPTION/描述
       mkfs is used to build a Linux file system on a device, usually a hard disk partition.  filesys is the device name (e.g.  /dev/hda1, /dev/sdb2).  blocks is the num-
       ber of blocks to be used for the file system.
    mkfs用于在设备(通常是硬盘分区)上构建Linux文件系统。filesys是设备名(例如/dev/hda1、/dev/sdb2)。Blocks是用于文件系统的块数。
       The exit code returned by mkfs is 0 on success and 1 on failure.
    mkfs返回的退出代码成功时为0,失败时为1。
       In actuality, mkfs is simply a front-end for the various file system builders (mkfs.fstype) available under Linux.  The file system-specific  builder  is  searched
       for in a number of directories like perhaps /sbin, /sbin/fs, /sbin/fs.d, /etc/fs, /etc (the precise list is defined at compile time but at least contains /sbin and
       /sbin/fs), and finally in the directories listed in the PATH environment variable.  Please see the file system-specific builder manual pages for further details.
    实际上,mkfs只是Linux下可用的各种文件系统构建器(mkfs.fstype)的前端。文件系统特定的生成器在许多目录中进行搜索,
    例如/sbin、/sbin/fs、/sbin/fs.d、/etc/fs,/etc(精确的列表在编译时定义,但至少包含/sbin和/sbin/fs),
    最后在path环境变量中列出的目录中进行搜索。有关详细信息,请参阅文件系统特定的生成器手册页。
OPTIONS/选项
       -V     Produce verbose output, including all file system-specific commands that are executed.  Specifying this option more than once inhibits execution of any file
              system-specific commands.  This is really only useful for testing.
     生成详细输出,包括所有执行的文件系统特定命令。多次指定此选项将禁止执行任何特定于文件系统的命令。这只对测试有用。
       -t fstype
              Specifies the type of file system to be built.  If not specified, the default file system type (currently ext2) is used.
     指定要生成的文件系统的类型。如果未指定,则使用默认的文件系统类型(当前为ext2)。
       fs-options
              File system-specific options to be passed to the real file system builder.  Although not guaranteed, the following options are supported by most file system
              builders.
     要传递给真实文件系统生成器的文件系统特定选项。尽管没有保证,但大多数文件系统构建器都支持以下选项。
       -c     Check the device for bad blocks before building the file system.
     在构建文件系统之前,请检查设备是否存在坏块。
       -l filename
              Read the bad blocks list from filename
     从文件名读取坏块列表
       -v     Produce verbose output.
           生成详细输出
BUGS/漏洞
       All generic options must precede and not be combined with file system-specific options.  Some file system-specific programs do not support the -v (verbose) option,
       nor  return  meaningful  exit  codes.   Also, some file system-specific programs do not automatically detect the device size and require the blocks parameter to be
       specified.
    所有常规选项都必须在前面,不能与特定于文件系统的选项组合使用。某些特定于文件系统的程序不支持-v(verbose)选项,也不返回有意义的退出代码。
    此外,某些特定于文件系统的程序不会自动检测设备大小,并且需要指定blocks参数。
AUTHORS/作者
       David Engel (david@ods.com)
       Fred N. van Kempen (waltje@uwalt.nl.mugnet.org)
       Ron Sommeling (sommel@sci.kun.nl)
       The manual page was shamelessly adapted from Remy Card?. version for the ext2 file system.
SEE ALSO/参照
       fs(5),  badblocks(8),  fsck(8),  mkdosfs(8),  mke2fs(8),  mkfs.bfs(8),  mkfs.ext2(8),  mkfs.ext3(8),  mkfs.minix(8),  mkfs.msdos(8),   mkfs.vfat(8),   mkfs.xfs(8),
       mkfs.xiafs(8)
Version 1.9                        Jun 1995                            MKFS(8)

---恢复内容结束---

man mkfs的更多相关文章

  1. 分区格式化mkfs

    mkfs —  build a Linux filesystem 用法举例: mkfs.ext3  /dev/sdb1 #把sdb1格式化为ext3文件系统 也可以写成 mkfs -t ext3 /d ...

  2. 【linux磁盘分区--格式化】fdisk,parted,mkfs.ext3

    磁盘分区完成后,一般就需要对分区进行格式化 磁盘分区命令主要有两个: fdisk :最大支持不超过2T分区: parted :支持GPT,适用于大容量分区: 分区指令的选择: 在RHEL系统上,用fd ...

  3. 【转】linux之mkfs/mke2fs格式化

    转自:http://blog.csdn.net/andyhooo/article/details/5321584 mkfs [root@www ~]# mkfs [-t 檔案系統格式] 裝置檔名 選項 ...

  4. linux mkfs命令参数及用法详解---linux格式化文件系统命令(包括swap分区)

    mkfs 命令  linux格式化磁盘命令           linux mkfs         指令:mkfs 使用权限 : 超级使用者 使用方式 : mkfs [-V] [-t fstype] ...

  5. mkfs 的使用

    使用方法: [root@localhost beinan]# mkfs -t 文件系统  存储设备 注:这里的文件系统是要指定的,比如 ext3 :reiserfs :ext2 :fat32 :msd ...

  6. LVM pvcreate,vgcreate,lvcreate,mkfs

    首先介绍LVM的几个概念:     1. 物理卷Physical volume (PV):可以在上面建立卷组的媒介,可以是硬盘分区,也可以是硬盘本身或者回环文件(loopback file).物理卷包 ...

  7. mkfs -t ext3 错误/dev/sdxx is apparently in use by the system; 解决方法

     在存储上共享了一个500G的空间,映射到Linux系统提供上,环境由2个节点组成. 一. 测试一: 直接mount 用fdisk 格式化之后如下: [root@rac1 u01]# fdisk ...

  8. linux下磁盘分区详解 图文(fdisk;mkfs)

    linux分区不同于windows,linux下硬盘设备名为(IDE硬盘为hdx(x为从a-d)因为IDE硬盘最多四个,SCSI,SATA,USB硬盘为sdx(x为a-z)),硬盘主分区最多为4个,不 ...

  9. Linux磁盘 - fdisk,partprobe, mkfs, mke2fs, fsck, badblocks, mount, mknod

    磁盘分区: fdisk [root@www ~]# fdisk [-l] 装置名称 选项与参数: -l :输出后面接的装置所有的 partition 内容.若仅有 fdisk -l 时, 则系统将会把 ...

  10. mkfs.ext4快速格式化大容量硬盘

    安装ext4: yum -y install e4fsprogs 使用如下命令可以快速格式化大容量硬盘: mkfs.ext4 -T largefile /dev/xxx

随机推荐

  1. leetcode-mid-Linked list- 230 Kth Smallest Element in a BST

    mycode  81.40% # Definition for a binary tree node. # class TreeNode(object): # def __init__(self, x ...

  2. hbase的API

    import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.hbase.*; import org.apache.had ...

  3. (转)http://blog.chinaunix.net/uid-8363656-id-2031644.html CGI 编写

    第一章:基础的基础 回CGI教程目录 1.1 为什么使用CGI?   我没有把什么是CGI放在基础篇的第一段,是因为实在很难说明白到底什么是CGI.而如果你先知道CGI有什么作用,将会很好的理解CGI ...

  4. JavaSE编码试题强化练习7

    1.编写应用程序,创建类的对象,分别设置圆的半径.圆柱体的高,计算并分别显示圆半径.圆面积.圆周长,圆柱体的体积. /** * 圆类 */ public class Circle { /** * 类属 ...

  5. SpringBoot 使用Mybatis+MySql

    pom配置 <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http: ...

  6. IDEA创建SpringBoot+maven项目

    1.创建项目: 2.选择spring Initializr,注意要选择jdk,使用默认的spring.io这样就不用再去写pom文件了 3.输入项目名称: 4.选择Spring Web 5.目录结构:

  7. 牛客练习赛51 C 勾股定理https://ac.nowcoder.com/acm/contest/1083/C

    题目描述 给出直角三角形其中一条边的长度n,你的任务是构造剩下的两条边,使这三条边能构成一个直角三角形. 输入描述: 一个整数n. 输出描述: 另外两条边b,c.答案不唯一,只要输出任意一组即为合理, ...

  8. 中国剩余定理(CRT) & 扩展中国剩余定理(ExCRT)总结

    中国剩余定理(CRT) & 扩展中国剩余定理(ExCRT)总结 标签:数学方法--数论 阅读体验:https://zybuluo.com/Junlier/note/1300035 前置浅讲 前 ...

  9. js—input框中输入数字,动态生成内容的方法

    项目中需要在前端实现: 用户输入数字n,动态生成n个元素,删除n,自动清空n个元素(如图一): 用户输入数字n,失焦生成n个元素,再聚焦修改n,自动清空n个元素(如图二): 图一: 图二: 需求一实现 ...

  10. hash和history

    location.hash="aaa" history.pushState({},'', "home") history.replaceState() hist ...