2010-05-16 08:26:45
自宅サーバに復帰して一週間が経ち、どうやら安定して動いているようだと判断したところで、Amazon EC2の片づけに入る。せっかく自宅サーバを動かしたのに、Amazonに使用料を払い続ける理由はない。
本欄の以前の記事を参照して、AMIを保存しておくことにした。今まで一度の保存したAMIを呼び起こして利用したことはないけれども、いつ何が起こるか判らない。まず、
ec2-bundle-vol -d /mnt --privatekey pk-xxxxxxxx.pem \\ --cert cert-xxxxxxxx.pem --user 0000-0000-0000(\\は本来は存在しない改行を意味する) とすると、
The program 'ec2-bundle-vol' is currently not installed. You can install it by typing: sudo apt-get install ec2-ami-tools You will have to enable the component called 'multiverse' ec2-bundle-vol: command not foundと云われてしまったので、示された指示に従って、
sudo apt-get install ec2-ami-toolsとすると今度は、
sudo apt-get install ec2-ami-tools Reading package lists... Done Building dependency tree Reading state information... Done Package ec2-ami-tools is not available, but is referred to by another package. This may mean that the package is missing, has been obsoleted, or is only available from another source E: Package ec2-ami-tools has no installation candidateという表示が。なぜなんだ? You will have to enable the component called 'multiverse'ということかなと思い、/etc/apt/sources.listの各行の最後に、multiverseという単語を追加して閉じる。sudo apt-get updateののち、sudo apt-get install ec2-ami-toolsとするとインストールできた。あらためてsudo ec2-bundle-vol -d /mnt --privatekey pk-xxxxxxxx.pem --cert cert-xxxxxxxx.pem --user 0000-0000-0000とすると、今度は動き始めた。あとは前に書いた通り。
自分用の備忘録でした。