1、安装格式工具mkfs.ext4,格式化文件系统为ext4,参考:http://ext4.wiki.kernel.org/index.php/Ext4_Howto
碰到下面的问题
mount -t ext4 /dev/sdb1 /mnt
mount: unknown filesystem type 'ext4'
怎么回事?内核不支持?还是?
确认一下是否真的没有编译成支持ext4文件系统的内核
# grep EXT4 /usr/src/kernels/linux- 2.6 . 30 /.config
|
CONFIG_EXT4_FS is not set
|
# cd /usr/src/kernels/linux- 2.6 . 30 /
|
# vi .config |
修改为: |
CONFIG_EXT4_FS=y |
重新编译安装,重启系统,挂载ext4格式即可。
参考:http://blog.chinaunix.net/u3/96497/showart_1926632.html
http://hi.chinaunix.net/?uid-20754091-action-viewspace-itemid-25189