web-dev-qa-db-ja.com

キックスタートを使用したUbuntu12.04デスクトップの無人インストール

チュートリアルのキックスタートを使用してUbuntu12.04デスクトップをインストールしようとしました ここ

これが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

そして私のisolinux/txt.cfgは次のようになります

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

インストールの進行状況について多くのメッセージが表示されますが、その後、通常のインストールポップアップメニューが表示され(Ubuntuを試す、Ubuntuをインストールするなど)、クリックすると通常のインストールが開始されます。

誰かがそのような問題に直面しましたか?

私は何か間違ったことをしていますか?

どんな助けでもありがたいです.....

1
Haris

Ubuntu 12.04デスクトップを自動的にインストールしようとしたときにも、同じ問題に直面していました。 GUIがキックスタートで設定された構成を採用していないようです。

しかし、私はこの方法でUbuntu12.04サーバーをインストールすることができました。インストール後、GUIを利用できるようにubuntu-desktopパッケージをインストールしました。

別の方法は、Ubuntu-12.04-alternate.isoをダウンロードしてインストールすることです。インストールはテキストモードであるため、キックスタート設定ファイルを受け入れます。

よろしく、

1
SatheeshCK17