[10-20 18:28:36] 来源:http://www.67xuexi.com 电脑常识 阅读:85326次
4096000
Writing inode tables: done
Creating journal (32768 blocks): done
Writing superblocks and filesystem accounting information: done
This filesystem will be automatically checked every 33 mounts or
180 days, whichever comes first. Use tune2fs -c or -i to override.
到此,分区就创建成功了,这个需要只需要将其挂载到指定的目录即可:
mount /dev/sdb2 /aaa
当然为了能够在下次启动的时候,让其自动挂载,我们需要在分区表中加入如下信息:
/dev/sdb2 /aaa ext3 defaults 1 2
分区表的文件位于:/etc/fstab
通过df命令就可以看到我们挂载后的分区了,至此分区成功完成。