Changes between Version 32 and Version 33 of PxeUsage


Ignore:
Timestamp:
10/29/10 09:36:34 (13 years ago)
Author:
bas
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • PxeUsage

    v32 v33  
    1616To activate this on a client depends on your version of systemimager and your preferred method
    1717
    18 === Systemimager telnet method ===
     18=== Telnet method ===
    1919
    20 To activate this on a client you must add the following line to the ''systemimager master'' script of the node. It will remove the pxe config file for the node from the pxe bootserver. I personally place the line just before the ''umount'' commands. See below which command to use for which systemimager version.
     20To activate this on a client you must add the following line to the ''installation'' script of the node. It will remove the
     21pxe config file for the node from the pxe bootserver. I personally place the line just after the ''umount'' commands.
     22See below which command to use
    2123
    22 Telnet is not included in the 3.X versions:
     24The utility telnet is included in all [https://subtrac.sara.nl/oss/sali Sali] versions and only in Systemimager 2.X, eg:
     25 * {{{ telnet $IMAGESERVER 6611 }}}
     26
     27If the utility telnet is included in the image that is being installed, use this command
     28 * {{{ chroot /a telnet $IMAGESERVER 6611 }}}
     29
     30With systemimager version 3.7 and higher and [https://subtrac.sara.nl/oss/sali Sali] there is an easier setup.
     31In the pxeconfig examples directory there is an [source:trunk/examples/98all.pxeconfig pxeconfig post installation script] (Author: Ole Holm Nielsen), eg:
    2332{{{
    24    # Remove the <hex_ipaddr> file from the pxelinux.cfg directory.
    25    # So the client will boot from disk
    26    #
    27    3.X)  chroot /a telnet $IMAGESERVER 6611
    28    2.X)  telnet $IMAGESERVER 6611
    29 }}}
    30 
    31 === Post install script method ===
    32 
    33 With systemimager version 3.7 and higher and [https://subtrac.sara.nl/oss/sali Sali] there is an easier setup. In the systemimager server examples directory there is an pxeconfig post installation script (Author: Ole Holm Nielsen), eg:
    34 {{{
    35  cp /usr/share/doc/systemimager-server/examples/post-install/30all.pxeconfig \\
     33 cp <path>/98all.pxeconfig \\
    3634    <AUTOINSTALL_SCRIPT_DIR>/scripts/post-install
    3735}}}