Changes between Version 12 and Version 13 of Documentation/SupportedImages/BuildingBaselineImage


Ignore:
Timestamp:
Mar 1, 2012, 5:53:09 PM (12 years ago)
Author:
ssugrim
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Documentation/SupportedImages/BuildingBaselineImage

    v12 v13  
    1313 * installing necessary omf/oml packages
    1414 * blacklisting modules of wireless interfaces
    15  * add the ntp package
    16  * touch a file named ntp.conf.dhcp in the /etc directory
    17  * removing unnecessary packages to minimize image size
    18 
     15 * add the ntp package and then touch a file named /etc/ntp.conf.dhcp
     16 * remove the file /etc/udev/rules.d/70-persistent-net.rules
     17  * prepare.sh usually handles this
     18 * removing unnecessary packages and docs to minimize image size
     19  * prepare.sh usually handles this
    1920
    2021Other steps that may be required are:
     
    106107    }}}
    107108 1. apt-get install ntp, and then touch /etc/ntp.conf.dhcp.
     109 1. In order to get dhcp to set the hostname we'll need to rename the /var/lib/dhcp directory and remove the send hostname line
     110    of the dhclient config.
     111    {{{
     112mv /var/lib/dhcp /var/lib/dhcp3
     113    }}}
     114    and in /etc/dhcp/dhclient.conf remove this line
     115    {{{
     116#send host-name "<hostname>";
     117    }}}