Changes between Version 22 and Version 23 of PXE_Boot_HowTo
- Timestamp:
- 04/24/18 13:39:30 (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
PXE_Boot_HowTo
v22 v23 1 1 '''Requirements:''' 2 2 - System with DHCP & TFTP setup 3 - Stresslinux x86_64 (for now the development build 0.7.190)4 (32bit version is not supported and you can expect problems with it!) 5 - A host to run stresslinux on (x86_64 architecture and enough memory - 1.5GB required, image is loaded completly to RAM).3 - Stresslinux x86_64 (for now the development build 1.0.3) 4 5 - A host to run stresslinux on (x86_64 architecture and enough memory - 4GB required, image is loaded completly to RAM). 6 6 7 7 '''HowTo:''' … … 24 24 25 25 Download stresslinux pxe edition (currently from testing directory) 26 -> http://www.stresslinux.org/testing/images/11.4/stresslinux_11.4.x86_64-0.7.190-Build1.24-pxe.tar.bz2 26 -> http://www.stresslinux.org/testing/images/42.3/stresslinux.x86_64-1.0.3-Build18.49.tgz 27 27 28 and extract it in image/ directory. 28 29 {{{ 29 wget http://www.stresslinux.org/testing/images/ 11.4/stresslinux_11.4.x86_64-0.7.190-Build1.24-pxe.tar.bz2 -O /tftpboot/image/stresslinux_11.4.x86_64-0.7.190-Build1.24-pxe.tar.bz230 wget http://www.stresslinux.org/testing/images/42.3/stresslinux.x86_64-1.0.3-Build18.49.tgz -O /tftpboot/image/stresslinux.x86_64-1.0.3-Build18.49.tgz 30 31 cd /tftpboot/image 31 tar xf j stresslinux_11.4.x86_64-0.7.190-Build1.24-pxe.tar.bz232 tar xfz stresslinux.x86_64-1.0.3-Build18.49.tgz 32 33 }}} 33 34 34 35 Get the expected ramdisk size from image with the following command: 35 36 {{{ 36 gunzip -l stresslinux _11.4.x86_64-0.7.190.gz |tail -n1|awk '{print $2 / 1024 + 1024}'37 gunzip -l stresslinux.x86_64-1.0.3.gz |tail -n1|awk '{print $2 / 1024 + 1024}' 37 38 }}} 38 39 39 You will get a value similar to: 1 11104040 You will get a value similar to: 1951744 40 41 41 42 Edit pxelinux.cfg/default file an replace current ramdisk_size with this value.