如何执行 Ubuntu 桌面的无人值守安装?

如何执行 Ubuntu 桌面的无人值守安装?

我知道有很多关于 Ubuntu 服务器无头和无人值守安装的信息。但我需要安装桌面很多机器上都安装了 Trusty 版本,我想实现自动化。使用 Kickstart 和 Preseed 手册,我无法实现无人值守的 Ubuntu 14.04 安装。桌面 64 位。

有没有我没找到的手册?如果能得到一些帮助就太好了。我已经花了几个小时在这上面了。

我的 txt.cfg 在 /isolinux/ 中:

default autoinstall
label autoinstall
     menu label ^Autoinstall Ubuntu POS-Server
     kernel /install/vmlinuz
     append preseed/file=/cdrom/preseed/pos.seed debian-installer/locale=de_DE console-setup/layoutcode=de initrd=/install/initrd.gz ramdisk_size=16384 ks=cdrom:/ks.cfg  root=/dev/ram rw --

我的 pos.seed 在/preseed/中:

d-i partman/confirm_write_new_label boolean true
d-i partman/choose_partition \
select Finish partitioning and write changes to disk
d-i partman/confirm boolean true

d-i debian-installer/locale string en_US.UTF-8
d-i debian-installer/splash boolean false
d-i console-setup/ask_detect boolean false
d-i console-setup/layoutcode string de
d-i console-setup/variantcode string

### Network
d-i netcfg/choose_interface select auto

## Keyboard configuration
d-i keyboard-configuration  keyboard-configuration/layoutcode       string  de
d-i keyboard-configuration  keyboard-configuration/layout   select  German
d-i keyboard-configuration  keyboard-configuration/variant  select  German
d-i keyboard-configuration  keyboard-configuration/xkb-keymap       select  de

#### Advanced options
### Running custom commands during the installation
# This first command is run as early as possible, just after
# preseeding is read.
# if old filesystem present installer asks for unmount
d-i preseed/early_command string umount /media

### Package selection
# Individual additional packages to install
# Install the Ubuntu desktop.
tasksel tasksel/first multiselect ubuntu-desktop
d-i pkgsel/include string openssh-server build-essential
# Policy for applying updates. May be "none" (no automatic updates),
# "unattended-upgrades" (install security updates automatically), or
# "landscape" (manage system with Landscape).
d-i pkgsel/update-policy select none
# Enable extras.ubuntu.com.
d-i apt-setup/extras    boolean true

我的 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 de
#System mouse
mouse
#System timezone
timezone Europe/Berlin
#Root password
rootpw --disabled
#Initial user
user ****** --fullname "******" --iscrypted --password ******************
#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 locale=de_DE console-setup/ask_detect=false keyboard-configuration/layoutcode=de
#Clear the Master Boot Record
zerombr yes
#Partition clearing information
clearpart --all --initlabel 
#Partitioning
part / --fstype ext4 --size 1 --grow --asprimary
part swap --recommended
part /boot --fstype ext4 --size 256 --asprimary
#System authorization infomation
auth  --useshadow  --enablemd5 
#Network configuration
network --bootproto=dhcp --device=eth0
#Firewall configuration
#firewall --disabled 
#Do not configure the X Window System
skipx
#custom packages for installation
%packages
openssh-server
ubuntu-desktop

答案1

尽管安装了软件包,但服务器版本和桌面版本之间并没有真正的区别。

有一个名为“ubuntu-desktop”的元软件包,其中包含随 Ubuntu Desktop 安装的所有软件包。默认存储库中还有 Kubuntu、Edubuntu、Lubuntu 和 Xubuntu 的元软件包。

只需使用 Ubuntu 服务器教程并将此包添加到您的 kickstart 文件中,而不是服务器相关包(还有其他元包,如“openssh-server”,具体取决于安装期间选择的服务)。如果没有选择(或在 kickstart 文件中列出),您将获得一个没有任何内容的最小 Ubuntu 系统。

Preseed-file 相关部分的示例:

### Package selection
tasksel tasksel/first multiselect ubuntu-desktop
#tasksel tasksel/first multiselect lamp-server, print-server
#tasksel tasksel/first multiselect kubuntu-desktop

示例文件在此处

Kickstart 文件也一样:

%packages
ubuntu-desktop

不要使用@ubuntu-desktop,这意味着安装一个软件包组,但在 deb-world 中,软件包组是一个将其他软件包作为依赖项拉取的元软件包。

答案2

问题在于您仅指定 cdrom 作为安装源。服务器映像不包含 ubuntu-desktop。

我的解决方法是也添加一个网络源:

# Installation media. Use both CD-ROM and Net
cdrom
url --url http://archive.ubuntu.com/ubuntu

理想情况下,应该将软件包添加到主 iso 中,但我还不知道如何做到这一点。

相关内容