在虚拟机里面搞了几个月的freebsd,难搞,换着试试debian,今天把kde汉化搞成功了,桌面配置完成,以后弄弄服务器试试。之前在freebsd上也配好过桌面,不过在做服务器的时候还是觉得比较难搞,我不太有耐心,这几天有时间弄弄debian的服务器的配置,先从ftp服务器下手。目前至少感觉在安装方面,debian方便不少。
下面是在网上找到的汉化资料,设置简单:
英文debian汉化-安装和汉化KDE桌面有时候为了避免乱码的出现,可在装debian时采用英文,然后进过几步简单的设置就能正确显示和输入汉字了,具体方法如下(需要注意的是我用的是KDE,GNOME下会有所不同):
首先要安装汉字包:
常用的汉字包主要有以下几种:
ttf-arphic-bkai00mp 繁体楷书
ttf-arphic-gbsn00lp 简体楷书
ttf-arphic-gkai00mp 简体宋体
ttf-arphic-uming 繁简宋体
ttf-arphic-ukai 繁简楷书
在文件/etc/apt/sources.list中加入这两行:
deb ftp://202.203.132.242/Debian/debian sarge main contrib non-free
deb ftp://202.203.132.242/Debian/debian sid main contrib non-free
然后用命令:
apt-get install ttf-arphic-bkai00mp ttf-arphic-gbsn00lp ttf-arphic-gkai00mp ttf-arphic-uming ttf-arphic-ukai
(可以全装,也可以选自己想要的装,不过在下推荐全装)
一,这里用Windows下的字体,打开”控制面板“,双击”字体“,将里面自己喜欢的字体复制到Debian下,可以放在/usr/loca/share/fonts/目录下。
二,设置locale,运行locale命令查看当前使用的locale,用 locale -a查看可以使用的locale,我使用的是zh_CN.GB2312,可以使用命令dpkg-reconfigure locales配置locale,也可以在用户主目录下的.bashrc文件中加入这一行:
export LC_ALL=zh_CN.GB2312
三,点KDE的主菜单,选Actions下的settings->System Administration->Font Installer,这个程序就列出了系统里安装过了的字体,点Add Fonts...,会出现一个浏览的对话框,然后你选你自己存放字体的目录/usr/local/share/fonts/,点确定就将window下的字体添加到debian系统中了.
四,备份和修改/etc/X11/xorg.conf文件:
备份:cd /etc/X11/回车
cp xorg.conf xorg.conf-back回车,这样就备份了这个文件
然后用任意一种编辑器编辑xorg.conf(注意有的系统不是这个文件而是XF86Config-4这个文件)在里面加入这一行:FontPath "/usr/local/share/fonts/"
Section "Files"
FontPath "/usr/local/share/fonts/"
FontPath "/usr/share/fonts/X11/misc"
FontPath "/usr/X11R6/lib/X11/fonts/misc"
FontPath "/usr/share/fonts/X11/cyrillic"
FontPath "/usr/X11R6/lib/X11/fonts/cyrillic"
FontPath "/usr/share/fonts/X11/100dpi/:unscaled"
FontPath "/usr/X11R6/lib/X11/fonts/100dpi/:unscaled"
FontPath "/usr/share/fonts/X11/75dpi/:unscaled"
FontPath "/usr/X11R6/lib/X11/fonts/75dpi/:unscaled"
FontPath "/usr/share/fonts/X11/Type1"
FontPath "/usr/X11R6/lib/X11/fonts/Type1"
FontPath "/usr/share/fonts/X11/100dpi"
FontPath "/usr/X11R6/lib/X11/fonts/100dpi"
FontPath "/usr/share/fonts/X11/75dpi"
FontPath "/usr/X11R6/lib/X11/fonts/75dpi"
然后保存退出,重启动X就行了。