Home » ubuntu » 2008 » 11 » [组图]Ubuntu 8.10常用配置设置方法

[组图]Ubuntu 8.10常用配置设置方法

1 Star2 Stars3 Stars4 Stars5 Stars (欢迎您为本文打分)
Loading ... Loading ...

本文图文并茂,以够用为原则,讲述Ubuntu 8.10常用配置的设置方法,如果你刚刚接触并以安装好了Ubuntu 8.10,本文是好的选择,如果你需要更详细的配置资料,请参看:Ubuntu 8.10(Intrepid Ibex)安装配置大全

本文涉及的基本配置篇主要包括如下几点:

   ● 配置联网
   ● 配置软件源
    ●安装中文语言支持
    ●NTFS卷的自动挂载
    ●配置桌面图标
 

配置联网
如果你在安装过程中没有连接到网络,当你第一次启动进入Ubuntu的时候,你可能会看到如下提示,告知你系统语言支持不完整:

 

也许你此时尚未配置好联网,因此,你可能暂时不能处理这个问题。因此先点击“Close”关闭对话框。我们回头再来处理。

Ubuntu 8.10的网络配置功能得到了很大的增强。之前一直被人所诟病的pppoeconf也终于有了图形界面配置程序。右键点击Gnome上面板上的网络连接图标,选择“编辑连接”。

这时,网络连接配置对话框打开。你能看到各种接入方式的配置标签。

这里我们以配置ADSL为例做演示。选择DSL标签,点击“添加”(或“Add”)按钮。这时可以看到ADSL的配置对话框。你只需输入你自己的帐号信息,就能进行拨号了。

咦,在哪里拨号?别急。左键点击Gnome上方面板右侧托盘里的网络图标,是不是发现我们刚才新建的ADSL链接已经有了呢?你只需选中它就能开始拨号。【我没有这么幸福有ADSL用,所以无法测试。以上只是一个简单的演示,请根据实际情况进行配置。】

Ubuntu 8.10的这项小改进,让普通用户离命令行又远了一点。

配置软件源

软件源的配置有两种方法,一是用系统自带的软件源配置工具。但是这种方法实在是不好用——虽然是图形界面的,但是非常的不好用。我自己都不用这种方法。你可以通过“系统” - “系统管理” - “软件源”找到这个工具。

另一种方法是直接编辑/etc/apt/sources.list文件。我接下来就要介绍这种方法。虽然有点“返璞归真”,违背了“零命令”的承诺,但是这种方法快速高效,实际上也无需任何特别技术就能做到。

首先,按下Alt-F2(请记住这个快捷键,我们还会用到它),这时打开了一个类似Windows下“运行”对话框的“运行命令”对话框。其实两者的功能也是完全一样的。 :) 输入“gksu gedit /etc/apt/sources.list”。这段小命令的意思是用管理员的身份,打开Gnome的文本编辑器,编辑/etc/apt/sources.list这个文件。

打开后你会看到一大堆乱七八糟的文本。不管三七二十一,直接全部删除。

复制下面的软件源中的某一块或几块到编辑器中。下面这个源列表是Linuxsir的dsj兄弟整理的。【请务必整块整块地复制】:

# Archive.ubuntu.com更新服务器(欧洲,此为官方源,电信网通用户使用,建议屏蔽它,我这里就使用了#注释掉了,因为现在这个官方源比较卡,加在这里没有用)
#deb http://archive.ubuntu.com/ubuntu/ intrepid main restricted universe multiverse
#deb http://archive.ubuntu.com/ubuntu/ intrepid-security main restricted universe multiverse
#deb http://archive.ubuntu.com/ubuntu/ intrepid-updates main restricted universe multiverse
#deb http://archive.ubuntu.com/ubuntu/ intrepid-proposed main restricted universe multiverse
#deb http://archive.ubuntu.com/ubuntu/ intrepid-backports main restricted universe multiverse
#deb-src http://archive.ubuntu.com/ubuntu/ intrepid main restricted universe multiverse
#deb-src http://archive.ubuntu.com/ubuntu/ intrepid-security main restricted universe multiverse
#deb-src http://archive.ubuntu.com/ubuntu/ intrepid-updates main restricted universe multiverse
#deb-src http://archive.ubuntu.com/ubuntu/ intrepid-proposed main restricted universe multiverse
#deb-src http://archive.ubuntu.com/ubuntu/ intrepid-backports main restricted universe multiverse

# Ubuntu.cn99.com更新服务器(江苏省常州市电信,推荐电信用户使用)

deb http://ubuntu.cn99.com/ubuntu/ intrepid main restricted universe multiverse
deb http://ubuntu.cn99.com/ubuntu/ intrepid-security main restricted universe multiverse
deb http://ubuntu.cn99.com/ubuntu/ intrepid-updates main restricted universe multiverse
deb http://ubuntu.cn99.com/ubuntu/ intrepid-proposed main restricted universe multiverse
deb http://ubuntu.cn99.com/ubuntu/ intrepid-backports main restricted universe multiverse
deb-src http://ubuntu.cn99.com/ubuntu/ intrepid main restricted universe multiverse
deb-src http://ubuntu.cn99.com/ubuntu/ intrepid-security main restricted universe multiverse
deb-src http://ubuntu.cn99.com/ubuntu/ intrepid-updates main restricted universe multiverse
deb-src http://ubuntu.cn99.com/ubuntu/ intrepid-proposed main restricted universe multiverse
deb-src http://ubuntu.cn99.com/ubuntu/ intrepid-backports main restricted universe multiverse

# Mirrors.shlug.org更新服务器(电信服务器,Ubuntu China Official Mirror, maintained by Shanghai Linux User Group)

deb http://cn.archive.ubuntu.com/ubuntu/ intrepid main restricted universe multiverse
deb http://cn.archive.ubuntu.com/ubuntu/ intrepid-security main restricted universe multiverse
deb http://cn.archive.ubuntu.com/ubuntu/ intrepid-updates main restricted universe multiverse
deb http://cn.archive.ubuntu.com/ubuntu/ intrepid-backports main restricted universe multiverse
deb http://cn.archive.ubuntu.com/ubuntu/ intrepid-proposed main restricted universe multiverse
deb-src http://cn.archive.ubuntu.com/ubuntu/ intrepid main restricted universe multiverse
deb-src http://cn.archive.ubuntu.com/ubuntu/ intrepid-security main restricted universe multiverse
deb-src http://cn.archive.ubuntu.com/ubuntu/ intrepid-updates main restricted universe multiverse
deb-src http://cn.archive.ubuntu.com/ubuntu/ intrepid-backports main restricted universe multiverse
deb-src http://cn.archive.ubuntu.com/ubuntu/ intrepid-proposed main restricted universe multiverse

# Mirror.lupaworld.com更新服务器(浙江省杭州市双线服务器)
deb http://mirror.lupaworld.com/ubuntu/ intrepid main restricted universe multiverse
deb http://mirror.lupaworld.com/ubuntu/ intrepid-security main restricted universe multiverse
deb http://mirror.lupaworld.com/ubuntu/ intrepid-updates main restricted universe multiverse
deb http://mirror.lupaworld.com/ubuntu/ intrepid-backports main restricted universe multiverse
deb http://mirror.lupaworld.com/ubuntu/ intrepid-proposed main restricted universe multiverse
deb-src http://mirror.lupaworld.com/ubuntu/ intrepid main restricted universe multiverse
deb-src http://mirror.lupaworld.com/ubuntu/ intrepid-security main restricted universe multiverse
deb-src http://mirror.lupaworld.com/ubuntu/ intrepid-updates main restricted universe multiverse
deb-src http://mirror.lupaworld.com/ubuntu/ intrepid-backports main restricted universe multiverse
deb-src http://mirror.lupaworld.com/ubuntu/ intrepid-proposed main restricted universe multiverse

# 厦门大学更新服务器(教育网服务器)

deb ftp://ubuntu.realss.cn/ubuntu/ intrepid main restricted universe multiverse
deb ftp://ubuntu.realss.cn/ubuntu/ intrepid-backports restricted universe multiverse
deb ftp://ubuntu.realss.cn/ubuntu/ intrepid-proposed main restricted universe multiverse
deb ftp://ubuntu.realss.cn/ubuntu/ intrepid-security main restricted universe multiverse
deb ftp://ubuntu.realss.cn/ubuntu/ intrepid-updates main restricted universe multiverse
deb-src ftp://ubuntu.realss.cn/ubuntu/ intrepid main restricted universe multiverse
deb-src ftp://ubuntu.realss.cn/ubuntu/ intrepid-backports main restricted universe multiverse
deb-src ftp://ubuntu.realss.cn/ubuntu/ intrepid-proposed main restricted universe multiverse
deb-src ftp://ubuntu.realss.cn/ubuntu/ intrepid-security main restricted universe multiverse
deb-src ftp://ubuntu.realss.cn/ubuntu/ intrepid-updates main restricted universe multiverse

# 成都市 电子科技大学更新服务器(教育网,推荐校园网和网通用户使用,通常较快)

deb http://ubuntu.uestc.edu.cn/ubuntu/ intrepid main multiverse restricted universe
deb http://ubuntu.uestc.edu.cn/ubuntu/ intrepid-backports main multiverse restricted universe
deb http://ubuntu.uestc.edu.cn/ubuntu/ intrepid-proposed main multiverse restricted universe
deb http://ubuntu.uestc.edu.cn/ubuntu/ intrepid-security main multiverse restricted universe
deb http://ubuntu.uestc.edu.cn/ubuntu/ intrepid-updates main multiverse restricted universe
deb-src http://ubuntu.uestc.edu.cn/ubuntu/ intrepid main multiverse restricted universe
deb-src http://ubuntu.uestc.edu.cn/ubuntu/ intrepid-backports main multiverse restricted universe
deb-src http://ubuntu.uestc.edu.cn/ubuntu/ intrepid-proposed main multiverse restricted universe
deb-src http://ubuntu.uestc.edu.cn/ubuntu/ intrepid-security main multiverse restricted universe
deb-src http://ubuntu.uestc.edu.cn/ubuntu/ intrepid-updates main multiverse restricted universe

# 如果无法解析uestc.edu.cn域名,请使用以下地址

deb http://ubuntu.dormforce.net/ubuntu/ intrepid main multiverse restricted universe
deb http://ubuntu.dormforce.net/ubuntu/ intrepid-backports main multiverse restricted universe
deb http://ubuntu.dormforce.net/ubuntu/ intrepid-proposed main multiverse restricted universe
deb http://ubuntu.dormforce.net/ubuntu/ intrepid-security main multiverse restricted universe
deb http://ubuntu.dormforce.net/ubuntu/ intrepid-updates main multiverse restricted universe
deb-src http://ubuntu.dormforce.net/ubuntu/ intrepid main multiverse restricted universe
deb-src http://ubuntu.dormforce.net/ubuntu/ intrepid-backports main multiverse restricted universe
deb-src http://ubuntu.dormforce.net/ubuntu/ intrepid-proposed main multiverse restricted universe
deb-src http://ubuntu.dormforce.net/ubuntu/ intrepid-security main multiverse restricted universe
deb-src http://ubuntu.dormforce.net/ubuntu/ intrepid-updates main multiverse restricted universe

# 上海市上海交通大学更新服务器(教育网,推荐校园网和网通用户使用,这个通常很快)

deb http://ftp.sjtu.edu.cn/ubuntu/ intrepid main multiverse restricted universe
deb http://ftp.sjtu.edu.cn/ubuntu/ intrepid-backports main multiverse restricted universe
deb http://ftp.sjtu.edu.cn/ubuntu/ intrepid-proposed main multiverse restricted universe
deb http://ftp.sjtu.edu.cn/ubuntu/ intrepid-security main multiverse restricted universe
deb http://ftp.sjtu.edu.cn/ubuntu/ intrepid-updates main multiverse restricted universe
deb-src http://ftp.sjtu.edu.cn/ubuntu/ intrepid main multiverse restricted universe
deb-src http://ftp.sjtu.edu.cn/ubuntu/ intrepid-backports main multiverse restricted universe
deb-src http://ftp.sjtu.edu.cn/ubuntu/ intrepid-proposed main multiverse restricted universe
deb-src http://ftp.sjtu.edu.cn/ubuntu/ intrepid-security main multiverse restricted universe
deb-src http://ftp.sjtu.edu.cn/ubuntu/ intrepid-updates main multiverse restricted universe

# 中国科学技术大学更新服务器(教育网,推荐校园网和网通用户使用 )

deb http://debian.ustc.edu.cn/ubuntu/ intrepid main multiverse restricted universe
deb http://debian.ustc.edu.cn/ubuntu/ intrepid-backports main multiverse restricted universe
deb http://debian.ustc.edu.cn/ubuntu/ intrepid-proposed main multiverse restricted universe
deb http://debian.ustc.edu.cn/ubuntu/ intrepid-security main multiverse restricted universe
deb http://debian.ustc.edu.cn/ubuntu/ intrepid-updates main multiverse restricted universe
deb-src http://debian.ustc.edu.cn/ubuntu/ intrepid main multiverse restricted universe
deb-src http://debian.ustc.edu.cn/ubuntu/ intrepid-backports main multiverse restricted universe
deb-src http://debian.ustc.edu.cn/ubuntu/ intrepid-proposed main multiverse restricted universe
deb-src http://debian.ustc.edu.cn/ubuntu/ intrepid-security main multiverse restricted universe
deb-src http://debian.ustc.edu.cn/ubuntu/ intrepid-updates main multiverse restricted universe

# 中国台湾 台湾大学更新服务器(推荐网通用户使用,电信PING平均响应速度41MS。强烈推荐此源,比较完整,较少出现同步问题)

deb http://ubuntu.csie.ntu.edu.tw/ubuntu/ intrepid main restricted universe multiverse
deb-src http://ubuntu.csie.ntu.edu.tw/ubuntu/ intrepid main restricted universe multiverse
deb http://ubuntu.csie.ntu.edu.tw/ubuntu/ intrepid-updates main restricted universe multiverse
deb-src http://ubuntu.csie.ntu.edu.tw/ubuntu/ intrepid-updates main restricted universe multiverse
deb http://ubuntu.csie.ntu.edu.tw/ubuntu/ intrepid-backports main restricted universe multiverse
deb-src http://ubuntu.csie.ntu.edu.tw/ubuntu/ intrepid-backports main restricted universe multiverse
deb http://ubuntu.csie.ntu.edu.tw/ubuntu/ intrepid-security main restricted universe multiverse
deb-src http://ubuntu.csie.ntu.edu.tw/ubuntu/ intrepid-security main restricted universe multiverse
deb http://ubuntu.csie.ntu.edu.tw/ubuntu/ intrepid-proposed main multiverse restricted universe
deb-src http://ubuntu.csie.ntu.edu.tw/ubuntu/ intrepid-proposed main restricted universe multiverse

# mirror.rootguide.org更新服务器(上海市 电信)

deb http://mirror.rootguide.org/ubuntu/ intrepid main restricted universe multiverse
deb-src http://mirror.rootguide.org/ubuntu/ intrepid main restricted universe multiverse
deb http://mirror.rootguide.org/ubuntu/ intrepid-updates main restricted universe multiverse
deb-src http://mirror.rootguide.org/ubuntu/ intrepid-updates main restricted universe multiverse
deb http://mirror.rootguide.org/ubuntu/ intrepid-backports main restricted universe multiverse
deb-src http://mirror.rootguide.org/ubuntu/ intrepid-backports main restricted universe multiverse
deb http://mirror.rootguide.org/ubuntu/ intrepid-security main restricted universe multiverse
deb-src http://mirror.rootguide.org/ubuntu/ intrepid-security main restricted universe multiverse
deb http://mirror.rootguide.org/ubuntu/ intrepid-proposed main multiverse restricted universe
deb-src http://mirror.rootguide.org/ubuntu/ intrepid-proposed main restricted universe multiverse

# 台湾的官方源速度也相当不错,有时甚至快于内地的

deb http://tw.archive.ubuntu.com/ubuntu/ intrepid main restricted universe multiverse
deb http://tw.archive.ubuntu.com/ubuntu/ intrepid-security main restricted universe multiverse
deb http://tw.archive.ubuntu.com/ubuntu/ intrepid-updates main restricted universe multiverse
deb http://tw.archive.ubuntu.com/ubuntu/ intrepid-backports main restricted universe multiverse
deb http://tw.archive.ubuntu.com/ubuntu/ intrepid-proposed main restricted universe multiverse
deb-src http://tw.archive.ubuntu.com/ubuntu/ intrepid main restricted universe multiverse
deb-src http://tw.archive.ubuntu.com/ubuntu/ intrepid-security main restricted universe multiverse
deb-src http://tw.archive.ubuntu.com/ubuntu/ intrepid-updates main restricted universe multiverse
deb-src http://tw.archive.ubuntu.com/ubuntu/ intrepid-backports main restricted universe multiverse
deb-src http://tw.archive.ubuntu.com/ubuntu/ intrepid-proposed main restricted universe multiverse

因为各个源的速度不一,因此请选择比较快的源。【怎么选择?试一下就知道了。】你也不要贪多,一次把所有的源都加入进去。源太多了,每次更新源会慢的要命,而且升级程序也不会自动选择速度快的源,所以,加入一到两个快速源就足够了。

保存并关闭。打开“系统” - “系统管理” - “更新管理器”,更新软件源,并升级系统。

点击“Check”检查并安装更新。

安装完更新之后,如果系统提示你重启,你可以重启,也可以暂时不要重启,等配置完毕后再重启。

安装中文语言支持
好了,把网络和软件源配置完毕之后,就可以开始安装语言支持了。安装语言支持也很简单,打开“系统” - “系统管理” - “语言支持”。

这时你可能看到一个对话框,提示你语言支持不完整,是否安装,选择“安装”。

安装完毕后,中文支持是加上还是没有好,在语言支持列表中选中“汉语”和“英语”。点击“OK”确认操作。

点击Gnome面板上的蓝色重启提示,重启系统。

重新登陆后,新的语言设置已经被应用到系统中了。

NTFS卷的自动挂载

Ubuntu不会自动挂载NTFS格式的分区。如果你的系统里有NTFS卷,每次重启都得重新挂载一遍着实非常麻烦。

解决方法很简单。打开“系统” - “系统管理” - “新立得软件包管理器”,搜索ntfs-config。右键点击,选择“标记以便安装”

安装完毕后,打开“应用程序” - “系统工具” - “NTFS写入支持配置程序”:

程序启动后,就会找到未挂载的分区,选中它:

然后,出现配置对话框,勾上对内部设备的写支持和对外部设备的写支持,点击确定:

这样,以后就无需手动挂载NTFS分区了。

配置桌面图标

默认情况下,桌面上是没有任何图标的,挂载的卷会自动出现在桌面上。你可以通过如下方法配置。Alt-F2打开“运行应用程序”对话框:

配置编辑器启动。这个程序看起来很像Windows下的注册表编辑器。在左侧的树状结构中找到如下分支:/apps/nautilus/desktop/下。然后根据你自己的需要勾选显示在桌面上的项目:computer_icon_visible(计算机图标可见)、home_icon_visible(家目录图标可见)、networkwork_icon_visible(网络服务器图标可见)、trash_icon_visible(回收站图标可见)和volumns_visible(磁盘图标可见)。

好了,关于系统微调大致就介绍这么多。

信息来源:中国IT实验室

原创文章转载请注明:锐博_资源资讯共享网
欢迎收藏本文:

2 条评论 »

huhu 发表于 2008-11-23 13:01:26 Subscribed to comments via email

请问,学校内部固定IP,采用Dr.COM宽带认证客户端登录的,如何设置联网,只能命令行么。
谢谢。希望详细些些,刚安装了ubuntu-8.10-desktop-i386。

 
开源2008 发表于 2008-11-23 13:58:01

今天周末,不讨论技术 :lol:

 
名称 (必填 - 游客随意填写)*
电子邮件 (必填 - 不会对外公布)*
博客(网站)
将留言内容发送到我的邮箱
您的评论 (小尺寸 | 大尺寸)     :lol: :oops: 8) ;) 8O :| :cry: :x :roll: :P :( :o :?: :? :D :)

回复中可使用的代码: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

Trackback responses to this post