Linux 分区格式根据parted

NAME
       parted - a partition manipulation program

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

DESCRIPTION
       parted  is  a  program  to manipulate disk partitions.  It supports multiple partition table formats, including MS-DOS and
       GPT.  It is useful for creating space for new operating systems, reorganising disk usage, and copying  data  to  new  hard
       disks.

       This manual page documents parted briefly.  Complete documentation is distributed with the package in GNU Info format.

OPTIONS
       -h, --help
              displays a help message

       -l, --list
              lists partition layout on all block devices

       -m, --machine
              displays machine parseable output

       -s, --script
              never prompts for user intervention

       -v, --version
              displays the version

       -a alignment-type, --align alignment-type
              Set alignment for newly created partitions, valid alignment types are:

              none   Use the minimum alignment allowed by the disk type.

              cylinder
                     Align partitions to cylinders.

              minimal
                     Use  minimum  alignment  as  given  by the disk topology information. This and the opt value will use layout
                     information provided by the disk to align the logical partition table addresses to actual physical blocks on
                     the  disks.   The  min  value  is  the  minimum alignment needed to align the partition properly to physical
                     blocks, which avoids performance degradation.

              optimal
                     Use optimum alignment as given by the disk topology information. This aligns to a multiple of  the  physical
                     block size in a way that guarantees optimal performance.

COMMANDS
       [device]
              The block device to be used.  When none is given, parted will use the first block device it finds.

       [command [options]]
              Specifies the command to be executed.  If no command is given, parted will present a command prompt.  Possible com‐
              mands are:

              help [command]
                     Print general help, or help on command if specified.

              align-check type partition
                     Check if partition satisfies the alignment constraint of type.  type must be "minimal" or "optimal".

              mklabel label-type
                     Create a new disklabel (partition table) of label-type.  label-type should be one of "aix", "amiga",  "bsd",
                     "dvh", "gpt", "loop", "mac", "msdos", "pc98", or "sun".

              mkpart part-type [fs-type] start end
                     Make  a  part-type partition for filesystem fs-type (if specified), beginning at start and ending at end (by
                     default in megabytes).  part-type should be one of "primary", "logical", or "extended".

              name partition name
                     Set the name of partition to name. This option works only on Mac, PC98, and GPT disklabels. The name can  be
                     placed in quotes, if necessary.

              print  Display the partition table.

              quit   Exit from parted.

              rescue start end
                     Rescue  a  lost partition that was located somewhere between start and end.  If a partition is found, parted
                     will ask if you want to create an entry for it in the partition table.

              rm partition
                     Delete partition.

              select device
                     Choose device as the current device to edit. device should usually be a Linux hard disk device, but  it  can
                     be a partition, software raid device, or an LVM logical volume if necessary.

              set partition flag state
                     Change  the state of the flag on partition to state.  Supported flags are: "boot", "root", "swap", "hidden",
                     "raid", "lvm", "lba", "legacy_boot" and "palo".  state should be either "on" or "off".

              unit unit
                     Set unit as the unit to use when displaying locations and sizes, and for interpreting  those  given  by  the
                     user  when  not  suffixed with an explicit unit.  unit can be one of "s" (sectors), "B" (bytes), "kB", "MB",
                     "MiB", "GB", "GiB", "TB", "TiB", "%" (percentage of  device  size),  "cyl"  (cylinders),  "chs"  (cylinders,
                     heads, sectors), or "compact" (megabytes for input, and a human-friendly form for output).

              toggle partition flag
                     Toggle the state of flag on partition.

              version
                     Display version information and a copyright message.
时间: 2024-10-24 11:33:28

Linux 分区格式根据parted的相关文章

linux 分区格式查看

Linux分区格式查看 两个文件 /etc/fstab 和/etc/mtab /etc/fstab是用来存放文件系统的静态信息的文件,当系统启动的时候. 系统会自动地从这个文件读取信息,并且会自动将此文件中指定的文件系统挂载到指定的目录. /etc/mtab则显示的是已经被挂载的fs的清单文件. 每当 mount 挂载分区.umount 卸载分区,都会动态更新 mtab,mtab 总是保持着当前系统中已挂载的分区信息,fdisk.df 这类程序,必须要读取 mtab 文件,才能获得当前系统中的分

linux分区命令parted的用法

parted的适用场景 创建操作大于2T的分区 一般情况下,我们都是选择使用fdisk工具来进行分区,但是目前在实际生产环境中使用的磁盘空间越来越大,呈TiB级别增长:而常用的fdisk这个工具对分区是有大小限制的,它只能划分小于2T的磁盘,所以在划大于2T磁盘分区的时候fdisk就无法满足要求了:这个时候有2个方法,其一是通过卷管理来实现,其二就是通过parted工具来实现对GPT磁盘进行分区操作:这里我们采用parted的方法来实现管理. parted的2种使用方式 交互式 手动按序交互式的

linux分区之ext2,ext3,ext4,gpt

2013-07-10 12:00:24 标签:ext3 gpt 原创作品,允许转载,转载时请务必以超链接形式标明文章 原始出处 .作者信息和本声明.否则将追究法律责任.http://wushank.blog.51cto.com/3489095/1244191 一.各分区简单介绍: 1.EXT是Linux系统下的一种磁盘分区格式,等同于XP下的FAT/FAT16/FAT32,大家知道安卓是基于Linux系统开发的手机系统,那么同样的就有这些分区格式,平时我们所说的开启a2sd功能,就是在SD卡中分

linux分区之gpt(大于2T的分区)

1.文件系统限制: ext3块尺寸 最大文件尺寸 最大文件系统尺寸1KiB  16GiB  2TiB2KiB  256GiB  8TiB4KiB  2TiB  16TiB8KiB  16TiB  32TiB ext4Extentsext4引进了Extent档案储存方式,以取代ext2/3使用的block mapping方式.Extent指的是一连串的连续实体block,这种方式可以增加大型档案的效率并减少分裂档案.ext4支援的单一Extent, 在单一block为4KB的系统中最高可达128M

Linux学习笔记:Linux分区

磁盘分区格式 – hdx(x为从a-d):IDE硬盘 – sdx(x为a-z):SCSI,SATA,USB硬盘 – xvdx(x为a-z):Xen虚拟机硬盘 磁盘介绍 磁盘使用前要进行分区 磁盘分区分为:主分区.扩展分区.逻辑分区. 一块硬盘最多可以有4个主分区和一个扩展分区,一个扩展分区可以划分为多个逻辑分区. 扩展分区不能用,必须再扩展分区上划分逻辑分区,然后格式化(创建文件系统),然后才能存数据和装系统. 分区介绍 分区模式:3p+1e.2p+1e.1p+1e 设备都放在/dev中,设备都

磁盘基础基础知识(MBR,GPT分区格式)

一,硬盘知识 硬盘接口类型: 并行: IDE: 133MB/s SCSI: 640MB/s 串口: SATA: 6Gbps(字节) SAS: 6Gbps USB: 480MB/s 硬盘结构示意图: 硬盘专业术语: rpm: rotations per minute  磁盘转速单位 head:磁头 =盘面数量   256个    8字节 track:磁道 1024个磁道 cylinder: 柱面  =track *head = 512*63*256=8m secotr: 扇区, 512bytes

linux分区,磁盘系统的管理,文件系统制作

最近又开始重新拾起linux了,因为工作中用的很少,所以看得东西很容易就忘记了. 这几天看了下linux的分区,以及如何制作文件系统等相关命令的用法,下面就按照这个流程来讲一讲,免得自己日后忘记了. 1.分区 磁盘分区,即指定分区的起始和结束柱面.我们在安装linux系统的时候,都会将磁盘划分为独立的几块,这就是分区,柱面是分区的最小单位,柱面由扇区构成,第一个扇区是最重要的,里面有MBR(446byte)和分区表(64byte),扇区大小固定为512byte. 2.文件系统 文件系统是怎么来的

linux 分区 物理卷 逻辑卷

今天我们主要说说分区.格式化.SWAP.LVM.软件RAID的创建哈~ 格式化 查看当前分区:fdisk   -l 这个命令我们以前是讲过的,我现在问下,ID那项是什么意思? 83 是代表EXT2和EXT3 82 是代表SWAP分区 硬盘结构我们就不讲了,相信大家都有基础.我们就直接进入操作 LINUX分区使用的工具是FDISK 对系统的第一个硬盘分区#fdisk   /dev/sda 如果是对第二个硬盘分区,就是fdisk /dev/sdb 大家运行这个命令:#fdisk   /dev/sda

Linux 分区 磁盘分区与格式化

分区模式之MBR分区   对应的分区类型是 msdos 主分区不超过四个 当个容量最大2TB GPT 分区 主分区个数和分区容量几乎没有限制 MBR 分区 : 使用fdisk 分区 parted 分区工具 两种分区模式都可以分区 fdisk -l 可以查看 不同磁盘的使用情况 fdisk 分区工具: 只能给 MBR模式分区 parted  有帮助信息 如何切换目标磁盘 : select 设备 select /dev/sdc 选择分区类型 : mklabel gpt  (这是选择硬盘分区表类型)