六月 5th, 2006
新手的 Ubuntu 安装日志
Category: Ubuntu, Author: Nicky, Popularity: 73%
update:
Ubuntu 7.04 新手指南 (1) [ 安装篇 ]
Ubuntu 7.04 新手指南 (2) [ 设置篇 ]
Ubuntu 分区和文件系统的选择
Ubuntu 6.10 (Edgy) 黑体解决方案
从认识Linux开始,一直都是使用的Redhat系列,刚接触ubuntu还有点不习惯。但是当你熟悉它了以后,一定会有一种爱不释手的感觉,我正是如此。代号为Dapper的ubuntu6.06定于6月1号发布,从早上一直等在电脑旁,哪知因为时差关系得等到北京时间下午5点左右才发布,那时刚好有急事出去了一天。6月2号一回来就迫不及待的下载,由于Dapper把LiveCD和InstallCD集成到了一起,只需要登录到图形界面双击“Install”即可。
一、配置中文环境
进入桌面的第一件事就是配置基本的中文环境,默认安装好后OpenOffice和Firefox都是英文版(在系统安装时可以按F2选择中文环境,则会自动下载中文支持包,但我这里速度不好,故使用下面的方法。),而且自带的SCIM没法使用,系统自带的中文字体也看不惯。解决上面的问题方法有3步:
1、按照UbuntuChina的快速设置指南先更新了“源”,他们提供了4个不同的源地址,我选择了我这里比较快的“mirror.lupaworld.com源”(也是ubuntu 6.06 官方中文版下载镜像)。
sudo cp /etc/apt/sources.list /etc/apt/sources.list_backup
sudo gedit /etc/apt/sources.list
用以下内容替换文件中的所有内容
deb http://mirror.lupaworld.com/ubuntu/archive/ dapper main restricted universe multiverse
deb http://mirror.lupaworld.com/ubuntu/archive/ dapper-security main restricted universe multiverse
deb http://mirror.lupaworld.com/ubuntu/archive/ dapper-updates main restricted universe multiverse
deb http://mirror.lupaworld.com/ubuntu/archive/ dapper-backports main restricted universe multiverse
deb http://mirror.lupaworld.com/ubuntu/ubuntu-cn/ dapper main restricted universe multiverse
deb http://mirror.lupaworld.com/ubuntu/archive/ dapper-security main restricted universe multiverse
deb http://mirror.lupaworld.com/ubuntu/archive/ dapper-updates main restricted universe multiverse
deb http://mirror.lupaworld.com/ubuntu/archive/ dapper-backports main restricted universe multiverse
deb http://mirror.lupaworld.com/ubuntu/ubuntu-cn/ dapper main restricted universe multiverse
deb http://ubuntu.cn99.com/ubuntu/ dapper main restricted universe multiverse
deb http://ubuntu.cn99.com/ubuntu/ dapper-updates main restricted universe multiverse
deb http://ubuntu.cn99.com/ubuntu/ dapper-security main restricted universe multiverse
deb http://ubuntu.cn99.com/ubuntu/ dapper-backports main restricted universe multiverse
deb http://ubuntu.cn99.com/ubuntu-cn/ dapper main restricted universe multiverse
deb http://ubuntu.cn99.com/ubuntu/ dapper-updates main restricted universe multiverse
deb http://ubuntu.cn99.com/ubuntu/ dapper-security main restricted universe multiverse
deb http://ubuntu.cn99.com/ubuntu/ dapper-backports main restricted universe multiverse
deb http://ubuntu.cn99.com/ubuntu-cn/ dapper main restricted universe multiverse
<!--
设定中文最小字号,使得小字的中文美观
-->
<match target="font" >
<test qual="any" name="family" compare="eq" >
<string>SimSun</string>
</test>
<test compare="more_eq" name="pixelsize" >
<int>8</int>
</test>
<test compare="less_eq" name="pixelsize" >
<int>12</int>
</test>
<edit mode="assign" name="pixelsize" >
<int>12</int>
</edit>
</match>
设定中文最小字号,使得小字的中文美观
-->
<match target="font" >
<test qual="any" name="family" compare="eq" >
<string>SimSun</string>
</test>
<test compare="more_eq" name="pixelsize" >
<int>8</int>
</test>
<test compare="less_eq" name="pixelsize" >
<int>12</int>
</test>
<edit mode="assign" name="pixelsize" >
<int>12</int>
</edit>
</match>
if egrep '^(en|ja|kr|zh|bn|gu|hi|kn|ml|mr|ne|pa|ta|te)_' \
<family>Bitstream Vera Serif</family>
<family>SimSun</family>
-adobe-helvetica-medium-r-normal--12-*-*-*-*-*-iso8859-1,-*-*-medium-r-normal--16-*-*-*-*-*-gb2312.1980-0,*-r-*-adobe-helvetica-medium-r-normal--12-*-*-*-*-*-iso8859-1,-*-*-medium-r-normal--16-*-*-*-*-*-gb2312.1980-0,*-r-*
Tags:Ubuntu.
评论数量(23) | Add Comments
本文网址:http://www.osxcn.com/ubuntu/ubuntu-install.html

