Kickstart установить Ubuntu 14.04 LTS без вмешательства и подкачки
Спасибо за предыдущие вопросы об автоматической установке, но я столкнулся с проблемой автоматической установки без получения раздела подкачки.
Вот мой ks.cfg
:
#Generated by Kickstart Configurator
#platform=AMD64 or Intel EM64T
#System language
lang en_US
#Language modules to install
langsupport en_US
#System keyboard
keyboard us
#System mouse
mouse
#System timezone
timezone --utc UTC
#Root password
rootpw --disabled
#Initial user
user deleteme [...]
#Reboot after installation
reboot
#Use text mode install
text
#Install OS instead of upgrade
install
#Use CDROM installation media
cdrom
#System bootloader configuration
bootloader --location=mbr
#Clear the Master Boot Record
zerombr yes
#Partition clearing information
clearpart --all --initlabel
#Disk partitioning information
part / --fstype ext4 --size 1 --grow --asprimary
part swap --size 100
#System authorization infomation
auth --useshadow --enablemd5
#Firewall configuration
firewall --disabled
#Do not configure the X Window System
skipx
#Install these packages
%packages
openssh-server
# After system is installed, remove the apt.conf file with debproxy defined.
%post
rm -rf /etc/apt/apt.conf
%end
Комментируя part swap --size 100
Строка заставляет установщика пожаловаться и создать подсказку. Я попытался установить размер 0
но это вызывает другую проблему, которая вызывает много подсказок. Есть ли способ избавиться от свопа и не получать глупых подсказок?