Tag Archives: Debian

Debian 5 (Lenny) 如何安装Python 2.7(apt)

Debian5 (lenny)上安装的python是2.5的,很老,怎么安装2.7的呢?
除了编译之外,我们还可以用apt的方法搞定。如下:

1、修改源
实际上python2.7在unstable源中
sudo vim /etc/apt/sources.list
#添加
deb http://ftp.us.debian.org/debian/ unstable main contrib non-free

#更新
sudo apt-get update
2、安装
sud[......]

继续阅读

Debian更新时候出现“GPG error The following signatures couldn't be verified because the public key is not available”错误

apt-get update时出现错误,如下:

W: GPG error: http://ftp.us.debian.org lenny-proposed-updates Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY AED4B06F473041FA

这个是由于PGP证书的问题,如下解决:
gpg --keyserve[......]

继续阅读

Debian/Ubuntu源source.list自动生成器

你是否也曾四处寻找可用的Debian源?

不用找啦,分享一个非常好的服务:

Debian Sources List Generator,它能让你选择发行版本、源类型等,非常好用。

可惜的是没有China。。选Taiwan是可以的。

2011.10.1更新:已经有China选项了。

地址如下:

http://debgen.simplylinux.ch/

2011.10.18更新,还有Ubuntu的源如下:

http://repogen.simplyl[......]

继续阅读

Debian 6下安装JDK

在Debian(6及以下版本)的默认源中,并没有默认包含JDK,我们需要从non-free源中找到它。
1、设置源
确认你的apt源包含了non-free,类似如下的:
sudo vim /etc/apt/sources.list
deb http://debian.cn99.com/debian/ testing main contrib non-free
deb-src http://debian.cn99.com/debian/ testing main contrib non-[......]

继续阅读