首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 操作系统 > UNIXLINUX >

怎样mount initrd.img文件?mount: you must specify the filesystem type,该如何解决

2012-02-13 
怎样mount initrd.img文件?mount: you must specify the filesystem type我想做一个U盘启动的linux,照处面

怎样mount initrd.img文件?mount: you must specify the filesystem type
我想做一个U盘启动的linux,照处面的步骤进行:
建立initrd.img文件
#   mkdir   -p   /mnt/initrd  
#   cd   /tmp  
#   mkinitrd   /tmp/initrd.gz   2.6.18  
2.解压initrd.img文件,修改启动脚本linuxrc  
#   gunzip   initrd.gz  
#   mount   -o   loop   /tmp/initrd   /mnt/initrd
到这步就出现:mount:   you   must   specify   the   filesystem   type
怎样指定文件系统都无法mount上去,
我也试过生成2.6.18.img文件,
再mv   2.6.18.img   2.6.18.gz
然后再用gunzip解压,也是不行。
到底要怎样才行呢?

[解决办法]
你的文件是cpio文件 不是影像文件
你可以用 file initrd看下 文件类型就可以了
从 Fedora Core 3 开始,默认的 initrd 映像变成了一个经过压缩的 cpio 归档文件。我们不用再使用 loop 设备来将 initrd 作为压缩映像进行挂载,而是可以将其作为 cpio 归档文件来使用

热点排行