查找源代码以学习编程

发布于 2024-08-23 06:04:36 字数 130 浏览 3 评论 0原文

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

我如何/在哪里可以找到 GLCells 的源代码。一般来说,我如何找到 ubuntul 操作系统发行版的源代码?

I just installed ubuntu on my PC, and now I wish to browse into some code. As a starting point I wana see the GLCells screen saver source code

How/where can i find the source code of the GLCells. In general, how can i find the source codes of the ubuntul OS distribution?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

淤浪 2024-08-30 06:04:36
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

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

To avoid having to do a full recompile after every change, follow the instructions here: http://www.debian.org/doc/maint-guide/ch-build.en.html

葬シ愛 2024-08-30 06:04:36

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

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

ISO 格式的 Ubuntu 源 CD 在这里(包含 CD 刻录指南):

http://cdimages.ubuntu.com/releases/ 9.10/发布/源/

GLCells is bundled with XScreenSaver, the source can be downloaded here:

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

The Ubuntu source CD in ISO format is here (complete with CD Burning Guide):

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文