Unattended Ubuntu 12.04 Instalação do Desktop Usando o Kickstart

1

Eu estava tentando instalar o Ubuntu 12.04 Desktop Usando o Kickstart no tutorial aqui .

Aqui está o arquivo ks.cfg

#Generated by Kickstart Configurator
#platform=x86

#System language
lang en_US
#Language modules to install
langsupport en_IN ml_IN --default=en_US
#System keyboard
keyboard us
#System mouse
mouse
#System timezone
timezone America/New_York
#Root password
rootpw --disabled
#Initial user
user Test --fullname "Test" --iscrypted --password $1$N/vvAxo8$Q71h/eNwDh75x5IXQ8snN/
#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 swap --size 2048 
part / --fstype ext4 --size 1 --grow 
#System authorization infomation
auth  --useshadow  --enablemd5 
#Firewall configuration
firewall --disabled 
#Do not configure the X Window System
skipx

E meu isolinux / txt.cfg parece

default autoinstall
label autoinstall
  menu label ^Automatically Install Ubuntu
  kernel /casper/vmlinuz
  append  file=/cdrom/preseed/ubuntu.seed boot=casper initrd=/casper/initrd.lz ks=cdrom:/ks.cfg –
label live
  menu label ^Try Ubuntu without installing
  kernel /casper/vmlinuz
  append  file=/cdrom/preseed/ubuntu.seed boot=casper initrd=/casper/initrd.lz quiet splash --
label live-install
  menu label ^Install Ubuntu
  kernel /casper/vmlinuz
  append  file=/cdrom/preseed/ubuntu.seed boot=casper only-ubiquity initrd=/casper/initrd.lz quiet splash --
label check
  menu label ^Check disc for defects
  kernel /casper/vmlinuz
  append  boot=casper integrity-check initrd=/casper/initrd.lz quiet splash --
label memtest
  menu label Test ^memory
  kernel /install/mt86plus
label hd
  menu label ^Boot from first hard disk
  localboot 0x80

Estou recebendo muitas mensagens sobre o andamento da instalação, mas depois que o menu pop-up de instalação normal aparece (Experimente o Ubuntu, instale o Ubuntu etc.), ao clicar que a instalação normal começa como de costume.

Alguém enfrentou esse problema?

estou fazendo algo errado?

Qualquer ajuda será apreciada .....

    
por Haris 12.03.2014 / 13:24

1 resposta

1

Eu também estava enfrentando o mesmo problema, ao tentar instalar o Ubuntu 12.04 Desktop automaticamente. Parece que a GUI não está tomando as configurações definidas pelo kickstart.

Mas eu consegui instalar o Ubuntu 12.04 Server por esse método. Após a instalação, eu instalei pacotes ubuntu-desktop para que eu possa fazer uso da GUI.

Um método alternativo é baixar e instalar o Ubuntu-12.04-alternate.iso. A instalação está no modo de texto, por isso aceita o arquivo de configuração do kickstart.

Atenciosamente,

    
por 20.03.2014 / 08:42