linux CentOS 5 安装 apt-get

pt-rpm的套件可以在这找你OS和Arch的版本

http://packages.sw.be/apt/

以CentOS 5,i386的版本为例

wget http://packages.sw.be/apt/apt-0.5.15lorg3.94a-4.el5.rf.i386.rpm

安装套件

rpm -Uvh apt-0.5.15lorg3.94a-4.el5.rf.i386.rpm

然后去改一下 sources.list

cp /etc/apt/sources.list.d/os.list /etc/apt/sources.list

vi /etc/apt/sources.list

因为我们公司连国外不知道为什么,连国外常常就是超慢

所以我这里就不拿 http://mirror.centos.org/ 当来源了

而且义守FTP和国家高速网络中心的频宽还蛮暴力的,都跑到破千K

所以我是拿他们来当来源(其实选一个就好了,如果发现其中一个源有问题,有换另一个试下)

repomd ftp://ftp.isu.edu.tw/pub/Linux/CentOS $(VERSION)/os/$(ARCH)

repomd ftp://ftp.isu.edu.tw/pub/Linux/CentOS $(VERSION)/updates/$(ARCH)

repomd ftp://ftp.isu.edu.tw/pub/Linux/CentOS $(VERSION)/extras/$(ARCH)

repomd ftp://ftp.isu.edu.tw/pub/Linux/CentOS $(VERSION)/fasttrack/$(ARCH)

repomd ftp://ftp.isu.edu.tw/pub/Linux/CentOS $(VERSION)/addons/$(ARCH)

repomd ftp://ftp.isu.edu.tw/pub/Linux/CentOS $(VERSION)/centosplus/$(ARCH)

-----------华丽丽的分割线------------------

repomd ftp://ftp.twaren.net/Linux/CentOS $(VERSION)/os/$(ARCH)

repomd ftp://ftp.twaren.net/Linux/CentOS $(VERSION)/updates/$(ARCH)

repomd ftp://ftp.twaren.net/Linux/CentOS $(VERSION)/extras/$(ARCH)

repomd ftp://ftp.twaren.net/Linux/CentOS $(VERSION)/fasttrack/$(ARCH)

repomd ftp://ftp.twaren.net/Linux/CentOS $(VERSION)/addons/$(ARCH)

repomd ftp://ftp.twaren.net/Linux/CentOS $(VERSION)/centosplus/$(ARCH)

安装一下 GPG keys

rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY*

apt-get update

apt-get upgrade

第一次跑你可能需要先这样一下

apt-get –fix-broken install

完成!

感谢:http://blog.csdn.net/soft_lawrency/article/details/6969717

相关推荐