首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >在我的ubuntu服务器上安装rtorrent

在我的ubuntu服务器上安装rtorrent
EN

Server Fault用户
提问于 2009-12-26 15:16:35
回答 9查看 5.1K关注 0票数 0

我正在尝试在我的ubuntu服务器上安装rtorrent。

我运行了这些命令,它们运行得很好。

代码语言:javascript
复制
./autogen.sh
./configure --with-xmlrpc-c 
make

然后,当我尝试使用make install时,我想它没有安装,因为在主目录中没有创建.rtorrent.rc',运行rtorrent返回了这个错误,下面的rtorrent: error while loading shared libraries: libtorrent.so.11: cannot open shared object file: No such file or directory是make的日志。

代码语言:javascript
复制
root@ubuntu:~/rtorrent-0.8.6# make install
Making install in doc
make[1]: Entering directory `/root/rtorrent-0.8.6/doc'
make[2]: Entering directory `/root/rtorrent-0.8.6/doc'
make[2]: Nothing to be done for `install-exec-am'.
test -z "/usr/local/share/man/man1" || /bin/mkdir -p "/usr/local/share/man/man1"
 /usr/bin/install -c -m 644 './rtorrent.1' '/usr/local/share/man/man1/rtorrent.1                                            '
make[2]: Leaving directory `/root/rtorrent-0.8.6/doc'
make[1]: Leaving directory `/root/rtorrent-0.8.6/doc'
Making install in src
make[1]: Entering directory `/root/rtorrent-0.8.6/src'
Making install in core
make[2]: Entering directory `/root/rtorrent-0.8.6/src/core'
make[3]: Entering directory `/root/rtorrent-0.8.6/src/core'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory `/root/rtorrent-0.8.6/src/core'
make[2]: Leaving directory `/root/rtorrent-0.8.6/src/core'
Making install in display
make[2]: Entering directory `/root/rtorrent-0.8.6/src/display'
make[3]: Entering directory `/root/rtorrent-0.8.6/src/display'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory `/root/rtorrent-0.8.6/src/display'
make[2]: Leaving directory `/root/rtorrent-0.8.6/src/display'
Making install in input
make[2]: Entering directory `/root/rtorrent-0.8.6/src/input'
make[3]: Entering directory `/root/rtorrent-0.8.6/src/input'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory `/root/rtorrent-0.8.6/src/input'
make[2]: Leaving directory `/root/rtorrent-0.8.6/src/input'
Making install in rpc
make[2]: Entering directory `/root/rtorrent-0.8.6/src/rpc'
make[3]: Entering directory `/root/rtorrent-0.8.6/src/rpc'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory `/root/rtorrent-0.8.6/src/rpc'
make[2]: Leaving directory `/root/rtorrent-0.8.6/src/rpc'
Making install in ui
make[2]: Entering directory `/root/rtorrent-0.8.6/src/ui'
make[3]: Entering directory `/root/rtorrent-0.8.6/src/ui'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory `/root/rtorrent-0.8.6/src/ui'
make[2]: Leaving directory `/root/rtorrent-0.8.6/src/ui'
Making install in utils
make[2]: Entering directory `/root/rtorrent-0.8.6/src/utils'
make[3]: Entering directory `/root/rtorrent-0.8.6/src/utils'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory `/root/rtorrent-0.8.6/src/utils'
make[2]: Leaving directory `/root/rtorrent-0.8.6/src/utils'
make[2]: Entering directory `/root/rtorrent-0.8.6/src'
make[3]: Entering directory `/root/rtorrent-0.8.6/src'
test -z "/usr/local/bin" || /bin/mkdir -p "/usr/local/bin"
  /bin/bash ../libtool   --mode=install /usr/bin/install -c 'rtorrent' '/usr/loc                                            al/bin/rtorrent'
libtool: install: /usr/bin/install -c rtorrent /usr/local/bin/rtorrent
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory `/root/rtorrent-0.8.6/src'
make[2]: Leaving directory `/root/rtorrent-0.8.6/src'
make[1]: Leaving directory `/root/rtorrent-0.8.6/src'
make[1]: Entering directory `/root/rtorrent-0.8.6'
make[2]: Entering directory `/root/rtorrent-0.8.6'
make[2]: Nothing to be done for `install-exec-am'.
make[2]: Nothing to be done for `install-data-am'.
make[2]: Leaving directory `/root/rtorrent-0.8.6'
make[1]: Leaving directory `/root/rtorrent-0.8.6'

谢谢。

EN

回答 9

Server Fault用户

回答已采纳

发布于 2009-12-26 19:32:19

sudo apt-获取安装rtorrent -y

票数 1
EN

Server Fault用户

发布于 2009-12-26 19:29:24

如果您由于某种原因而不需要最新版本(例如,您后来被某个bug击中,或者需要一个更新的特性),那么最简单的方法是确保启用universe存储库,以便您可以使用相关的GUI工具或命令行中的aptitude install rtorrent安装这个包裹。这样,所有的依赖项都将为您排序。

票数 1
EN

Server Fault用户

发布于 2011-01-17 15:25:30

尝试运行以下命令: LD_LIBRARY_PATH=/usr/local/lib rtorrent

如果这有效,那么将以下内容放入您的.bashrc导出LD_LIBRARY_PATH="/usr/local/lib“

,这将允许您键入"rtorrent“。

票数 1
EN
页面原文内容由Server Fault提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://serverfault.com/questions/97443

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档