Skip to content

Commit 37e3fcd

Browse files
authored
minor comments and network bridge config
1 parent c489a2f commit 37e3fcd

1 file changed

Lines changed: 31 additions & 0 deletions

File tree

README.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
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

0 commit comments

Comments
 (0)