【cloudcore】debianをインストールし直した
問題
KDDIウェブコミュニケーションズさんのVPS cloudcore に、debianを入れた。
1回目は、よく考えずにセットアップしたので、再インストールしたい。
解答例
CentOSが入った状態からdebianを入れたときと同じ要領でやってみる。まっさらにしてやり直したいときの方法のひとつ。
(パッケージの選択しなおしなら、tasksel コマンドでもよいと思う。)
1、debianのネットワークインストーラーをダウンロード
このへんから netboot → netboot.tar.gz を取ってくる。
# wget http://ftp.nl.debian.org/debian/dists/squeeze/main/installer-amd64/current/images/netboot/netboot.tar.gz
2、解凍する
解凍先を作って、そこに解凍。
# mkdir /boot/installer # tar zxf netboot.tar.gz -C /boot/installer/
3、GRUB(ブートローダー)にdebianのインストーラーが起動できるように設定
ここはCentOSのときと違うところ。debian式でいく。
まず、カスタムのエントリを /etc/grub.d/40_custom に書く(/boot/grub/grub.cfg は直接編集しない)。
# vi /etc/grub.d/40_custom #!/bin/sh exec tail -n +3 $0 # This file provides an easy way to add custom menu entries. Simply type the # menu entries you want to add after this comment. Be careful not to change # the 'exec tail' line above. menuentry "Installer" { set root='(hd0,msdos1)' linux /boot/installer/debian-installer/amd64/linux initrd /boot/installer/debian-installer/amd64/initrd.gz }
次に、カスタムのエントリを /boot/grub/grub.cfg に反映させる。
# update-grub
4、再起動
# reboot
5、インストーラーを選択して起動
[…画像なし…]
起動後のOS選択の画面に、4で追加したインストーラーのエントリが表示されているので、そちらを選択してインストールを進める。
5、インストールする
(以下略)
参考
最初のインストールはこちら
コメント