没什么好说的。
分类: LINUX
2009-10-15 22:36:54
地址:
地址:用root帐号登录系统运行以下命令:
地址:
1.3环境假设
服务器的IP地址为192.168.1.1
2.安装软件
Target iqn.2007-08.name.dns.target.my:iscsiboot Lun 0 Path=/path/to/image/file.img,Type=fileio |
allow booting; allow bootp; ddns-update-style none; log-facility local7; default-lease-time -1; max-lease-time 7200; authoritative; option space gpxe; option gpxe-encap-opts code 175 = encapsulate gpxe; option gpxe.bus-id code 177 = string; subnet 192.168.1.0 netmask 255.255.255.0 { use-host-decl-names on; range 192.168.1.26 192.168.1.30; option routers 192.168.1.1; option broadcast-address 192.168.1.255; option root-path "192.168.1.1:/home/tftpboot/"; next-server 192.168.1.1; if not exists gpxe.bus-id { filename "gpxe/undionly.kpxe"; } else { # filename ""; filename "gpxe/menu.gpxe"; } server-name "lapdance"; server-identifier 192.168.1.1; } |
no code |
#!gpxe
chain #menu.c32 menu.cfg sanboot iscsi:192.168.1.1::::iqn.2007-08.name.dns.target.my:iscsiboot |
#查看磁盘信息
fdisk -l /dev/sdX
#显示如下
Disk /dev/sdX: 80.0 GB, 80026361856 bytes
255 heads, 63 sectors/track, 9729 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes Device Boot Start End Blocks Id System /dev/sdX1 * 1 1825 14659281 7 HPFS/NT |
5.生成文件命令(注意bs与count的值与上面信息的对应关系)
dd if=/dev/sdX of=/path/to/image/file.img bs=8225280 count=1825
OK,一切大功告成,开始测试吧!!
chinaunix网友2010-06-25 00:23:58
另外,上面发的那个sanbootconf补丁也是我写的,可以到我的博客看下: http://hi.baidu.com/流星无语
chinaunix网友2010-06-25 00:22:44
可以看下我的gPXE无盘管理器,自带DHCP、TFTP服务,加上ISCSI服务器即可组建自己的无盘! 华军上有下载:http://www.newhua.com/soft/105737.htm