QQ登录

只需一步,快速开始

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 3512|回复: 29

请需要安装 GNOME 2.12 的朋友修改数据源的设置

[复制链接]
发表于 2006-5-25 21:24:17 | 显示全部楼层 |阅读模式
由于 KDE 与 GNOME 的版本更新并不同步,apt.magiclinux.org 的仓库中软件包的依赖性可能会导致 GNOME 2.12 无法安装。建议需要安装 GNOME 的用户,禁用 apt.magiclinux.org 的 gnome & extras 源,以保证 GNOME 软件包的稳定。

相关源的设置如下( 请复制以下脚本,并粘贴到终端中, 以下操作均需要使用 root 用户执行 ):

1. APT 配置设置:

[code:1]
cat << END > /etc/apt/sources.list.d/magic.list
# Name: aptrpms
# URL: http://auvtech.com/~xinzhen/downloads/apt/
#      http://apt.magiclinux.org
#      http://cuit.lcuc.org

### MagicLinux
rpm http://auvtech.com/~xinzhen/downloads/apt/ magic-2-0-g12 os updates
rpm http://apt.magiclinux.org/ magiclinux os updates
rpm http://cuit.lcuc.org/ magiclinux os updates
rpm-src http://auvtech.com/~xinzhen/downloads/apt/ magic-2-0-g12 updates
rpm-src http://apt.magiclinux.org/ magiclinux os updates
rpm-src http://cuit.lcuc.org/ magiclinux os updates

### Gnome2.12 for MagicLinux
rpm http://auvtech.com/~xinzhen/downloads/apt/ magic-2-0-g12 gnome extras
rpm-src http://auvtech.com/~xinzhen/downloads/apt/ magic-2-0-g12 gnome extras

# 注意:由于 KDE 与 GNOME 的版本更新并不同步,以下仓库中的依赖性可能会导致 GNOME 2.12 无法安装。
# 对于使用 GNOME 的用户,建议禁用以下几个仓库。
# rpm http://apt.magiclinux.org/ magiclinux gnome extras
# rpm http://cuit.lcuc.org/ magiclinux gnome extras
# rpm-src http://apt.magiclinux.org/ magiclinux gnome extras
# rpm-src http://cuit.lcuc.org/ magiclinux gnome extras

### Gnome2.10 for MagicLinux
# rpm http://auvtech.com/~xinzhen/downloads/apt/ magic-2-0 gnome extras
# rpm-src http://auvtech.com/~xinzhen/downloads/apt/ magic-2-0 gnome extras
# rpm http://apt.magiclinux.org/ magic-2-0 gnome extras
# rpm http://cuit.lcuc.org/ magic-2-0 gnome extras
# rpm-src http://apt.magiclinux.org/ magic-2-0 gnome extras
# rpm-src http://cuit.lcuc.org/ magic-2-0 gnome extras


END[/code:1]

或者下载我上传的配置文件 magic.list  ( 因为上传限制改名为 magic.list.txt ) 放到 /etc/apt/sources.list.d/ 目录中


2. SmartPackageManager(智能包管理器) 的设置:

[code:1]
cat << END > rebuild-smart-channels.sh
#!/bin/bash
# Usage : This script will rebuild the channels of the smart package manager.

smart channel --remove-all -y

smart channel --add [email protected] type=apt-rpm \
        name="Magic Linux 2.0 APT Os Repository" \
        baseurl=http://apt.magiclinux.org/magiclinux \
        components=os -y
smart channel --add [email protected] type=apt-rpm \
        name="Magic Linux 2.0 APT Os Repository" \
        baseurl=http://cuit.lcuc.org/magiclinux \
        components=os -y
smart channel --add [email protected] type=apt-rpm \
        name="Magic Linux 2.0 APT Os Repository" \
        baseurl=http://auvtech.com/~xinzhen/downloads/apt/magic-2-0-g12 \
        components=os -y

smart channel --add [email protected] type=apt-rpm \
        name="Magic Linux 2.0 APT Updates Repository" \
        baseurl=http://apt.magiclinux.org/magiclinux \
        components=updates -y
smart channel --add [email protected] type=apt-rpm \
        name="Magic Linux 2.0 APT Updates Repository" \
        baseurl=http://cuit.lcuc.org/magiclinux \
        components=updates -y
smart channel --add [email protected] type=apt-rpm \
        name="Magic Linux 2.0 APT Updates Repository" \
        baseurl=http://auvtech.com/~xinzhen/downloads/apt/magic-2-0-g12 \
        components=updates -y

smart channel --add [email protected] type=apt-rpm \
        name="Magic Linux 2.0 APT Gnome Repository" \
        baseurl=http://apt.magiclinux.org/magiclinux \
        components=gnome -y
smart channel --add [email protected] type=apt-rpm \
        name="Magic Linux 2.0 APT Gnome Repository" \
        baseurl=http://cuit.lcuc.org/magiclinux \
        components=gnome -y
smart channel --add [email protected] type=apt-rpm \
        name="Magic Linux 2.0 APT Gnome Repository" \
        baseurl=http://auvtech.com/~xinzhen/downloads/apt/magic-2-0-g12 \
        components=gnome -y

smart channel --add [email protected] type=apt-rpm \
        name="Magic Linux 2.0 APT Extras Repository" \
        baseurl=http://apt.magiclinux.org/magiclinux \
        components=extras -y
smart channel --add [email protected] type=apt-rpm \
        name="Magic Linux 2.0 APT Extras Repository" \
        baseurl=http://cuit.lcuc.org/magiclinux \
        components=extras -y
smart channel --add [email protected] type=apt-rpm \
        name="Magic Linux 2.0 APT Extras Repository" \
        baseurl=http://auvtech.com/~xinzhen/downloads/apt/magic-2-0-g12 \
        components=extras -y
       
smart channel --disable [email protected]
smart channel --disable [email protected]
smart channel --disable [email protected]
smart channel --disable [email protected]

smart update

END[/code:1]

或者下载我上传的脚本:rebuild-smart-channels.sh

最后执行脚本,更新 Smart 源。
[code:1]
sh rebuild-smart-channels.sh
[/code:1]

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?注册

×
发表于 2006-5-25 22:55:14 | 显示全部楼层
谢谢 heyuqi兄弟的 提醒 昨天我安装Gnome着实 费了好大力  最后是先安装了那几个包  在apt-get install gnome-core 才成功。 不过 我觉得官方的源太慢了 那个成都的不错 比较快 请问改怎么修改 这上面的设置呢?
回复

使用道具 举报

发表于 2006-5-25 23:02:06 | 显示全部楼层
只需要把apt.magiclinux.org换成那个的域名就行。
回复

使用道具 举报

 楼主| 发表于 2006-5-25 23:28:46 | 显示全部楼层
[quote:1fd852472d="tsinghan"]谢谢 heyuqi兄弟的 提醒 昨天我安装Gnome着实 费了好大力  最后是先安装了那几个包  在apt-get install gnome-core 才成功。 不过 我觉得官方的源太慢了 那个成都的不错 比较快 请问改怎么修改 这上面的设置呢?[/quote]

APT 与 SMART 的设置就像 sejishixiong 说的,把 apt.magiclinux.org 换成 cuit.lcuc.org 就行了。

不过,因为 cuit.lcuc.org 是镜像 apt.magiclinux.org 的,存在同样的依赖性问题。

如果你想用 cuit.lcuc.org 而不是 auvtech.com 的源,有一个折中的办法,安装 GNOME 2.12 请使用以下命令:

[code:1]
smart install gstreamer-0.8.11 gnome-core -y
[/code:1]

这是利用指定软件包版本的方法来解决问题,但是不能确定以后会不会新的依赖性问题,还是建议使用 auvtech.com 的仓库
回复

使用道具 举报

发表于 2006-5-25 23:38:02 | 显示全部楼层
谢谢 色兄    
回复

使用道具 举报

发表于 2006-5-26 08:11:59 | 显示全部楼层
我会尽快把gstreamer移除的。
回复

使用道具 举报

发表于 2006-5-26 09:15:02 | 显示全部楼层

我用sejishikong的非官方工具盘安装顺利啊?!

我用非官方工具盘安装gnome2.12时很顺利啊,并没有遇到什么冲突无法安装的问题啊?
大家为什么不用工具盘安装,而要去用那奇慢的网络安装呢,而且很容易失败!

我觉得像gnome这样比较大和热门的程序是应该做工具盘的,这真的可以方便许多人!
回复

使用道具 举报

发表于 2006-5-26 09:22:05 | 显示全部楼层
呵呵,慢是相对的,有人速度还可以。
现在可以直接用了,不用修改源了。
成理那个可能同步还需要时间。
回复

使用道具 举报

 楼主| 发表于 2006-5-26 09:25:46 | 显示全部楼层
[quote:7130f7bb55="sejishikong"]呵呵,慢是相对的,有人速度还可以。
现在可以直接用了,不用修改源了。
成理那个可能同步还需要时间。[/quote]

太好了,不过 KDE 要上 3.5.3( 3.5.2 ),不需要 gstreamer 0.10 吗?
回复

使用道具 举报

发表于 2006-5-26 09:39:13 | 显示全部楼层
到时再说吧。gstreamer应该只是amarok需要吧,而且是可选的。不过好像用gstreamer做后端的话,功能要好些。
回复

使用道具 举报

 楼主| 发表于 2006-5-26 12:53:49 | 显示全部楼层
[quote:538252109a="sejishikong"]到时再说吧。gstreamer应该只是amarok需要吧,而且是可选的。不过好像用gstreamer做后端的话,功能要好些。[/quote]
回复

使用道具 举报

发表于 2006-5-26 13:28:57 | 显示全部楼层
[quote:c59b741f8b="sejishikong"]呵呵,慢是相对的,有人速度还可以。
现在可以直接用了,不用修改源了。
成理那个可能同步还需要时间。[/quote]
成都信息工程学院的源还没有完全的同步,由于教育网和网通的问题,不过应该快了。
回复

使用道具 举报

发表于 2006-5-26 13:29:31 | 显示全部楼层
[quote:e99f9d4630="sejishikong"]呵呵,慢是相对的,有人速度还可以。
现在可以直接用了,不用修改源了。
成理那个可能同步还需要时间。[/quote]
成都信息工程学院的源还没有完全的同步,由于教育网和网通的问题,不过应该快了。
回复

使用道具 举报

发表于 2006-5-27 16:56:16 | 显示全部楼层
2.12? 好像 2.14的有出了吧?

总感觉 ML2 的APT不好用,,跟 DEBIAN里的不太一样...  不会用
回复

使用道具 举报

发表于 2006-5-27 18:23:14 | 显示全部楼层
[quote:d5e7fa4989="sejishikong"]到时再说吧。gstreamer应该只是amarok需要吧,而且是可选的。不过好像用gstreamer做后端的话,功能要好些。[/quote]
我还是喜欢 xine + win32codec
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

GMT+8, 2024-11-28 07:59 , Processed in 0.084790 second(s), 16 queries .

© 2021 Powered by Discuz! X3.5.

快速回复 返回顶部 返回列表