ubuntu

mount virtualbox shared folder in Ubuntu

fstab hogesharedname /mnt/hoge vboxsf uid=hogeuser,gid=hogegroup

Ubuntu上で日本語ファイル名のディレクトリをwindows用にzipファイルにする | make a zip file from a japanease name directory for windows on linux

for i in * do test -d "$i" || continue echo "$i" convmv -r --notest -f utf8 -t cp932 "$i"/* &&\ zip -jr "$i".zip "$i"/* &&\ rm -rf "$i" done

ibus setting in emacs on Ubuntu 10.04

install ibus.el http://www11.atwiki.jp/s-irie/pages/21.html sudo add-apt-repository ppa:irie/elisp sudo apt-get update sudo apt-get install ibus-el .emacs ;;;; http://www11.atwiki.jp/s-irie/pages/21.html (require 'ibus) ;; Turn on ibus-mod…

Ubuntu 9.04 でキーボードのキーをカスタマイズ|How to change a keyboard key to other key

右シフトキーをバックスラッシュ/バー キーに変更する|set right shift key as backslach/bar key ~/.Xmodmap ファイルを作成|create ~/.Xmodmap ! set right shift key as backslash/bar key keycode 62 = backslash bar 再ログインすると設定ダイアログが…

Ubuntu 9.04 にメイリオ フォントを設定する|How to set Meiryo Fonts in Ubuntu 9.04

メイリオ フォントファイルを ~/.fonts ディレクトリに配置する|put Meiryo font files in ~/.fonts directory ls ~/.fonts/ .fonts/meiryob.ttc .fonts/meiryoKeGothic.ttc .fonts/meiryoKeGothicB.ttc .fonts/meiryo.ttc フォントキャッシュの再構築|rebui…