[root@localhost ~]# fdisk /dev/sdb …省略部分输出… Command (m for help): n #建立新分区 Command action l logical (5 or over) #由于在前面章节中,扩展分区已经建立,所以这里变成了l(logic) p primary partition (1-4) l #建立逻辑分区 First cylinder (655-2610, default 655): #不用指定分区号,默认会从5开始分配,所以直接选择起始
[root@localhost ~]# fdisk /dev/sdb …省略部分输出… Command (m for help): n #新建立分区 Command action e extended p primary partition (1-4) e #这次建立扩展分区 Partition number (1-4): 2 #给扩展分区指定分区号2 First cylinder (655-2610, default 655): #扩展分区的起始柱面.上节建立的主分区1已经占用了1~654个柱
Cat (串联) 命令是Linux/Unix开源系统中比较常用的一个命令.我们可以通过Cat命令创建一个或多个文件,查看文件内容,串联文件并将内容输出到终端设备或新的文件当中,这篇文章我们将会以实例的方式讲解Linux中cat命令一些简便的用法. The cat (short for "concatenate") command is one of the most frequently used command in Linux/Unix like operating systems