heyuqi 发表于 2006-5-25 21:24:17

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

由于 KDE 与 GNOME 的版本更新并不同步,apt.magiclinux.org 的仓库中软件包的依赖性可能会导致 GNOME 2.12 无法安装。建议需要安装 GNOME 的用户,禁用 apt.magiclinux.org 的 gnome & extras 源,以保证 GNOME 软件包的稳定。

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

1. APT 配置设置:


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

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


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


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

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

最后执行脚本,更新 Smart 源。

sh rebuild-smart-channels.sh

tsinghan 发表于 2006-5-25 22:55:14

谢谢 heyuqi兄弟的 提醒 昨天我安装Gnome着实 费了好大力最后是先安装了那几个包在apt-get install gnome-core 才成功。 不过 我觉得官方的源太慢了 那个成都的不错 比较快 请问改怎么修改 这上面的设置呢?

sejishikong 发表于 2006-5-25 23:02:06

只需要把apt.magiclinux.org换成那个的域名就行。

heyuqi 发表于 2006-5-25 23:28:46

谢谢 heyuqi兄弟的 提醒 昨天我安装Gnome着实 费了好大力最后是先安装了那几个包在apt-get install gnome-core 才成功。 不过 我觉得官方的源太慢了 那个成都的不错 比较快 请问改怎么修改 这上面的设置呢?

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

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

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


smart install gstreamer-0.8.11 gnome-core -y


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

tsinghan 发表于 2006-5-25 23:38:02

谢谢 色兄:lol::lol:

sejishikong 发表于 2006-5-26 08:11:59

我会尽快把gstreamer移除的。

秦武扬 发表于 2006-5-26 09:15:02

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

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

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

sejishikong 发表于 2006-5-26 09:22:05

呵呵,慢是相对的,有人速度还可以。
现在可以直接用了,不用修改源了。
成理那个可能同步还需要时间。

heyuqi 发表于 2006-5-26 09:25:46

呵呵,慢是相对的,有人速度还可以。
现在可以直接用了,不用修改源了。
成理那个可能同步还需要时间。

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

sejishikong 发表于 2006-5-26 09:39:13

到时再说吧。gstreamer应该只是amarok需要吧,而且是可选的。不过好像用gstreamer做后端的话,功能要好些。

heyuqi 发表于 2006-5-26 12:53:49

到时再说吧。gstreamer应该只是amarok需要吧,而且是可选的。不过好像用gstreamer做后端的话,功能要好些。

npcomet 发表于 2006-5-26 13:28:57

呵呵,慢是相对的,有人速度还可以。
现在可以直接用了,不用修改源了。
成理那个可能同步还需要时间。
成都信息工程学院的源还没有完全的同步,由于教育网和网通的问题,不过应该快了。

npcomet 发表于 2006-5-26 13:29:31

呵呵,慢是相对的,有人速度还可以。
现在可以直接用了,不用修改源了。
成理那个可能同步还需要时间。
成都信息工程学院的源还没有完全的同步,由于教育网和网通的问题,不过应该快了。

windwiny 发表于 2006-5-27 16:56:16

2.12? 好像 2.14的有出了吧?

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

jiangtao9999 发表于 2006-5-27 18:23:14

到时再说吧。gstreamer应该只是amarok需要吧,而且是可选的。不过好像用gstreamer做后端的话,功能要好些。
我还是喜欢 xine + win32codec
页: [1] 2
查看完整版本: 请需要安装 GNOME 2.12 的朋友修改数据源的设置