Changes between Version 15 and Version 16 of ReferenceGuide


Ignore:
Timestamp:
Oct 10, 2013 7:59:47 AM (11 years ago)
Author:
Ted Faber
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ReferenceGuide

    v15 v16  
    319319
    320320This is primarily of academic interest, unless a researcher wants to impose traffic shaping between containers using incompatible traffic shaping.  There needs to be an unshaped link between the two kinds of traffic shaping.
     321
     322
     323== Bootable Qemu Images ==
     324
     325For qemu images to boot reliably they should not wait for a keypress at the grub command, which is distressingly common.
     326
     327To insure that your image does not wait for grub do the following:
     328
     329For Ubuntu 12.04 (and any system that uses grub2) edit /etc/default
     330grub. Sample:
     331
     332{{{
     333GRUB_DEFAULT=0
     334GRUB_HIDDEN_TIMEOUT=0
     335GRUB_HIDDEN_TIMEOUT_QUIET=true
     336GRUB_TIMEOUT=1
     337GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
     338GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
     339GRUB_CMDLINE_LINUX=""
     340}}}
     341
     342Just make sure the HIDDENs are not commented out and have true/0 values.
     343
     344You then have to run a command on the
     345system which generates all the new grub configurations:
     346
     347{{{
     348$ sudo update-grub
     349}}}