File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # Debian Jessie unattended install using Preseed
2+
3+ Script installs libvirt/KVM/qemu-based Debian Jessie virtual machine and does some custom post-install configuration.
4+ It uses ` virt-install ` .
5+ It can be used as an example or as a base for your own script.
6+
7+ For best results before first use at least:
8+ * Update domain name in ` install.sh ` and scattered in ` late.sh ` .
9+ * Update user / login name in ` preseed.cfg ` , update login name in ` late.sh `
10+ * Update SSH public key in postinst or enable password setup in ` preseed.cfg `
11+
12+ It is works best in setup with bridged network interface on KVM-based linux host. Bridge setup example:
13+ ```
14+ $ cat /etc/network/interfaces
15+ auto lo
16+ iface lo inet loopback
17+
18+ auto eth0
19+ iface eth0 inet manual
20+
21+ auto br0
22+ iface br0 inet dhcp
23+ bridge_ports eth0
24+ bridge_stp off
25+ bridge_fd 0
26+ bridge_maxwait 0
27+ ```
28+
29+ More Info
30+ ---------
31+ * https://www.debian.org/releases/stable/example-preseed.txt
You can’t perform that action at this time.
0 commit comments