Chinaunix首页 | 论坛 | 博客
  • 博客访问: 225891
  • 博文数量: 32
  • 博客积分: 2318
  • 博客等级: 大尉
  • 技术积分: 298
  • 用 户 组: 普通用户
  • 注册时间: 2008-03-14 01:07
个人简介

新博客: http://qinchuan.me

文章分类
文章存档

2012年(2)

2011年(7)

2010年(6)

2009年(8)

2008年(9)

分类: LINUX

2011-09-14 10:16:58

by Vivek Gite on December 20, 2007 · 

Q. I'm using CentOS Linux and I'd like to create bootable Linux CD for the same. How do I create an installation boot disk?

A. You need to find images/ directory located on CentOS / Fedora / RHEL or any other Linux distribution. This directory contains image files that can be used to create media capable of starting the Linux installation process.

More about images
  • boot.iso - The boot.iso file is an ISO 9660 image of a bootable CD-ROM. It is useful in cases where the CD-ROM installation method is not desired, but the CD-ROM's boot speed would be an advantage. To use this image file, burn the file onto CD-R (or CD-RW) media as you normally would.
  • diskboot.img - The diskboot.img file is a VFAT filesystem image that can be written to a USB pendrive or other bootable media larger than a floppy. Note that booting via USB is dependent on your BIOS supporting this. It should be written to the device using dd.
Step # 1: Copy boot.iso to /tmp

Type the following command,
# cp boot.iso /tmp
Unmount cdrom
# cd; eject

Step # 2: Insert blank CD R/RW media

Find device name:
# cdrecord -scanbus
Write /tmp/boot.iso to blank cd, enter:
# cdrecord -v -dao dev=1,0,0 /tmp/boot.iso
Replace 1,0,0 with your actual device name obtained using cdrecord -scanbus command. See how to burn ISO images to Cds and CD-RWs under Linux for more information.

Write diskboot.img to floppy

This is optional and use the dd command to copy the image to the floppy / usb pen:
# dd if=diskboot.img of=/dev/fd0 bs=1440k


阅读(1785) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~