2012年2月7日火曜日

さくらvps on Centos 6 32bit on android sdk

ついでにandroid sdkを立ち上げた見てが

エミュレータの起動で落ちる、

KVM上の環境がいけないのか
libが足りないのか

messages,straceとるも有用な情報なし

2012年2月5日日曜日

CentOS 6

カスタムOSでGUIを設定するさいのメモ

・ yumリポジトリの変更
sed -i 's@^mirrorlist@#mirrorlist@' /etc/yum.repos.d/CentOS-Base.repo
sed -i 's@^#baseurl=http://mirror.centos.org/@baseurl=http://ftp.riken.jp/Linux/caos/@' /etc/yum.repos.d/CentOS-Base.repo

・パッケージの追加
初期状態ではGUI入らないので

yum -y groupinstall "X Window System"
yum -y install 'gnome*' twm xterm gdm

で入れる

・追加デーモンの設定
messagebus,haldaemonがONになってないので

chkconfig haldaemon on
chkconfig messagebus on

・起動時にGUIであがるように変更
# sed -i 's/:3:/:5:/' /etc/inittab

・GUIの言語を設定
# sed -i 's/"C"/"ja_JP.UTF-8"/' /etc/sysconfig/i18n

32bit/64bitで同じ手順で可能

めも
・追加で入れてみる
# yum -y install 'system-config-*'
# yum -y install '*-gnome-*'

・いらなそうなのをoffに
chkconfig postfix off
chkconfig atd off
chkconfig crond off
chkconfig avahi-daemon off
chkconfig bluetooth off
chkconfig ip6tables off
chkconfig irqbalance off
chkconfig abrtd off
chkconfig abrt-ccpp off
chkconfig abrt-oops off