在 Linux 服务器上安装 Subversion 存储库的简单代码

发布于 2024-08-02 13:39:16 字数 176 浏览 6 评论 0原文

在 Linux 服务器(特别是 bluehost 共享服务器)上安装私有 subversion 存储库的最简单方法是什么?

Apache 版本 2.2.13 (Unix)

PHP 版本 5.2.9

架构 x86_64

操作系统 Linux

欢迎命令...

What is the simplest way to install a private subversion repository on a Linux server - specifically a bluehost shared server?

Apache version 2.2.13 (Unix)

PHP version 5.2.9

Architecture x86_64

Operating system Linux

Commands welcome....

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

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

发布评论

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

评论(1

梦年海沫深 2024-08-09 13:39:16

正如 wcoenen 指出的,这应该在 serverfault.com 上,我正在寻找的答案是 https://serverfault.com/questions/59783/simple-code-to-install-a-subversion-repository-on-a-linux-server/< /a>

我找到了一个很好的解决方案
http://www.bluehostforum.com/showthread。 php?s=855d68319128c0db09b4d88e844287c0&t=12099&page=3
除了最新版本之外
现在是1.6.5

mkdir src
光盘源文件
wget http://subversion.tigris.org/downloads/subversion-1.6.5.tar.bz2
wget http://subversion.tigris.org/downloads/subversion-deps-1.6.5.tar.bz2
tar -xvjpf subversion-1.6.5.tar.bz2
tar -xvjpf subversion-deps-1.6.5.tar.bz2
cd subversion-1.6.5
./configure --prefix=$HOME --without-berkeley-db --with-ssl LDFLAGS="-L/lib64"
制作
进行安装

As wcoenen pointed out, this should be on serverfault.com and the answer I was looking for is the accepted answer at https://serverfault.com/questions/59783/simple-code-to-install-a-subversion-repository-on-a-linux-server/

I found a great solution at
http://www.bluehostforum.com/showthread.php?s=855d68319128c0db09b4d88e844287c0&t=12099&page=3
except the most recent version right
now is 1.6.5

mkdir src
cd src
wget http://subversion.tigris.org/downloads/subversion-1.6.5.tar.bz2
wget http://subversion.tigris.org/downloads/subversion-deps-1.6.5.tar.bz2
tar -xvjpf  subversion-1.6.5.tar.bz2
tar -xvjpf  subversion-deps-1.6.5.tar.bz2
cd subversion-1.6.5
./configure --prefix=$HOME --without-berkeley-db --with-ssl LDFLAGS="-L/lib64"
make
make install
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文