找到源代码以学习编程

时间:2010-03-02 05:04:01

标签: ubuntu libraries

我刚刚在我的电脑上安装了ubuntu,现在我想浏览一些代码。作为一个起点,我看到了GLCells屏幕保护程序源代码

我如何/在哪里可以找到GLCell的源代码。一般来说,我如何找到ubuntul OS发行版的源代码?

3 个答案:

答案 0 :(得分:7)

sudo apt-get build-dep xscreensaver  # Install the libraries and the tools needed
apt-get source xscreensaver          # Download the sources
cd xscreensaver-5.10
(make changes to code)
dpkg-buildpackage -rfakeroot         # Build a .deb
sudo gdebi ../xscreensaver*.deb      # Install the package

为避免在每次更改后进行完整重新编译,请按照此处的说明进行操作:http://www.debian.org/doc/maint-guide/ch-build.en.html

答案 1 :(得分:4)

GLCells与XScreenSaver捆绑在一起,源代码可以在这里下载:

http://www.jwz.org/xscreensaver/download.html

ISO格式的Ubuntu源CD在这里(完成CD Burning Guide):

http://cdimages.ubuntu.com/releases/9.10/release/source/

答案 2 :(得分:0)

ubuntu repository怎么样?