Using fdisk to create a partition

1.Type fdisk -l to view a list of all the partitions on all hard drives. Notice the empty hard drive (/dev/sdb) where no partitions are defined. 


Linux分区管理


2.Type fdisk /dev/sdb to open the Linux fdisk program with the second hard drive as the target. 


Linux分区管理
3.Type n to create a new partition on the drive. 


Linux分区管理
4.Type p to designate the new partition as a primary partition. e can be selected if an extended partition needs to be created. 


Linux分区管理
5.Type 1 to create the first partition on the hard disk. To create other partitions, type the appropriate number. 


Linux分区管理
6.Type 1 to start the new partition on the first hard drive cylinder. When adding more partitions, the first cylinder available will be the default. 


Linux分区管理
7.Type 1 and press [Enter] to start the new partition on the first hard drive cylinder. When adding more partitions, the first available cylinder will be the default. Type in the last cylinder or define the size of the new partition by typing +500M for a 500mb partition. Substitute the number for your desired partition size. Press [Enter] when finished. 


Linux分区管理
8.Type t to set the partition type. 


Linux分区管理
9.Type 1 to signify the partition that needs the partition type assigned. Next, type the hex partition identifier for the new partition. Type L to get a list of available partition types, if the partition hex number isn't known. 


Linux分区管理
10.Notice that the Linux native partition type is 83 and the Linux swap partition type is 82. 


Linux分区管理
11.Type 83 to set the partition hex code to Linux native. 


Linux分区管理
12.Type w to write the new partition information to the MBR of the hard drive. 
 
The partition configuration in fdisk is done in memory. Nothing is written to the MBR of the hard drives until the w command is issued.


Linux分区管理


Creating a Filesystem

13.Type mkfs -t ext2 /dev/sdb1 to create an ext2 filesystem on the first partition of the second hard drive. Substitute the drive and partition numbers if working with a partition other than /dev/sdb1. 
 
Converting to ext3 - a partition must be an ext2 partition before converting it to ext3. After creating the ext2 partition, type tune2fs -j [device-partition]. This will convert the partition to ext3. From this point on, the partition will need to be mounted as ext3 for journaling functionality.


Linux分区管理
14.Type mkdir /mnt/data to create a new mount point for the new partition. 


Linux分区管理
15.Type mount /dev/sdb1 /mnt/data to mount the partition. Substitute the drive, partition numbers and mount point if working with a partition other than /dev/sdb1 and /mnt/data. 


Linux分区管理
16.Add an entry in the /etc/fstab file to mount the partition automatically on bootup. 


Linux分区管理

NOTE:The source of the blog can't be found.

转载于:https://www.cnblogs.com/owenyang/archive/2012/12/17/3579073.html

相关文章:

  • 2021-08-28
  • 2022-12-23
  • 2021-08-29
  • 2021-09-08
  • 2021-11-03
  • 2021-09-27
  • 2021-11-22
  • 2021-11-05
猜你喜欢
  • 2021-06-02
  • 2021-12-30
  • 2021-11-03
  • 2021-11-03
相关资源
相似解决方案