高手指教: 哪里有支持SCSI硬盘的LINUX引导软盘(下载)?

tccb 2002-06-26 12:34:30
如题
...全文
95 19 打赏 收藏 转发到动态 举报
写回复
用AI写文章
19 条回复
切换为时间正序
请发表友善的回复…
发表回复
tccb 2002-09-25
  • 打赏
  • 举报
回复
try ...
more ?
9310guo 2002-09-20
  • 打赏
  • 举报
回复
http://riksun.riken.go.jp/archives/slackware/slackware-8.1/bootdisks/
以.s结尾的镜像文件都是支持scsi的,
安装请看http://riksun.riken.go.jp/archives/slackware/slackware-8.1/Slackware-HOWTO
slackware的安装需要两张盘boot和root。
tccb 2002-09-20
  • 打赏
  • 举报
回复
wait ...
tccb 2002-09-12
  • 打赏
  • 举报
回复
wait ...
tccb 2002-09-11
  • 打赏
  • 举报
回复
wait ...
blh 2002-09-08
  • 打赏
  • 举报
回复
够呛
tccb 2002-09-08
  • 打赏
  • 举报
回复
wait ...
tccb 2002-08-31
  • 打赏
  • 举报
回复
wait 。。。
tccb 2002-07-24
  • 打赏
  • 举报
回复
wait 。。。
daehappy 2002-07-21
  • 打赏
  • 举报
回复
up!gz!
tccb 2002-07-19
  • 打赏
  • 举报
回复
一张软盘的linux系统(或是别的什么系统),可以mount scsi硬盘的sco unix分区
tccb 2002-07-19
  • 打赏
  • 举报
回复
一张软盘的linux系统,并且可以mount SCSI硬盘 。。。
lfh77 2002-07-08
  • 打赏
  • 举报
回复
有一个LRP工程,找一找看。
tccb 2002-07-01
  • 打赏
  • 举报
回复
我的意思是说:支持SCSI硬盘的软盘linux系统.只要软盘就可以引导和启动linux系统.
zhenshi 2002-06-26
  • 打赏
  • 举报
回复
mkbootdisk --device /dev/fd0 2.2.12-20
(用你的内核版本代替2.2.12-20,可用uname -a查看)
应该可以。
qxp 2002-06-26
  • 打赏
  • 举报
回复
步骤:
fdformat /dev/fd0h1440 (低级格式化软盘)
/sbin/mkfs.minix /dev/fd0 1440 (在软盘上创建minix文件系统)
/bin/mount /dev/fd0 /mnt/floppy (安装软盘到/mnt/floppy目录)

cd /mnt/floppy
mkdir boot etc dev

cp -a /boot/vmlinuz /boot/initrd.img /boot/boot.b boot/

注:用你的内核文件名代替vmlinuz
用你的initrd映像文件名代替initrd.img

cp -a /dev/fd0 /dev/null /dev/zero /dev/hd[abcd]* /dev/sd[abcd]* dev/

注: 如果你没有SCSI设备,可不用拷贝/dev/sd[abcd]*

创建/mnt/floppy/etc/lilo.conf如下

boot=/dev/fd0
read-only
prompt
image = /boot/vmlinuz
initrd=/boot/initrd.img
root = /dev/sda1 # 把/dev/sda1换成你的根文件系统设备名称
label = linux

最后运行 lilo -r /mnt/floppy 在软盘上安装LILO (将自动生成/boot/map文件包括内
核的物理映像位置)

4. 剖析initrd.img

如果你是用SCSI硬盘启动,内核必须能装入SCSI驱动程序才能转入你的硬盘根文件系统引
导系统。
如果你的内核没有编译进SCSI驱动程序,则需要用mkinitrd创建RAM驱动映像

想知道你的initrd.img中包含了哪些驱动程序吗?

cat initrd.img | gunzip > /tmp/myinitrdfs
mkdir /mnt/tmp
mount -o loop -t ext2 /tmp/myinitrdfs /mnt/tmp

然后查看/mnt/tmp中的文件linuxrc中的内容即可知道启动时会装入哪些驱动程序

你也可以更改其中的内容,假设我们想加另一种SCSI驱动aic7xxx.o进入你的initrd.img


cd /mnt/tmp
vi linuxrc 加上一行 insmod /lib/aic7xxx.o
cp /lib/modules/`uname -r`/scsi/aic7xxx.o lib/

cd /

umount /mnt/tmp
dd if=/tmp/myinitrdfs | gzip > /boot/initrd2.img

至此,新的initrd文件initrd2.img就包含了aic7xxx的驱动程序了。

qxp 2002-06-26
  • 打赏
  • 举报
回复
步骤:
fdformat /dev/fd0h1440 (低级格式化软盘)
/sbin/mkfs.minix /dev/fd0 1440 (在软盘上创建minix文件系统)
/bin/mount /dev/fd0 /mnt/floppy (安装软盘到/mnt/floppy目录)

cd /mnt/floppy
mkdir boot etc dev

cp -a /boot/vmlinuz /boot/initrd.img /boot/boot.b boot/

注:用你的内核文件名代替vmlinuz
用你的initrd映像文件名代替initrd.img

cp -a /dev/fd0 /dev/null /dev/zero /dev/hd[abcd]* /dev/sd[abcd]* dev/

注: 如果你没有SCSI设备,可不用拷贝/dev/sd[abcd]*

创建/mnt/floppy/etc/lilo.conf如下

boot=/dev/fd0
read-only
prompt
image = /boot/vmlinuz
initrd=/boot/initrd.img
root = /dev/sda1 # 把/dev/sda1换成你的根文件系统设备名称
label = linux

最后运行 lilo -r /mnt/floppy 在软盘上安装LILO (将自动生成/boot/map文件包括内
核的物理映像位置)

4. 剖析initrd.img

如果你是用SCSI硬盘启动,内核必须能装入SCSI驱动程序才能转入你的硬盘根文件系统引
导系统。
如果你的内核没有编译进SCSI驱动程序,则需要用mkinitrd创建RAM驱动映像

想知道你的initrd.img中包含了哪些驱动程序吗?

cat initrd.img | gunzip > /tmp/myinitrdfs
mkdir /mnt/tmp
mount -o loop -t ext2 /tmp/myinitrdfs /mnt/tmp

然后查看/mnt/tmp中的文件linuxrc中的内容即可知道启动时会装入哪些驱动程序

你也可以更改其中的内容,假设我们想加另一种SCSI驱动aic7xxx.o进入你的initrd.img


cd /mnt/tmp
vi linuxrc 加上一行 insmod /lib/aic7xxx.o
cp /lib/modules/`uname -r`/scsi/aic7xxx.o lib/

cd /

umount /mnt/tmp
dd if=/tmp/myinitrdfs | gzip > /boot/initrd2.img

至此,新的initrd文件initrd2.img就包含了aic7xxx的驱动程序了。

qxp 2002-06-26
  • 打赏
  • 举报
回复
步骤:
fdformat /dev/fd0h1440 (低级格式化软盘)
/sbin/mkfs.minix /dev/fd0 1440 (在软盘上创建minix文件系统)
/bin/mount /dev/fd0 /mnt/floppy (安装软盘到/mnt/floppy目录)

cd /mnt/floppy
mkdir boot etc dev

cp -a /boot/vmlinuz /boot/initrd.img /boot/boot.b boot/

注:用你的内核文件名代替vmlinuz
用你的initrd映像文件名代替initrd.img

cp -a /dev/fd0 /dev/null /dev/zero /dev/hd[abcd]* /dev/sd[abcd]* dev/

注: 如果你没有SCSI设备,可不用拷贝/dev/sd[abcd]*

创建/mnt/floppy/etc/lilo.conf如下

boot=/dev/fd0
read-only
prompt
image = /boot/vmlinuz
initrd=/boot/initrd.img
root = /dev/sda1 # 把/dev/sda1换成你的根文件系统设备名称
label = linux

最后运行 lilo -r /mnt/floppy 在软盘上安装LILO (将自动生成/boot/map文件包括内
核的物理映像位置)

4. 剖析initrd.img

如果你是用SCSI硬盘启动,内核必须能装入SCSI驱动程序才能转入你的硬盘根文件系统引
导系统。
如果你的内核没有编译进SCSI驱动程序,则需要用mkinitrd创建RAM驱动映像

想知道你的initrd.img中包含了哪些驱动程序吗?

cat initrd.img | gunzip > /tmp/myinitrdfs
mkdir /mnt/tmp
mount -o loop -t ext2 /tmp/myinitrdfs /mnt/tmp

然后查看/mnt/tmp中的文件linuxrc中的内容即可知道启动时会装入哪些驱动程序

你也可以更改其中的内容,假设我们想加另一种SCSI驱动aic7xxx.o进入你的initrd.img


cd /mnt/tmp
vi linuxrc 加上一行 insmod /lib/aic7xxx.o
cp /lib/modules/`uname -r`/scsi/aic7xxx.o lib/

cd /

umount /mnt/tmp
dd if=/tmp/myinitrdfs | gzip > /boot/initrd2.img

至此,新的initrd文件initrd2.img就包含了aic7xxx的驱动程序了。

lurel 2002-06-26
  • 打赏
  • 举报
回复
好象现在的linux对scsi都支持的不错,只是对raid的支持困难了一些

19,612

社区成员

发帖
与我相关
我的任务
社区描述
系统使用、管理、维护问题。可以是Ubuntu, Fedora, Unix等等
社区管理员
  • 系统维护与使用区社区
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧