爬行的蜗牛

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
热搜: golang Linux PHP
查看: 932|回复: 0

Linux fdisk 命令

[复制链接]

94

主题

36

回帖

849

积分

管理员

积分
849
发表于 2024-4-29 21:43:12 | 显示全部楼层 |阅读模式
Linux fdisk 是一个创建和维护分区表的程序,它兼容 DOS 类型的分区表、BSD 或者 SUN 类型的磁盘列表。

语法fdisk [必要参数][选择参数]
必要参数:
  • -l 列出素所有分区表
  • -u 与 -l 搭配使用,显示分区数目
选择参数:
  • -s<分区编号> 指定分区
  • -v 版本信息
菜单操作说明

  • m :显示菜单和帮助信息
  • a :活动分区标记/引导分区
  • d :删除分区
  • l :显示分区类型
  • n :新建分区
  • p :显示分区信息
  • q :退出不保存
  • t :设置分区号
  • v :进行分区检查
  • w :保存修改
  • x :扩展应用,高级功能
    实例
    显示当前分区情况:
    1. # fdisk -l

    2. Disk /dev/sda: 10.7 GB, 10737418240 bytes
    3. 255 heads, 63 sectors/track, 1305 cylinders
    4. Units = cylinders of 16065 * 512 = 8225280 bytes

    5.   Device Boot   Start     End   Blocks  Id System
    6. /dev/sda1  *      1     13   104391  83 Linux
    7. /dev/sda2       14    1305  10377990  8e Linux LVM

    8. Disk /dev/sdb: 5368 MB, 5368709120 bytes
    9. 255 heads, 63 sectors/track, 652 cylinders
    10. Units = cylinders of 16065 * 512 = 8225280 bytes

    11. Disk /dev/sdb doesn't contain a valid partition table
    复制代码

    显示SCSI硬盘的每个分区情况
    1. # fdisk -lu  

    2. Disk /dev/sda: 10.7 GB, 10737418240 bytes
    3. 255 heads, 63 sectors/track, 1305 cylinders, total 20971520 sectors
    4. Units = sectors of 1 * 512 = 512 bytes

    5.   Device Boot   Start     End   Blocks  Id System
    6. /dev/sda1  *     63   208844   104391  83 Linux
    7. /dev/sda2     208845  20964824  10377990  8e Linux LVM

    8. Disk /dev/sdb: 5368 MB, 5368709120 bytes
    9. 255 heads, 63 sectors/track, 652 cylinders, total 10485760 sectors
    10. Units = sectors of 1 * 512 = 512 bytes

    11. Disk /dev/sdb doesn't contain a valid partition table
    复制代码


您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

快速回复 返回顶部 返回列表