找回密码
 注册
快捷导航
查看: 628|回复: 11

【请教】这里有使用linux的黑友吗?

 关闭 [复制链接] |自动提醒
阅读字号:

1万

回帖

1

积分

5983

资产值

初级会员 Rank: 1

注册时间
2005-8-28
发表于 2006-10-19 16:41:56| 字数 3,785| - 中国–北京–北京–朝阳区 联通 | 显示全部楼层 |阅读模式
rt,我安装的是MagicLinux 2.0。安装之后准备更新源。
其中源设置如下:


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

  6. ### MagicLinux
  7. rpm http://auvtech.com/~xinzhen/downloads/apt/ magic-2-0-g12 os updates
  8. rpm http://apt.magiclinux.org/ magiclinux os updates
  9. rpm http://cuit.lcuc.org/ magiclinux os updates
  10. rpm-src http://auvtech.com/~xinzhen/downloads/apt/ magic-2-0-g12 updates
  11. rpm-src http://apt.magiclinux.org/ magiclinux os updates
  12. rpm-src http://cuit.lcuc.org/ magiclinux os updates

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

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

  22. ### Gnome2.10 for MagicLinux
  23. # rpm http://auvtech.com/~xinzhen/downloads/apt/ magic-2-0 gnome extras
  24. # rpm-src http://auvtech.com/~xinzhen/downloads/apt/ magic-2-0 gnome extras
  25. # rpm http://apt.magiclinux.org/ magic-2-0 gnome extras
  26. # rpm http://cuit.lcuc.org/ magic-2-0 gnome extras
  27. # rpm-src http://apt.magiclinux.org/ magic-2-0 gnome extras
  28. # rpm-src http://cuit.lcuc.org/ magic-2-0 gnome extras


  29. END
复制代码

已经保存在 /etc/apt/sources.list.d/ 目录中

接着制作SmartPackageManage脚本


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

  4. smart channel --remove-all -y

  5. smart channel --add os@apt.magiclinux.org type=apt-rpm \
  6.    name="Magic Linux 2.0 APT Os Repository" \
  7.    baseurl=http://apt.magiclinux.org/magiclinux \
  8.    components=os -y
  9. smart channel --add os@cuit.lcuc.org type=apt-rpm \
  10.    name="Magic Linux 2.0 APT Os Repository" \
  11.    baseurl=http://cuit.lcuc.org/magiclinux \
  12.    components=os -y
  13. smart channel --add os@auvtech.com type=apt-rpm \
  14.    name="Magic Linux 2.0 APT Os Repository" \
  15.    baseurl=http://auvtech.com/~xinzhen/downloads/apt/magic-2-0-g12 \
  16.    components=os -y

  17. smart channel --add updates@apt.magiclinux.org type=apt-rpm \
  18.    name="Magic Linux 2.0 APT Updates Repository" \
  19.    baseurl=http://apt.magiclinux.org/magiclinux \
  20.    components=updates -y
  21. smart channel --add updates@cuit.lcuc.org type=apt-rpm \
  22.    name="Magic Linux 2.0 APT Updates Repository" \
  23.    baseurl=http://cuit.lcuc.org/magiclinux \
  24.    components=updates -y
  25. smart channel --add updates@auvtech.com type=apt-rpm \
  26.    name="Magic Linux 2.0 APT Updates Repository" \
  27.    baseurl=http://auvtech.com/~xinzhen/downloads/apt/magic-2-0-g12 \
  28.    components=updates -y

  29. smart channel --add gnome@apt.magiclinux.org type=apt-rpm \
  30.    name="Magic Linux 2.0 APT Gnome Repository" \
  31.    baseurl=http://apt.magiclinux.org/magiclinux \
  32.    components=gnome -y
  33. smart channel --add gnome@cuit.lcuc.org type=apt-rpm \
  34.    name="Magic Linux 2.0 APT Gnome Repository" \
  35.    baseurl=http://cuit.lcuc.org/magiclinux \
  36.    components=gnome -y
  37. smart channel --add gnome@auvtech.com type=apt-rpm \
  38.    name="Magic Linux 2.0 APT Gnome Repository" \
  39.    baseurl=http://auvtech.com/~xinzhen/downloads/apt/magic-2-0-g12 \
  40.    components=gnome -y

  41. smart channel --add extras@apt.magiclinux.org type=apt-rpm \
  42.    name="Magic Linux 2.0 APT Extras Repository" \
  43.    baseurl=http://apt.magiclinux.org/magiclinux \
  44.    components=extras -y
  45. smart channel --add extras@cuit.lcuc.org type=apt-rpm \
  46.    name="Magic Linux 2.0 APT Extras Repository" \
  47.    baseurl=http://cuit.lcuc.org/magiclinux \
  48.    components=extras -y
  49. smart channel --add extras@auvtech.com type=apt-rpm \
  50.    name="Magic Linux 2.0 APT Extras Repository" \
  51.    baseurl=http://auvtech.com/~xinzhen/downloads/apt/magic-2-0-g12 \
  52.    components=extras -y
  53.    
  54. smart channel --disable gnome@apt.magiclinux.org
  55. smart channel --disable gnome@cuit.lcuc.org
  56. smart channel --disable extras@apt.magiclinux.org
  57. smart channel --disable extras@cuit.lcuc.org

  58. smart update

  59. END
复制代码

运行过程中总是出现失速。
请问是否应该先更新SmartPackageManager的版本?
出没于大望路一代……

9246

回帖

83

积分

1万

资产值

至尊会员I Rank: 4Rank: 4Rank: 4Rank: 4

注册时间
2003-9-18
铜牌荣誉勋章(注册8年以上会员)
发表于 2006-10-19 16:57:50| 字数 12| - 中国–北京–北京 电信 | 显示全部楼层
不懂,关注,学习,帮顶。
回复 支持 反对

使用道具 举报

8548

回帖

2

积分

1万

资产值

初级会员 Rank: 1

注册时间
2004-6-8
发表于 2006-10-19 17:01:54| 字数 91| - 中国–北京–北京 移动 | 显示全部楼层
我的redhat linux9也有这么问题 装不上apt的rpm包 找了好久都没搞定  

如果你只是玩linux的话你可以装ubuntu的linux


那个无论装在wm里面还是直接装都一点问题都没有
现在网上的坏风气,非要把好的说成是垃圾才显得自己有才——老费如是说
回复 支持 反对

使用道具 举报

923

回帖

0

积分

3265

资产值

入门会员 Rank: 1

注册时间
2003-12-12
发表于 2006-10-19 19:54:20| 字数 7| - 中国–北京–北京 科技网 | 显示全部楼层
用ubantu
这世界有太多不如意,但你的生活还是要继续
回复 支持 反对

使用道具 举报

6115

回帖

136

积分

6178

资产值

至尊会员II Rank: 4Rank: 4Rank: 4Rank: 4

注册时间
2005-9-2
月全勤勋章银牌荣誉勋章(注册10年以上会员)铜牌荣誉勋章(注册8年以上会员)
发表于 2006-10-19 23:54:53| 字数 13| - 中国–江苏–南京 电信 | 显示全部楼层
不用那个,
我用debian
Note 9
sfp6
回复 支持 反对

使用道具 举报

8548

回帖

2

积分

1万

资产值

初级会员 Rank: 1

注册时间
2004-6-8
发表于 2006-10-20 00:09:57| 字数 21| - 中国–北京–北京–西城区 联通 | 显示全部楼层
debian和ubuntu不一样啊…………
现在网上的坏风气,非要把好的说成是垃圾才显得自己有才——老费如是说
回复 支持 反对

使用道具 举报

2945

回帖

0

积分

2963

资产值

入门会员 Rank: 1

注册时间
2003-7-16
铜牌荣誉勋章(注册8年以上会员)
发表于 2006-10-20 03:36:00| 字数 14| - 中国–北京–北京 联通 | 显示全部楼层
若干年前用过一阵,很菜。。。
X32 2.0/2G/7200.1 100/5213ABG/BMDC3/Battery*3/AC860
X31 1.6/1G/120/5213/BT/2631
回复 支持 反对

使用道具 举报

6822

回帖

0

积分

1

资产值

禁止发言

注册时间
2003-2-11
铜牌荣誉勋章(注册8年以上会员)
发表于 2006-10-20 08:14:49| 字数 60| - 中国–北京–北京–通州区 联通 | 显示全部楼层
提示: 作者被禁止或删除 内容自动屏蔽
签名被屏蔽
回复 支持 反对

使用道具 举报

1万

回帖

1

积分

5983

资产值

初级会员 Rank: 1

注册时间
2005-8-28
 楼主| 发表于 2006-10-20 10:42:07| 字数 31| - 中国–北京–北京–朝阳区 联通 | 显示全部楼层
Ubuntu以前笔记本上用这个,现在用台式了,装它意义不大了。
出没于大望路一代……
回复 支持 反对

使用道具 举报

1万

回帖

1

积分

5983

资产值

初级会员 Rank: 1

注册时间
2005-8-28
 楼主| 发表于 2006-10-20 10:44:35| 字数 104| - 中国–北京–北京–朝阳区 联通 | 显示全部楼层
QUOTE:
原帖由 xcode 于 2006-10-20 08:14 发表
从北京区出门向论坛前方走,到linux区,全都是
http://www.ibmnb.com/forum-17-1.html

哈哈,那里去的人不多嘛。
出没于大望路一代……
回复 支持 反对

使用道具 举报

324

回帖

0

积分

503

资产值

入门会员 Rank: 1

注册时间
2005-10-9
发表于 2006-10-20 14:18:24| 字数 136| - 中国–北京–北京 鹏博士BGP | 显示全部楼层
QUOTE:
原帖由 ice_poss 于 2006-10-19 16:41 发表
rt,我安装的是MagicLinux 2.0。安装之后准备更新源。
其中源设置如下:

运行过程中总是出现失速。
请问是否应该先更新SmartPackageManager的版本?



失速是什么意思? 出错信息发上来看看
t43 ct1,win2003R2 + linux(slackware12)
回复 支持 反对

使用道具 举报

1万

回帖

1

积分

5983

资产值

初级会员 Rank: 1

注册时间
2005-8-28
 楼主| 发表于 2006-10-20 17:33:00| 字数 40| - 中国–北京–北京–朝阳区 联通 | 显示全部楼层
就是因为网络不通....已经发现问题了.
那个ape在一台电信服务器上......
出没于大望路一代……
回复 支持 反对

使用道具 举报

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

本版积分规则

Powered by Discuz! X3.5 © 2001-2023 Comsenz Inc

GMT+8, 2025-11-8 06:21 , Processed in 0.105745 second(s), 43 queries , Gzip On, OPcache On.

手机版|小黑屋|安卓客户端|iOS客户端|Archiver|备用网址1|备用网址2|在线留言|专门网

返回顶部