国内最全IT社区平台 联系我们 | 收藏本站
华晨云阿里云优惠2
您当前位置:首页 > php开源 > 综合技术 > 基于现有的Linux LiveCD加入自己的内核和ramfs

基于现有的Linux LiveCD加入自己的内核和ramfs

来源:程序员人生   发布时间:2015-03-09 08:20:16 阅读次数:3231次

原LiveCD:install-amd64-minimal⑵0130711.iso (gentoo)

工作系统:CentOS


1.复制原LiveCD的内容:

[root@localhost Downloads]# mkdir /mnt/livecd [root@localhost Downloads]# mkdir /mnt/img [root@localhost Downloads]# mount -t iso9660 -o loop install-amd64-minimal⑵0130711.iso /mnt/livecd/ mount: /dev/loop0 is write-protected, mounting read-only <pre name="code" class="html">[root@localhost Downloads]# cp -r /mnt/livecd/* /mnt/img


2.切换到/mnt/img, 查看1下/mnt/img下面的内容。

[root@localhost img]# ls gentoo.efimg image.squashfs livecd README.txt gentoo.efimg.mountPoint isolinux

3.把自己的内核和ramfs放入到isolinux文件夹里。这里内核是bzImage, ramfs是ramfs.tar.gz

[root@localhost img]# ls isolinux/ boot.cat elilo.efi F4.msg F7.msg isolinux.bin memtest86 boot.msg F2.msg F5.msg gentoo isolinux.cfg ramfs.tar.gz bzImage F3.msg F6.msg gentoo.igz kernels.msg System.map-gentoo

4.修改isolinux.cfg, 加入1项启动(其中append那1项,可以根据自己需要来增减参数):

label hello-test kernel bzImage append root=/dev/ram init=/linuxrc initrd=ramfs.tar.gz

5.回到img,制作自己的iso文件

mkisofs -R -b isolinux/isolinux.bin -c isolinux/boot.cat -o /tmp/test.iso -V "test Linux" -no-emul-boot -boot-load-size 4 -boot-info-table .

6.把test.iso直接用虚拟机,或刻录下去,进入启动界面时,按TAB键,可以看到hello-test这1项,输入它,启动:



生活不易,码农辛苦
如果您觉得本网站对您的学习有所帮助,可以手机扫描二维码进行捐赠
程序员人生
------分隔线----------------------------
分享到:
------分隔线----------------------------
关闭
程序员人生