[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debian-users:57291] preseed でインストールした後デスクトップ画面が出ない



皆さんこんばんは、松井です。

[debian-users:57237]
http://comments.gmane.org/gmane.linux.debian.jp.user/22419
に書いたのと、
debian-7.5.0-amd64-CD-1.iso
を
debian-7.6.0-amd64-xfce-CD-1.iso
に置き換えた以外は全く同じやり方で
preseed に再度挑戦しているのですが、問題が発生しております。
preseed.cfg は最後にペーストしておきます。

Grub の画面で 「New Install」を選択すると
error: file not found
Press any key to continue...
などと表示されるものの、
どれかのキーを押すと preseed.cfg の読み込みに成功しインストール過程は進
行していきます。

しかし、インストールに成功した後、そのパーティションから起動させると
Debian GNU/Linux 7 debian tty1
debian login:
と表示されてインストールしたはずの XFCE デスクトップが現れません。
一体何を追加すればよいのでしょうか?
うまくいかなかったので
d-i base-installer/kernel/image string linux-image-amd64
を入れて試したりもしましたが、これは必要ないでしょうか。
ちなみにこの部分は
https://www.debian.org/releases/stable/amd64/apbs04.html.ja
では
d-i base-installer/kernel/image string linux-image-486
となっております。
さらに、このページの
# This one makes grub-installer install to the MBR if it also finds some other
# OS, which is less safe as it might not be able to boot that other OS.
d-i grub-installer/with_other_os boolean true
の部分の説明「他のOSを起動できない」も間違えているのでしょうか?

それと、
d-i netcfg/hostname string debian
では preseed できなかったようなのですが、
「Please enter the hostname for this system」
と表示されてデフォルトでは入力内容が「debian」となっているものを
preseed して質問の表示をスキップさせるやり方も分かりません。
どのようにすればよいでしょうか?

どうぞよろしくお願いいたします。

---
Kenji Matsui


--------------------------preseed.cfg------------------------------------------------------------------
d-i debian-installer/language string en
d-i debian-installer/country string JP
d-i debian-installer/locale string en_US.UTF-8
d-i localechooser/supported-locales en_US.UTF-8
d-i console-setup/ask_detect boolean false
d-i console-setup/layoutcode string us
d-i console-setup/charmap select UTF-8

# キーボードレイアウトの特性の設定(日本語キーボード)
d-i keyboard-configuration/layoutcode string jp
d-i keyboard-configuration/modelcode jp106

#B.4.2. ネットワーク設定
d-i	netcfg/dhcp_failed note
netcfg netcfg/dhcp_options select Do not configure the network at this time
d-i netcfg/hostname string debian

# non-free firmware 入れない
d-i hw-detect/load_firmware boolean false

# B.4.5. アカウント設定
d-i passwd/root-password-crypted password
$1$UyLwV0fw$xqXH3gqGV9nDQ00JSbqCb.
d-i passwd/user-fullname string gonbee
d-i passwd/username string gonbee
d-i passwd/user-password-crypted password $1$tUSPg776$g5Eqy57ZfRlsDrmlsokXs.

# B.4.6. 時計と時間帯の設定
d-i clock-setup/utc boolean false
d-i time/zone string Japan

# B.4.7.1. パーティション分割
d-i partman-auto/init_automatically_partition select biggest_free
d-i partman-auto/disk string /dev/sda
#d-i partman-auto/method string regular
d-i partman-auto/choose_recipe select atomic
d-i partman-auto/expert_recipe string \
    boot-root :: \
        5000 1 6000 ext3 \
        $primary{ } $bootable{ } \
        method{ format } format{ } \
        use_filesystem{ } filesystem{ ext3 } \
        mountpoint{ / } \
                  .
partman-basicfilesystems partman-basicfilesystems/no_swap boolean false
d-i partman-partitioning/confirm_write_new_label boolean false
d-i partman/choose_partition select finish
d-i partman/confirm boolean false
d-i partman/confirm_nooverwrite boolean false

# B.4.7.3. パーティションマウント法の制御-UUID でマウント
d-i partman/mount_style select uuid

# B.4.8. 基本システムのインストール
d-i base-installer/kernel/image string linux-image-amd64

# B.4.9. apt 設定
d-i apt-setup/use_mirror boolean false
d-i apt-setup/services-select multiselect security, updates
d-i apt-setup/security_host string security.debian.org

# B.4.10. パッケージ選択
tasksel tasksel/first multiselect standard
tasksel tasksel/desktop multiselect xfce
popularity-contest popularity-contest/participate boolean false

# 他の OS があろうとなかろうと grub はインストールする
d-i grub-installer/only_debian boolean true
d-i grub-installer/with_other_os boolean true
d-i grub-installer/bootdev string /dev/sda

# 最後に電源を切る
d-i finish-install/reboot_in_progress note
d-i debian-installer/exit/poweroff boolean true
----------------------------------------------------------------------------------------------------------