Changes between Version 22 and Version 23 of PXE_Boot_HowTo


Ignore:
Timestamp:
04/24/18 13:39:30 (6 years ago)
Author:
stresslinux
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • PXE_Boot_HowTo

    v22 v23  
    11'''Requirements:''' 
    22- 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). 
    66 
    77'''HowTo:''' 
     
    2424 
    2525Download 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 
    2728and extract it in image/ directory. 
    2829{{{ 
    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.bz2 
     30 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 
    3031 cd /tftpboot/image 
    31  tar xfj stresslinux_11.4.x86_64-0.7.190-Build1.24-pxe.tar.bz2 
     32 tar xfz stresslinux.x86_64-1.0.3-Build18.49.tgz 
    3233}}} 
    3334 
    3435Get the expected ramdisk size from image with the following command: 
    3536{{{ 
    36 gunzip -l stresslinux_11.4.x86_64-0.7.190.gz |tail -n1|awk '{print $2 / 1024 + 1024}' 
     37gunzip -l stresslinux.x86_64-1.0.3.gz |tail -n1|awk '{print $2 / 1024 + 1024}' 
    3738}}} 
    3839 
    39 You will get a value similar to: 1111040 
     40You will get a value similar to: 1951744 
    4041 
    4142Edit pxelinux.cfg/default file an replace current ramdisk_size with this value.