ubuntu

Ubuntu 11.10が起動時に "Waiting for network configuration..." と吐く件の対処

やっと11.10に追いついたと思ったら、ブート時に以下のようなメッセージが出る件。 Waiting for network configuration... Waiting up to 60 more seconds for network configuration... Booting system without full network configuration...結論から言う…

さくらVPSでUbuntu 10.10から11.04にdo-release-upgradeしたらgrubプロンプトへと叩き落とされた場合の対処

徹夜明けの午後に見るgrubプロンプトはちょっと胃に来ますよね。というわけでさくらVPSのカスタムOSインストールで入れたUbuntu 10.04 LTSを11.10まで引き上げようとしたときにハマった部分のメモ。

Ubuntu Oneiric + nginx + uwsgi + sinatra (rack)

Ubuntu Oneiric (11.10) + nginx + uwsgi な環境で Sinatra アプリを uwsgi に載せるまで。まず sinatra のインストールから。 apt で sinatra をインストールしたい場合、現在は ruby-rack がみつからず依存関係エラーが出る。 $ sudo -s # apt-get install…

Ubuntu Oneiric の /etc/uwsgi/{apps-available,apps-enabled}

前回は upstart を使って uwsgi を起動したけど、パッケージの仕組みに沿った方法を使ってみる。Debian 系の基本通り、 /etc/uwsgi/apps-available/ に設定をファイルを置いて /etc/uwsgi/apps-enabled/ からシンボリックリンクする。/etc/uwsgi/apps-availa…

Ubuntu Oneiric + nginx + uwsgi + moin

インストール nginx は PPA から入れる。 Install : Official Debian/Ubuntu packages $ sudo -s # nginx=stable # add-apt-repository ppa:nginx/$nginx # apt-get update # apt-get install nginx uwsgi 関連もインストール。 # apt-get install uwsgi uws…