-->

2012-07-31

scimの起動

日本語入力ができなかったので設定を追加した。
$ cd /etc/X11/xinit/xinitrc.d/
$ sudo vi 99-scim
$ cat 99-scim | grep -v ^#
LANG='ja_JP.UTF-8' scim -d
export XMODIFIERS=@im=SCIM
export GTK_IM_MODULE=scim
export QT_IM_MODULE=scim
$ sudo chmod +x 99-scim

たぶん以前はstartxで起動していた。
$ cat .xinitrc | grep -v ^#
LANG='ja_JP.UTF-8' scim -d
export XMODIFIERS=@im=SCIM
export GTK_IM_MODULE=scim
export QT_IM_MODULE=scim
exec gnome-session

参考URL。
http://en.gentoo-wiki.com/wiki/SCIM#GNOME_or_other_GTK_windows_manager

2012-07-26

Could not access KVM kernel module: Permission denied

kvmが動作していない。
以前は何らしかの名前が出たような気がする。
$ sudo virsh list
 Id    名前                         状態
----------------------------------------------------


グラフィカルな管理画面では復元ができる状態で停止中のリストが表示される。
しかし復元はできない。
$ sudo virt-manager

Could not access KVM kernel module: Permission denied と出る。
グループを追加した。
$ sudo usermod -a -G kvm qemu

それから復元をすると、今度はpythonのエラーが長々と出る。
ゲストOSが起動したままの状態で終了している場合はキャッシュファイルが古いと起動しない場合がある。
$ cd /var/lib/libvirt/qemu/save/
$ sudo mv -i centos5.save centos5.save.old

参考URL。
http://forums.gentoo.org/viewtopic-t-925976-start-0.html
https://bugs.gentoo.org/show_bug.cgi?id=420507

'gsettings-data-convert.desktop' failed

gnomeが起動できない。新規ユーザーを作成して、それにログインしても無理だった。
$ sudo tail -f /var/log/messages
...
Jul 26 16:47:23 amdgentoo gnome-session[17395]: WARNING: Application 'gsettings-data-convert.desktop' failed to register before timeout
...

少し新しいgconfを入れた。
sudo ACCEPT_KEYWORDS="~*" emerge --oneshot -av =gnome-base/gconf-3.2.3-r1

参考URL。
http://ubuntuforums.org/showthread.php?t=1939185