Debianデスクトップ構築編
2010/07/26
ですが,設定に詰まることもそこそこに.
特にデスクトップで動作するプログラムの設定などをこの項目では扱います.
BigOwl:~# asoundconf list Names of available sound cards: Intel Audio BigOwl:~# asoundconf set-default-card Audio BigOwl:~#次に/etc/modprobe.d/alsa-baseの最後に
options snd-usb-audio index=0を記述してシステムを再起動.問題は解決しオンボードよりはマシな音で音楽を聴けるようになりました.
** WARNING ** Could not open config file "fontmapsx". CSHS-texts-2010-0607.dvi -> CSHS-texts-2010-0607.pdf [1 ** ERROR ** Could not find encoding file "H". Output file removed.こんなエラーが出る場合は,まず足りないパッケージをインストールします.
% dvipdfmx %CMAPINPUTS = .;/usr/share/fonts/cmap// %上記はデフォルト値 CMAPINPUTS=.;/usr/share/fonts/cmap/adobe-japan1//;/usr/share/fonts/cmap/adobe-japan2//;/usr/share/fonts/cmap/adobe-gb1//;/usr/share/fonts/cmap/gs-cjk-resource//そして,update-texmfを実行します.
BigOwl:/etc/texmf/texmf.d# update-texmf Replacing config file /etc/texmf/texmf.cnf with new version BigOwl:/etc/texmf/texmf.d#これでとりあえずコンパイルはできるようになります.
export G_FILENAME_ENCODING=@localeという行を付け足すとのことです.
:set nu :syntax on :set encoding=euc-jp :language ja_JP.EUC-JP :set gfn=MeiryoKe_Gothic\ 12 :set autoindent :set fileencodings=ucs-bom,iso-2022-jp,utf-8,cp932 :set fileformats=unix,dos,mac :set ambiwidth=double
:set nu :set fileencodings=ucs-bom,iso-2022-jp,utf-8,cp932 :set formatoptions=q「_gvimrc」
"--------------------------------------------------------------------------- " カラー設定: "colorscheme morning colorscheme darkblue
"--------------------------------------------------------------------------- " フォント設定: " if has('win32') " Windows用 "set guifont=MS_Gothic:h11:b:cSHIFTJIS set gfn=MeiryoKe_Gothic:h12:cSHIFTJIS "set guifont=MS_Mincho:h12:cSHIFTJIS " 行間隔の設定 set linespace=1 " 一部のUCS文字の幅を自動計測して決める if has('kaoriya') set ambiwidth=auto endif elseif has('mac') set guifont=Osaka-等幅:h14 elseif has('xfontset') " UNIX用 (xfontsetを使用) set guifontset=a14,r14,k14 endif