Update Ubuntu configuration
This commit is contained in:
parent
94dd4e036c
commit
79af4493ff
|
@ -64,6 +64,13 @@ Contains the files which defines the PXE menu. The [first one][main menu.cfg] wi
|
||||||
* Debian Sid (unstable) i386.
|
* Debian Sid (unstable) i386.
|
||||||
2. If you want to use with your own TFTPD server, you need te set your IP server ! Replace all occurrences of *129.20.27.239* by the IP of your TFTPD server to be able to load the preseed files !
|
2. If you want to use with your own TFTPD server, you need te set your IP server ! Replace all occurrences of *129.20.27.239* by the IP of your TFTPD server to be able to load the preseed files !
|
||||||
|
|
||||||
|
#### config/ubuntu/menu.cfg
|
||||||
|
Provide PXE entries for :
|
||||||
|
* Ubuntu LTS (16.04) amd64.
|
||||||
|
* Ubuntu LTS (16.04) i386.
|
||||||
|
* Latest non-LTS Ubuntu (15.10) amd64.
|
||||||
|
* Latest non-LTS Ubuntu (15.10) i386.
|
||||||
|
|
||||||
### Preseed
|
### Preseed
|
||||||
A preseed file can be loaded by the Debian-Installer to answer all questions
|
A preseed file can be loaded by the Debian-Installer to answer all questions
|
||||||
Preseeding provides a way to set answers to questions asked by the Debian-Installer, without having to manually enter the answers. This makes it possible to fully automate most types of installation and even offers some features not available during normal installations. More informations on [Debian wiki][preseed informations].
|
Preseeding provides a way to set answers to questions asked by the Debian-Installer, without having to manually enter the answers. This makes it possible to fully automate most types of installation and even offers some features not available during normal installations. More informations on [Debian wiki][preseed informations].
|
||||||
|
|
|
@ -1,11 +1,20 @@
|
||||||
label install64
|
label lts64
|
||||||
menu label Ubuntu LTS GNU/Linux ^64 bits
|
menu label Ubuntu LTS (16.04) GNU/Linux ^amd64
|
||||||
kernel installer/ubuntu/lts/amd64/linux
|
kernel installer/ubuntu/lts/amd64/linux
|
||||||
append vga=normal initrd=installer/ubuntu/lts/i386/initrd.gz -- quiet
|
append vga=normal initrd=installer/ubuntu/lts/amd64/initrd.gz -- quiet
|
||||||
label install86
|
label lts86
|
||||||
menu label Ubuntu LTS GNU/Linux ^86 bits
|
menu label Ubuntu LTS (16.04) GNU/Linux ^i386
|
||||||
kernel installer/ubuntu/lts/i386/linux
|
kernel installer/ubuntu/lts/i386/linux
|
||||||
append vga=normal initrd=installer/ubuntu/lts/i386/initrd.gz -- quiet
|
append vga=normal initrd=installer/ubuntu/lts/i386/initrd.gz -- quiet
|
||||||
|
label latest64
|
||||||
|
menu label Ubuntu ^Latest (15.10) GNU/Linux amd64
|
||||||
|
kernel installer/ubuntu/wily/amd64/linux
|
||||||
|
append vga=normal initrd=installer/ubuntu/wily/amd64/initrd.gz -- quiet
|
||||||
|
label latest86
|
||||||
|
menu label Ubuntu ^Latest (15.10) GNU/Linux i386
|
||||||
|
kernel installer/ubuntu/wily/i386/linux
|
||||||
|
append vga=normal initrd=installer/ubuntu/wily/i386/initrd.gz -- quiet
|
||||||
|
|
||||||
label separator
|
label separator
|
||||||
menu label -----
|
menu label -----
|
||||||
label mainmenu
|
label mainmenu
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
1. [Description](#description)
|
1. [Description](#description)
|
||||||
2. [Scripts list](#scripts-list)
|
2. [Scripts list](#scripts-list)
|
||||||
* [Download Debian](#download_debiansh)
|
* [Download Debian](#download_debiansh)
|
||||||
* [Download Ubuntu](#dowload_ubuntush)
|
* [Download Ubuntu](#download_ubuntush)
|
||||||
* [Make Debian Initrd with Firmware](#make_debian_initrd_with_firmwaresh)
|
* [Make Debian Initrd with Firmware](#make_debian_initrd_with_firmwaresh)
|
||||||
* [Debian late_command](#debian-late_command)
|
* [Debian late_command](#debian-late_command)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue