fdisk新建磁盘,删除磁盘,格式化磁盘

1.虚拟机添加磁盘

FINSH 现在开启虚拟机,开启linux。

运行命令

fdisk -l                查看磁盘信息

[root@centos ~]# fdisk -l

Disk /dev/sda: 10.7 GB, 10737418240 bytes

255 heads, 63 sectors/track, 1305 cylinders

Units = cylinders of 16065 * 512 = 8225280 bytes

Sector size (logical/physical): 512 bytes / 512 bytes

I/O size (minimum/optimal): 512 bytes / 512 bytes

Disk identifier: 0x0006062b

   Device Boot      Start         End      Blocks   Id  System

/dev/sda1   *           1          64      512000   83  Linux

Partition 1 does not end on cylinder boundary.

/dev/sda2              64        1306     9972736   8e  Linux LVM

Disk /dev/sdb: 5368 MB, 5368709120 bytes

255 heads, 63 sectors/track, 652 cylinders

Units = cylinders of 16065 * 512 = 8225280 bytes

Sector size (logical/physical): 512 bytes / 512 bytes

I/O size (minimum/optimal): 512 bytes / 512 bytes

Disk identifier: 0x00000000

Disk /dev/mapper/vg_centos-lv_root: 8095 MB, 8095006720 bytes

255 heads, 63 sectors/track, 984 cylinders

Units = cylinders of 16065 * 512 = 8225280 bytes

Sector size (logical/physical): 512 bytes / 512 bytes

I/O size (minimum/optimal): 512 bytes / 512 bytes

Disk identifier: 0x00000000

                                                 

Disk /dev/mapper/vg_centos-lv_swap: 2113 MB, 2113929216 bytes

255 heads, 63 sectors/track, 257 cylinders

Units = cylinders of 16065 * 512 = 8225280 bytes

Sector size (logical/physical): 512 bytes / 512 bytes

I/O size (minimum/optimal): 512 bytes / 512 bytes

Disk identifier: 0x00000000

运行命令

fdisk                 查看fdisk使用方法

[root@centos ~]# fdisk

Usage:

 fdisk [options] <disk>    change partition table

 fdisk [options] -l <disk> list partition table(s)

 fdisk -s <partition>      give partition size(s) in blocks

Options:

 -b <size>                 sector size (512, 1024, 2048 or 4096)

 -c                        switch off DOS-compatible mode

 -h                        print help

 -u <size>                 give sizes in sectors instead of cylinders

 -v                        print version

 -C <number>               specify the number of cylinders

 -H <number>               specify the number of heads

 -S <number>               specify the number of sectors per track

给/dev/sdb新建分区表

 运行 fdisk /dev/sdb 进入

Device contains neither a valid DOS partition table, nor Sun, SGI or OSF disklabel

Building a new DOS disklabel with disk identifier 0x4e7de0c7.

Changes will remain in memory only, until you decide to write them.

After that, of course, the previous content won't be recoverable.

Warning: invalid flag 0x0000 of partition table 4 will be corrected by w(rite)

WARNING: DOS-compatible mode is deprecated. It's strongly recommended to

         switch off the mode (command 'c') and change display units to

         sectors (command 'u').

Command (m for help):

这时候我们键入 m 获取使用帮助

Command (m for help): m

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)

新建分区 我们键入 n

Command (m for help): n

Command action

   e   extended

   p   primary partition (1-4)

我们建立一个主分区 键入 p

p

Partition number (1-4):

输入 1 ,建立第一个主分区

First cylinder (1-652, default 1): 

输入1,表示从磁盘开始分区,或者直接按enter

Last cylinder, +cylinders or +size{K,M,G} (1-652, default 652):

按enter,表示整块磁盘整体作为第一块主分区

这是输入p 查看分区表是否分区成功

Command (m for help): p

Disk /dev/sdb: 5368 MB, 5368709120 bytes

255 heads, 63 sectors/track, 652 cylinders

Units = cylinders of 16065 * 512 = 8225280 bytes

Sector size (logical/physical): 512 bytes / 512 bytes

I/O size (minimum/optimal): 512 bytes / 512 bytes

Disk identifier: 0x4e7de0c7

   Device Boot      Start         End      Blocks   Id  System

/dev/sdb1               1         652     5237158+  83  Linux

很明显分区成功,这时候我们就要保存一下了,输入 w

Command (m for help): w

The partition table has been altered!

Calling ioctl() to re-read partition table.

Syncing disks.

这时候我们退出来了,再次运行

fdisk -l   查看一下

[root@centos ~]# fdisk -l

Disk /dev/sda: 10.7 GB, 10737418240 bytes

255 heads, 63 sectors/track, 1305 cylinders

Units = cylinders of 16065 * 512 = 8225280 bytes

Sector size (logical/physical): 512 bytes / 512 bytes

I/O size (minimum/optimal): 512 bytes / 512 bytes

Disk identifier: 0x0006062b

   Device Boot      Start         End      Blocks   Id  System

/dev/sda1   *           1          64      512000   83  Linux

Partition 1 does not end on cylinder boundary.

/dev/sda2              64        1306     9972736   8e  Linux LVM

Disk /dev/sdb: 5368 MB, 5368709120 bytes

255 heads, 63 sectors/track, 652 cylinders

Units = cylinders of 16065 * 512 = 8225280 bytes

Sector size (logical/physical): 512 bytes / 512 bytes

I/O size (minimum/optimal): 512 bytes / 512 bytes

Disk identifier: 0x4e7de0c7

   Device Boot      Start         End      Blocks   Id  System

/dev/sdb1               1         652     5237158+  83  Linux

Disk /dev/mapper/vg_centos-lv_root: 8095 MB, 8095006720 bytes

255 heads, 63 sectors/track, 984 cylinders

Units = cylinders of 16065 * 512 = 8225280 bytes

Sector size (logical/physical): 512 bytes / 512 bytes

I/O size (minimum/optimal): 512 bytes / 512 bytes

Disk identifier: 0x00000000

Disk /dev/mapper/vg_centos-lv_swap: 2113 MB, 2113929216 bytes

255 heads, 63 sectors/track, 257 cylinders

Units = cylinders of 16065 * 512 = 8225280 bytes

Sector size (logical/physical): 512 bytes / 512 bytes

I/O size (minimum/optimal): 512 bytes / 512 bytes

Disk identifier: 0x00000000

新建一个文件夹,把磁盘挂载上去,看看是否能用了吧。哈哈。

[root@centos ~]# mount /dev/sdb1 /root/newblock/

mount: you must specify the filesystem type

发现挂载不成功,说格式不支持,原因我们还没有格式化

运行   mkfs.ext3 /dev/sdb1   格式化 

[root@centos ~]# mkfs.ext3 /dev/sdb1

mke2fs 1.41.12 (17-May-2010)

Filesystem label=

OS type: Linux

Block size=4096 (log=2)

Fragment size=4096 (log=2)

Stride=0 blocks, Stripe width=0 blocks

327680 inodes, 1309289 blocks

65464 blocks (5.00%) reserved for the super user

First data block=0

Maximum filesystem blocks=1342177280

40 block groups

32768 blocks per group, 32768 fragments per group

8192 inodes per group

Superblock backups stored on blocks:

        32768, 98304, 163840, 229376, 294912, 819200, 884736

Writing inode tables: done

Creating journal (32768 blocks): done

Writing superblocks and filesystem accounting information: done

This filesystem will be automatically checked every 20 mounts or

180 days, whichever comes first.  Use tune2fs -c or -i to override.

格式化完后应该先检错,确保没错在进行使用:

输入  e2fsck /dev/sdb1  开始检错

[root@centos ~]# e2fsck /dev/sdb1

e2fsck 1.41.12 (17-May-2010)

/dev/sdb1: clean, 13/327680 files, 55936/1309289 blocks

或者输入 e2fsck -p /dev/sdb1  在检错的同时,如果发现错误,自动修复 

[root@centos ~]# e2fsck -p /dev/sdb1

/dev/sdb1: clean, 13/327680 files, 55936/1309289 blocks

再把磁盘挂载上去看看

[root@centos ~]# mount /dev/sdb1 /root/newblock/

[root@centos ~]# cd /root/newblock/

[root@centos newblock]# mkdir abc

[root@centos newblock]# touch hello

[root@centos newblock]# ls

abc  hello  lost+found

查看划分好的分区的详细信息

输入tune2fs  -l /dev/sdb1

[root@centos ~]# tune2fs  -l /dev/sdb1

tune2fs 1.41.12 (17-May-2010)

Filesystem volume name:   <none>

Last mounted on:          <not available>

Filesystem UUID:          ba22af8f-1a2d-46b3-b31e-8d0d2cd6f9ac

Filesystem magic number:  0xEF53

Filesystem revision #:    1 (dynamic)

Filesystem features:      has_journal ext_attr resize_inode dir_index filetype s                                          parse_super large_file

Filesystem flags:         signed_directory_hash

Default mount options:    (none)

Filesystem state:         clean

Errors behavior:          Continue

Filesystem OS type:       Linux

Inode count:              327680

Block count:              1309289

Reserved block count:     65464

Free blocks:              1253353

Free inodes:              327667

First block:              0

Block size:               4096

Fragment size:            4096

Reserved GDT blocks:      319

Blocks per group:         32768

Fragments per group:      32768

Inodes per group:         8192

Inode blocks per group:   512

Filesystem created:       Fri Jun 14 22:52:36 2013

Last mount time:          Fri Jun 14 22:53:56 2013

Last write time:          Sat Jun 15 00:34:33 2013

Mount count:              1

Maximum mount count:      20

Last checked:             Fri Jun 14 22:52:36 2013

Check interval:           15552000 (6 months)

Next check after:         Wed Dec 11 22:52:36 2013

Reserved blocks uid:      0 (user root)

Reserved blocks gid:      0 (group root)

First inode:              11

Inode size:               256

Required extra isize:     28

Desired extra isize:      28

Journal inode:            8

Default directory hash:   half_md4

Directory Hash Seed:      a8bab9cc-8a0f-4434-a7df-87a7d0ea3adb

Journal backup:           inode blocks

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值