-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
turns out debian does not support kickstart and I wasted a lot of time
- Loading branch information
Showing
3 changed files
with
85 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
#Generated by Kickstart Configurator | ||
#platform=AMD64 or Intel EM64T | ||
|
||
#System language | ||
lang en_US | ||
#Language modules to install | ||
langsupport pl_PL --default=en_US | ||
#System keyboard | ||
keyboard us | ||
#System mouse | ||
mouse | ||
#System timezone | ||
timezone --utc Europe/Warsaw | ||
#Root password | ||
rootpw --iscrypted $1$z0BY0NkL$Necy0Mqj6AYqatrm9Pi.Y. | ||
#Initial user | ||
user justuser --fullname "delete me later" --iscrypted --password $1$tmQA0Jxc$/QUItyxu8npyxjoKgEgBv0 | ||
#Reboot after installation | ||
reboot | ||
#Use text mode install | ||
text | ||
#Install OS instead of upgrade | ||
install | ||
#Use Web installation | ||
url --url ftp://192.168.0.1/debian/kickstart | ||
#System bootloader configuration | ||
bootloader --location=mbr | ||
#Clear the Master Boot Record | ||
zerombr yes | ||
#Partition clearing information | ||
clearpart --all --initlabel | ||
#System authorization infomation | ||
auth --useshadow --enablemd5 | ||
#Network information | ||
network --bootproto=dhcp --device=eth0 | ||
#Firewall configuration | ||
firewall --disabled | ||
#X Window System configuration information | ||
xconfig --depth=32 --resolution=1024x768 --defaultdesktop=KDE --startxonboot | ||
#Run the Setup Agent on first boot | ||
firstboot --enable |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
path debian-installer/amd64/boot-screens/ | ||
include debian-installer/amd64/boot-screens/menu.cfg | ||
default debian-installer/amd64/boot-screens/vesamenu.c32 | ||
prompt 0 | ||
timeout 50 | ||
ONTIMEOUT Kickstart | ||
|
||
|
||
LABEL Kickstart | ||
kernel debian-installer/amd64/linux | ||
append vga=788 initrd=debian-installer/amd64/initrd.gz ks=ftp://192.168.0.2/kickstart/debian/ks.cfg vga=788 initrd=debian-installer/amd64/initrd.gz preseed/url=ftp://192.168.0.2/kickstart/debian/ks.preseed.cfg |