Changeset 3173 in MondoRescue for branches/3.0/mindi/README.pxe


Ignore:
Timestamp:
Jul 29, 2013, 9:08:58 AM (11 years ago)
Author:
Bruno Cornec
Message:
  • Use 2 README files as embedded doc for restore boot, with function keys
  • Improve #628 by adding a comment in order to connect external disks after the boot.
  • Improve also boot menu visibility.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.0/mindi/README.pxe

    r3168 r3173  
    1 $Id$
     1MondoRescue supports image deployment using Pre eXecution Environment (PXE)
     2Linux deployments with PXE is documented at http://syslinux.zytor.com/pxe.php
     3Multiple parameters are available at restore time for PXE support:
    24
    3 README for mondo/mindi usage with PXE
     5broadcast   Network broadcast to setup on the device (e.g. 192.168.1.255)
     6dhcp        The LAN interface is automatically setup from DHCP
     7            (replaces ipaddr, netmask, broadcast, gateway)
     8gateway     The default gateway to setup (e.g. 192.168.1.254)
     9hwaddr      MAC address of the device to use to restore through (optional)
     10ipaddr      IP Address to setup on the device (e.g. 192.168.1.1)
     11ipdev       Device name (e.g. eth2)
     12iproute     Additional static route (uses "route add" syntax with : separator)
     13            (e.g. iproute="-net:192.168.8.0:netmask:255.255.255.0:dev:eth3)
     14mountpoint  Mount point on the Remote Network server to use
     15            (if NFS, should be in /etc/exports of the NFS server)
     16netfsmount  Server and mountpoint on which the ISO is available (optional)
     17            (if SSHFS the server part can be of the form user@server)
     18netfsopt    Contains options passed to the mount command (optional)
     19netfspath   Local path on the remote server where image is located (optional)
     20netmask     Netmask to setup on the device (e.g. 255.255.255.0)
     21proto       Protocol to use for mounting the remote share
     22            (default is NFS, sshfs and smbfs are also available)
     23ramdisk_size Size of the RAM disk where the initrd is exploded
     24server      IP address of the Remote Network server
    425
    5 mondorescue now supports the possibility to deploy mondo-images using the Pre eXecution Environment (PXE) standard.
    6 As this README only focusses on the mondorescue part, please read how to do Linux deployments with pxelinux on http://syslinux.zytor.com/pxe.php
    7 
    8 To use it, please do the following on your deployment server:
    9 
    10 Add the following line to your default file:
     26To use it, on your deployment server, add the following line to your conf file:
    1127label mondo
    1228        kernel vmlinuz-mondo
    1329        append initrd=initrd-mondo load_ramdisk=1 prompt_ramdisk=0 ramdisk_size=131072 selinux=0 rw root=/dev/ram iso acpi=off apm=off devfs=nomount exec-shield=0 pxe [proto=nfs|sshfs|smbfs] [prefix=machine] [ipconf=(ipdev:ipadr:netmask:broadcast:gateway|ipdev:dhcp)] [hwaddr=M:A:C:A:D:R] [netfsmount=server:mountpoint] [netfsopt=-o option][netfspath=local_path] [ping=#] [iproute=-net:netdest:[netmask:Nm]gw:GW] ...
    1430
    15 ipdev is the device name (e.g. eth2)
    16 ipadr is the IP Address (e.g. 192.168.1.1)
    17 netmask is the Netmask (e.g. 255.255.255.0)
    18 broadcast is the Network broadcast (e.g. 192.168.1.255)
    19 gateway is the default gateway (e.g. 192.168.1.254)
    20 iproute is an additional static route using the route add syntax using : nstead of space to separate values
    21 dhcp is a keyword. Using it will provide all the previous 4 values to activate the LAN interface.
    22 hwaddr is the MAC address of the device you want to use to restore through
    23 proto is the protocol to use for mounting the remote share (default is NFS, sshfs and smbfs are also available)
    24 server is the ip addr of the Remote Network server
    25 mountpoint is the mount point on the Remote Network server to use (if NFS, should be in /etc/exports of the NFS server)
    26 netfsmount is the server and mountpoint on which the ISO is available, if different from the one at backup time. For SSHFS the server part can be of the form user@server.
    27 netfsopt may contains options passed to the mount command
    28 netfspath is the local path on the remote server where the image is located, if different from the one at backup time.
    29 local_path is the local directory under which the mage was made (with the -d option)
    30 ramdisk_size may have to be increase to 262144 or more on more recent distributions such as RHEL 6
    3131The [] mean this parameter is optional
    3232The () mean that you have a choice with the '|' meaning 'or'
     
    5454Please report any problem around that tool to bruno_at_mondorescue.org
    5555
     56$Id$
     57
    56582013-07-25 adds support for iproute
    57592011-10-09 adds support for hwaddr
Note: See TracChangeset for help on using the changeset viewer.