- 1、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
做U盘启动linux
Scientific linux to usb
# dd if=/dev/sdb of=/tmp/mbr_sdb.bin bs=512 count=1
# fdisk /dev/sdb
Command(m for help):d
1
…
(删除分区,当删除完后)
Command(m for help): w (保存更改)
(如果显示信息不正确,拔出U盘重新插入,并找到新的正确的U盘标识)
# mkfs.vfat /dev/sdb –I (fat格式化U盘)
Create a Windows 95/98 MBR on USB memory stick, using ms-sys (). Ms-sys is available on recent SL LiveCD/DVDs or you can take the rpm for el4 from?/packages/ms-sys/.
# ms-sys --mbr95b /dev/sdb
Create a new partition (enter n): Choose Primary partition (enter p), Partition number (enter 1). The size of the partition should be at least as larger as the LiveCD/DVD you want to install on the USB device. Afterwards, change the type (enter t) of first partition (enter 1) to?W95 FAT16 LBA?(enter e), and make first partition?active?(enter a and select 1). Before writing the partition table to the USB flash drive (enter w), you can print the changed settings (enter p).
# fdisk /dev/sdb
Command(m for help):
n (新分区)
p
1
1 (必须为1)
60 (启动盘空间大小,跟距实际需要填)
t (改变分区格式)
e (FAT16格式)
a (做为启动盘)
1
w (保存修改)
Now format the first partition (/dev/sdb1) as FAT16. If you like, you can set a label with option -n
# mkdosfs -n SL-LiveCD /dev/sdb1
下载syslinux : /pub/linux/utils/boot/syslinux/
# wget /pub/linux/utils/boot/syslinux/3.xx/syslinux-3.82.tar.gz
# tar xfvz syslinux-3.82.tar.gz
# cd syslinux-3.82
# make
# cd linux
# ./syslinux /dev/sdb1
此时重启从USB 启动应该会出现(不出现就要重做上一步,出现拔出U盘重新开机进生下一步):
SYSLINUX 3.11 2005-09-02 EBIOS Copyright (C) 1994-2005 H. Peter Anvin
Could not find kernel image: linux
boot:
# mkdir -p /mnt/usbdisk
# mount /dev/sdb1 /mnt/usbdisk
# ll /mnt/usbdisk
total 12
-r-xr-xr-x 1 root root 8236 Apr 27 21:23 ldlinux.sys
下载 livecd_sl54_gome_***.iso (只能是5.x 版本)
地址:http://www.livecd.ethz.ch/download.html
# mkdir -p /mnt/iso
# mount -o loop livecd_SL54_gnome_2009-11-20.iso /mnt/iso
# cp -rv /mnt/iso/* /mnt/usbdisk/
# cd /mnt/usbdisk/
# mv boot/* .
Rename isolinux.cfg to syslinux.cfg and delete the path boot/ in syslinux.cfg, splas
文档评论(0)