ubuntu 10.04 LTSをPXEネットワークインストールする
インストールイメージ送り出し側サーバの設定
dhcpサーバ構築
tftpサーバ構築
イメージ配置
apache公開ディレクトリ/var/www/html/iso/ubuntu1004_server_x64/を作成。インストールCD isoイメージの内容を、上のディレクトリにそっくりコピーする。ネットワークインストール時に、レポジトリを 192.168.0.1, /is/ubuntu1004_server_x64を指定する。
ブート設定
# tar -zxvf netboot.tar.gz
# cd ..
# cp -a ubuntu1004_server_x64/ubuntu-installer .
補足
# cat ubuntu-installer/amd64/pxelinux.cfg/default >> pxelinux.cfg/default
# vi pxelinux.cfg/default
または(b)
# cp ubuntu-installer/amd64/pxelinux.cfg/default pxelinux.cfg/(target mac)
TIPS
ubuntu 10.04 LTS amd64
- Server
- desktop --> NG, 画面が表示されない
- alternate --> OK, インストール後、grub2 edir, xorg.confを作成
Ubuntu 10.04 amd64 のインストールメモ
CPU : Athlon 3400e
Chipset: SB600, RS690M-Radeon X1200
amd64版
■desktop
インストール不可。画面が表示されない
■alternate
(1)textモード、または、grubに 『nomodeset』を追加しないと画面が正常に表示されない。
(2)ブート時にescキーを押し、grbubメニューを表示させる。
(3)F6キーを押し、編集モードに以降する。
(4)インストール時は、行の最右に「nomodeset」を追加、ctrl+x でブートする。
(5)その後のブート時はlinux行に、「nomodeset」を追加しブートする。
(6)インストール完了後は、GRUB2の編集を行う。
手順は/etc/default/grub を編集して GRUB_CMDLINE_LINUX に nomodeset を追加し、sudo update-grub を実行する
(7)起動すると、640x480でしか表示できない。/etc/X11/xorg.confを新規作成し、再起動すると、1280x1024まで表示可能になる。以下は一例です。
Section "Device"
Identifier "Configured Video Device"
Driver "vesa"
EndSection
Section "Monitor"
Identifier "Configured Monitor"
EndSection
Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
EndSection
■server
(1)textモード、または、grubに 『nomodeset』を追加しないと画面が正常に表示されない。
(2)ブート時にescキーを押し、grbubメニューを表示させる。
(3)F6キーを押し、編集モードに以降する。
(4)インストール時は、行の最右に「nomodeset」を追加、ctrl+x でブートする。
(5)その後のブート時はlinux行に、「nomodeset」を追加しブートする。
(6)インストール完了後は、GRUB2の編集を行う。
手順は/etc/default/grub を編集して GRUB_CMDLINE_LINUX に nomodeset を追加し、sudo update-grub を実行する
最終更新:2011年05月27日 15:01