Changes between Version 18 and Version 19 of PXE_Boot_HowTo
- Timestamp:
- 02/17/13 18:49:18 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
PXE_Boot_HowTo
v18 v19 1 1 '''Requirements:''' 2 2 - System with DHCP & TFTP setup 3 - Stresslinux x86_64 (for now the development build 0.7.1 77)3 - Stresslinux x86_64 (for now the development build 0.7.190) 4 4 (32bit version is not supported and you can expect problems with it!) 5 5 - A host to run stresslinux on (x86_64 architecture and enough memory - 1.5GB required, image is loaded completly to RAM). … … 24 24 25 25 Download stresslinux pxe edition (currently from testing directory) 26 -> http://www.stresslinux.org/testing/images/stresslinux_11.4.x86_64-0.7.1 77-Build5.25-pxe.tar.bz226 -> http://www.stresslinux.org/testing/images/stresslinux_11.4.x86_64-0.7.190-Build1.2-pxe.tar.bz2 27 27 and extract it in image/ directory. 28 28 {{{ 29 wget http://www.stresslinux.org/testing/images/stresslinux_11.4.x86_64-0.7.1 77-Build5.25-pxe.tar.bz2 -O /tftpboot/image/stresslinux_11.4.x86_64-0.7.177-Build5.25-pxe.tar.bz229 wget http://www.stresslinux.org/testing/images/stresslinux_11.4.x86_64-0.7.190-Build1.2-pxe.tar.bz2 -O /tftpboot/image/stresslinux_11.4.x86_64-0.7.190-Build1.2-pxe.tar.bz2 30 30 cd /tftpboot/image 31 tar xfj stresslinux_11.4.x86_64-0.7.1 77-Build5.25-pxe.tar.bz231 tar xfj stresslinux_11.4.x86_64-0.7.190-Build1.2-pxe.tar.bz2 32 32 }}} 33 33 34 34 Get the expected ramdisk size from image with the following command: 35 35 {{{ 36 gunzip -l stresslinux_11.4.x86_64-0.7.1 77.gz |tail -n1|awk '{print $2 / 1024 + 1024}'36 gunzip -l stresslinux_11.4.x86_64-0.7.190.gz |tail -n1|awk '{print $2 / 1024 + 1024}' 37 37 }}} 38 38