我在 Ubuntu 12.04(精确)64 位并btsync
从http://labs.bittorrent.com/experiments/sync/下载了可执行文件,但运行它似乎没有任何效果。双击可执行文件什么也不做,在终端中运行 ./btsync 也会立即退出,没有任何输出。
有没有人在 Ubuntu 下成功运行过这个,如果是这样,是否需要进行任何特殊的配置更改才能使其工作?
Qas*_*sim 102
有两种使用BitTorrent Sync 的方法,第一种是使用 PPA 安装,第二种是下载
第一次购电协议
sudo add-apt-repository ppa:tuxpoldo/btsync
sudo apt-get update
Run Code Online (Sandbox Code Playgroud)
对于正常的桌面使用,您只需要安装btsync-user
:
sudo apt-get install btsync-user
Run Code Online (Sandbox Code Playgroud)
或者,如果您要设置 BTSync 服务器,请安装btsync
:
sudo apt-get install btsync
Run Code Online (Sandbox Code Playgroud)
在安装过程中只需使用默认设置并设置管理密码,您可以通过以下方式访问它
127.0.0.1:8888 # This will redirect to the 2nd link
Run Code Online (Sandbox Code Playgroud)
或者
http://127.0.0.1:8888/gui/
Run Code Online (Sandbox Code Playgroud)
用户名 = admin , 密码 = ( 安装时使用已设置 )
第二次下载
cd Downloads
tar xzpf btsync_glibc23_x64.tar.gz # I have downloaded 64 bit. So check your version
./btsync
Run Code Online (Sandbox Code Playgroud)
输出将是
./btsync
BitTorrent Sync forked to background. pid = 5771 # some what like this pid will be change
Run Code Online (Sandbox Code Playgroud)
打开任何网络浏览器并复制粘贴以下行
127.0.0.1:8888 # This will redirect to the 2nd link
Run Code Online (Sandbox Code Playgroud)
或者
http://127.0.0.1:8888/gui/
Run Code Online (Sandbox Code Playgroud)
如果你输入./btsync --help
你也可以运行它没有守护模式
./btsync --help
BitTorrent Sync 1.0.132
Usage:
btsync [--config <path>] [--nodaemon] [--generate-secret] [--dump-sample-config] [--help] [--get-ro-secret <secret>]
Options:
--config - location and name of configuration file
--nodaemon - do not use daemon mode
--generate-secret - generate shared secret
--get-ro-secret - get read only secret for existing master secret
--dump-sample-config - dump sample config file
--help - print this message and exit
Run Code Online (Sandbox Code Playgroud)
帮助