- 论坛徽章:
- 0
|
装了许多次Ubuntu了,每次都在
Ubuntu中文
网站上查看相关资料,抽个空把它整理一下。全部是本机上的步骤,还待补充。
1.修改源并升级到最新的系统:
sudo gedit /etc/apt/sources.list
在编辑器里,删除所有东西,并在加上下面的行:
deb http://ubuntu.cn99.com/ubuntu/ breezy main restricted universe multiverse
deb http://ubuntu.cn99.com/ubuntu/ breezy-updates main restricted universe multiverse
deb http://ubuntu.cn99.com/ubuntu/ breezy-security main restricted universe multiverse
deb http://ubuntu.cn99.com/ubuntu/ breezy-backports main restricted universe multiverse
deb http://ubuntu.cn99.com/ubuntu-cn/ breezy main restricted universe multiverse
deb http://ubuntu.cn99.com/backports/ breezy-extras main restricted universe multiverseyyp
系统升级(如果出现需要输入[Y/n] 或 [y/N] 一律输入 y 并 回车):
sudo apt-get update
sudo apt-get dist-upgrade
2.设置本地local环境
sudo dpkg-reconfigure locales
确保 zh_CN.UTF-8 被选择,同时也默认local为 zh_CN.UTF-8
安装中文语言支持:
sudo apt-get install language-pack-zh language-pack-zh-base language-support-zh
3.用xp带的字体来进行中文美化:拷贝3个字体文件(simsun.ttc SURSONG.TTF tahoma.ttf)到/usr/share/fonts/zh_CN/TrueType/ 目录
更新linux字体列表,命令:
sudo fc-cache /usr/share/fonts/zh_CN/TrueType/
修改/etc/fonts/fonts.conf的字体渲染顺序:
sudo gedit /etc/fonts/fonts.conf
查找
Bitstream Vera Serif
改为
Tahoma
SimSun
Simsun
Bitstream Vera Serif
查找
Bitstream Vera Sans
改为
Tahoma
SimSun
Simsun
Bitstream Vera Sans
查找
Bitstream Vera Sans Mono
改为
Bitstream Vera Sans Mono
NSimSun
SimSun
Simsun
4.安装SCIM输入法sudo apt-get install scim scim-gtk2-immodule scim-modules-socket scim-modules-table scim-pinyin scim-tables-zh scim-input-pad
sudo sh -c " echo 'export XMODIFIERS=@im=SCIM ; export GTK_IM_MODULE="scim" ; scim -d ' > /etc/X11/Xsession.d/95xinput "
sudo chmod +755 /etc/X11/Xsession.d/95xinput
5.设置LC_ALL和其它属性:
sudo gedit /etc/environment
在编辑器里,将内容修改如下:
LANGUAGE="zh_CN:zh:en_US:en"
LC_ALL=zh_CN.UTF-8
LANG=zh_CN.UTF-8
GST_ID3_TAG_ENCODING=GBK
保存,关闭编辑器
6.多媒体播放器、英汉辞典安装sudo apt-get install beep-media-player totem-xine w32codecs gstreamer0.8-plugins
sudo apt-get install stardict stardict-common stardict-cdict-gb stardict-cedict-gb stardict-hanzim stardict-langdao-ce-gb stardict-langdao-ec-gb stardict-oxford-gb stardict-xdict-ce-gb stardict-xdict-ec-gb
7.升级你的内核
sudo apt-get install linux-k7
8.VMware安装下载 VMware 5
wget -c http://xxxxxxx/VMware-workstation-5.0.0-13124.tar.gz
安装 VMware 的需要包
sudo apt-get install build-essential
sudo apt-get install linux-headers-`uname -r`
安装 VMware
tar zxvf VMware-workstation-5.0.0-13124.tar.gz
cd vmware-distrib
sudo ./vmware-install.p
9.安装NVIDIA显卡的驱动程序
sudo apt-get install nvidia-glx
sudo apt-get install nvidia-settings
sudo cp /etc/X11/xorg.conf /etc/X11/xorg.conf_backup
sudo nvidia-glx-config enable
取消 GNOME 启动时显示的 NVIDIA 图形 LOGO
sudo gedit /etc/X11/xorg.conf
# 搜寻这一段文字
...
Section "Device"
Identifier "NVIDIA Corporation NV11 [GeForce2 MX/MX 400]"
Driver "nvidia"
BusID "PCI:1:0:0"
...
在这下面新增下面这一行
Option "NoLogo"
保存编辑过的文件
10.手动挂载硬盘及Windows分区
hdparm -d1 -c3 -m16 -X69 /dev/hda
hdparm -d1 -c3 -m16 -X69 /dev/hdb
mount /dev/hda5 /windows/hda5 -t vfat -o utf8,umask=000
时间校准及windows下系统时间不准的问题
Samba的安装配置
本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/19755/showart_163050.html |
|