Posted on 2009-02-25 20:50
ray' 阅读(372)
评论(0) 编辑 收藏
昨天晚上终于把windowXp请出了硬盘,换上了ubuntu。光驱不巧坏了,只好借了一个。
直接光盘启动就开始装了,建议把网线拔掉后安装,不用检测网络安装语言包之类的。等系统安装完了,换个源再下载语言包会快的多。80G的硬盘boot分区100M,交换分区1G,根分区20G,tmp分区3G,var分区7G,home分区10G,其他的docs分区。大概20分钟左右就安装完了。
可以先把root密码设定一下:sudo passwd root
换个软件源,准备更新下系统,安装点软件。
备份:sudo cp /etc/apt/sources.list /etc/apt/sources.list_backup
编辑;sudo gedit /etc/apt/sources.list
更新:sudo apt-get update
推荐两个源:
Ubuntu.cn99.com更新服务器(江苏省常州市电信,推荐电信用户使用):
deb http://ubuntu.cn99.com/ubuntu/ hardy main restricted universe multiverse
deb http://ubuntu.cn99.com/ubuntu/ hardy-security main restricted universe multiverse
deb http://ubuntu.cn99.com/ubuntu/ hardy-updates main restricted universe multiverse
deb http://ubuntu.cn99.com/ubuntu/ hardy-proposed main restricted universe multiverse
deb http://ubuntu.cn99.com/ubuntu/ hardy-backports main restricted universe multiverse
deb-src http://ubuntu.cn99.com/ubuntu/ hardy main restricted universe multiverse
deb-src http://ubuntu.cn99.com/ubuntu/ hardy-security main restricted universe multiverse
deb-src http://ubuntu.cn99.com/ubuntu/ hardy-updates main restricted universe multiverse
deb-src http://ubuntu.cn99.com/ubuntu/ hardy-proposed main restricted universe multiverse
deb-src http://ubuntu.cn99.com/ubuntu/ hardy-backports main restricted universe multiverse
台湾大学更新服务器(推荐网通用户使用,强烈推荐此源,比较完整):
deb http://ubuntu.csie.ntu.edu.tw/ubuntu/ hardy main restricted universe multiverse
deb-src http://ubuntu.csie.ntu.edu.tw/ubuntu/ hardy main restricted universe multiverse
deb http://ubuntu.csie.ntu.edu.tw/ubuntu/ hardy-updates main restricted universe multiverse
deb-src http://ubuntu.csie.ntu.edu.tw/ubuntu/ hardy-updates main restricted universe multiverse
deb http://ubuntu.csie.ntu.edu.tw/ubuntu/ hardy-backports main restricted universe multiverse
deb-src http://ubuntu.csie.ntu.edu.tw/ubuntu/ hardy-backports main restricted universe multiverse
deb http://ubuntu.csie.ntu.edu.tw/ubuntu/ hardy-security main restricted universe multiverse
deb-src http://ubuntu.csie.ntu.edu.tw/ubuntu/ hardy-security main restricted universe multiverse
deb http://ubuntu.csie.ntu.edu.tw/ubuntu/ hardy-proposed main multiverse restricted universe
deb-src http://ubuntu.csie.ntu.edu.tw/ubuntu/ hardy-proposed main restricted universe multiverse
然后安装中文支持,包括语言包和输入法:
首选项-语言,然后把“中文”勾上,应用后系统就系统开始下载安装了。
输入法安装完以后可以把整个系统更新一下,Ubuntu-8.04的内核已经不是最新的了,另外Firefox3还是beta版。
sudo apt-get dist-upgrade
注意:使用 apt-get upgrade 和 apt-get dist-upgrade 的结果,基本上是相同的,但是apt-get dist-upgrade 在升级的同时会为了解决相依性而安装新套件,而 apt-get upgrade 并不会,对于新系统的升级,建议使用apt-get dist-upgrade,也可以通过新立得软件管理器来升级,这个更方便。
系统升级后,内核更新了。Firefox3也升级到了正式版。
然后需要安装些常用的软件,待续……