Debian 8 安装BtSync
声明,此方法是Btsync的官网resilio提供的方法
传送门:https://help.getsync.com/hc/en-us/articles/206178924
第一,在如下文件中添加:
1
2
3
|
vi /etc/apt/sources .list.d /resilio-sync .list 在文件中添加如下源 deb http: //linux-packages .resilio.com /resilio-sync/deb resilio- sync non- free |
添加公共密钥:
1
|
wget -qO - https: //linux-packages .resilio.com /resilio-sync/key .asc | sudo apt-key add - |
安装:
1
2
|
sudo apt-get update sudo apt-get install resilio- sync |
管理resilio-sync
- sudo systemctl enable resilio-sync
编辑文件/usr/lib/systemd/user/resilio-sync.service,改变"WantedBy=multi-user.target" 变成 "WantedBy=default.target"
启用软件
- systemctl --user enable resilio-sync
开始使用软件
如:
- systemctl --user start resilio-sync
英文原本如下:
Upgrade. If you have btsync package installed and running, stop it before installing resilio-sync.
All settings from btsync will be moved to resilio-sync.
Before updating from btsync to resilio-sync check the size of
/var/lib/btsync folder and ensure that your computer has enough free
space to store the double of it.
If it's too big, you can safely delete sync.log (and its archive) and journals.
If you DO NOT have btsync package installed, ignore the note above
and proceed to installing resilio-sync package. Installing resilio-sync
package on Raspberry Pi devices follow the same installation steps (with
one extra step for RPI1 - see below).
To install Sync from Resilio repository, you need to complete 3 steps:
Add repository
Add PGP public key for package verification
Install the package
Before installing Resilio Sync package, stop btsync service.
For Debian-based Linux (Debian, Ubuntu, Zorin, Elementary)
Create file /etc/apt/sources.list.d/resilio-sync.list with the following content to register Resilio repository:
- deb http://linux-packages.resilio.com/resilio-sync/deb resilio-sync non-free
Add public key with the following command:
- wget -qO - https://linux-packages.resilio.com/resilio-sync/key.asc | sudo apt-key add -
Also you can use the following command to add public key:
curl -LO https://linux-packages.resilio.com/resilio-sync/key.asc && sudo apt-key add ./key.asc
For arm64 architecture | For Raspberry Pi 1 |
In /etc/apt/sources.list change the line as follows:
|
sudo dpkg --add-architecture armel |
Install Sync
- sudo apt-get update
- sudo apt-get install resilio-sync
For RPM-based Linux (Red Hat, Fedora, CentOS, OpenSUSE)
Only arm and x64 arch are available.
Create file /etc/yum.repos.d/resilio-sync.repo with the following content to register Resilio repository:
[resilio-sync]
name=Resilio Sync $basearch
baseurl=http://linux-packages.resilio.com/resilio-sync/rpm/$basearch
enabled=1
gpgcheck=1
Add public key:
- sudo rpm --import https://linux-packages.resilio.com/resilio-sync/key.asc
Install Sync:
- sudo yum install resilio-sync
Managing Sync
systemd
Enable sync service automatic startup as user rslsync:
- sudo systemctl enable resilio-sync
Enable sync service as current user:
edit file /usr/lib/systemd/user/resilio-sync.service and change "WantedBy=multi-user.target" to "WantedBy=default.target". Save. Then enable the service:
- systemctl --user enable resilio-sync
Systemctl can be also run with the following arguments: start, stop, enable, disable, status
For example:
- systemctl --user start resilio-sync
sysvinit, upstart
Run as rslsync user:
- sudo service resilio-sync start
Service can also be run with the following arguments: start, stop, restart
Guide on how to use Sync on linux is here.
After successful migration and verifying that setup is preserved, you can remove btsync package:
For Debian-based Linux:
sudo apt-get purge btsync
For RPM-based Linux
sudo yum remove btsync
Debian 8 安装BtSync的更多相关文章
- 在 Debian 上安装 SQL Server vNext CTP1
微软在开源 .NET Framework 之后,相继推出了跨平台的编辑器 Visual Studio Code,跨平台的 SQL Server 数据库 SQL Server vNext,Visual ...
- 【转载】Debian 6安装小记
转载自:http://unix-cd.com/vc/www/22/2011-06/18022.html 今天终于装上了 debian6,代号叫squeeze是吧?前几天的时候在Microhu’s Bl ...
- pycharm 4.5在debian下安装
1.去官网下载linux下的Tar包,下载后解压. 2.直接进入解压后的folder里面找bin下面的pycharm.sh,执行后发现没有任何反应. 3.查询资料发现是因为pycharm需要sun j ...
- Debian 入门安装与配置2
Debian 入门安装与配置2 1. C/C++开发必装软件 atp-get install gcc 这个不用说,用来编译C程序 apt-get install g++ 用来编译C++程序 ap ...
- Debian下安装Firefox与flash简介
Debian下安装Firefox与flash简介 由于Debian在Firefox的版权上出现了问题,导致官方发布的Debian系统不能使用默认的Firefox浏览器,最后官方重编的Firefox改名 ...
- Debian 入门安装与配置1
Debian 入门安装与配置1 最近安装了多个发行版本的Linux,包括Ubuntu.Fedora.Centos和Debian,发现只有Debian在界面和稳定性等综合特性上表现最优,自己也最喜欢,所 ...
- 在Debian中安装VMware Workstatption 12
在Debian中安装VMware Workstatption 12-----------------------------------------------> 下载文件: *vmwar ...
- Mosquitto安装_Ubuntu/Debian上安装消息队列Mosquitto
Mosquitto安装_Ubuntu/Debian上安装消息队列Mosquitto MQTT是IBM开发的一个即时通讯协议.MQTT是面向M2M和物联网的连接协议,采用轻量级发布和订阅消息传输机制.M ...
- Debian虚拟机安装VirtualBox增强功能
作者:荒原之梦 原文链接:http://zhaokaifeng.com/?p=573 本文中使用的Debian是安装在VirtualBox中的虚拟机,具体参数如下: Debian版本:Linux de ...
随机推荐
- Linux Kernel的Makefile与Kconfig文件的语法
https://www.kernel.org/doc/Documentation/kbuild/kconfig-language.txt Introduction ------------ The c ...
- 大约Android 3.0后AsyncTask默认的单线程分析
在Android下了很大的后台操作在需要的情况下.通常用于AsyncTask这个类.比方说,网络负载形象.访问server接口.一般的情况是使用一个的一例AsyncTask对象mTask,复制Asyn ...
- python基础课程_学习笔记20:标准库:有些收藏夹——os
标准库:有些收藏夹 os os模块为您提供访问多个操作系统服务特征. os和它的子模块os.path还包含一些用于检查.构造.删除文件夹和文件的函数,以及一些处理路径的函数. os模块中一些重要函数和 ...
- Scala Web 框架——Lift(一)准备工作
[Lift]Scala Web 框架——Lift(一)准备工作 Lift 官方网站:http://liftweb.net/ 下载 http://liftweb.net/download 下载.zip压 ...
- jQuery百叶窗图片滑块
超酷的jQuery百叶窗图片滑块实现教程 今天我们要来分享一款基于jQuery的百叶窗焦点图插件,也可以说是图片滑块插件.这种jQuery焦点图插件的应用非常广泛,在早些年前,我们需要用flash ...
- C# 中参数验证方式
C# 中参数验证方式 一般在写方法的时候,第一步就是进行参数验证,这也体现了编码者的细心和缜密,但是在很多时候这个过程很枯燥和乏味,比如在拿到一个API设计文档的时候,通常会规定类型参数是否允许为空, ...
- DataInputStream(二进制输入流)和DataOutputStream二进制输出流(注意:in是从本地文件输入到程序中,out是从程序输出到本地种)
//切记以数据类型输出就以什么数据类型读入, //例如: dos.writeInt(100);写入,读取:dis.readUTF()有时会出现意想不到的错误,所以要时刻记得以数据类型输出就以什么数据类 ...
- Data Annotations
Data Annotations Entity Framework Code First 利用一种被称为约定(Conventions)优于配置(Configuration)的编程模式允许你使用自己 ...
- Unity Container
Unity Container中的几种注册方式与示例 2013-12-08 22:43 by 小白哥哥, 22 阅读, 0 评论, 收藏, 编辑 1.实例注册 最简单的注册方式就是实例注册,Unity ...
- 2013.5.A
题1 高低位交换 [问题描述] 给出一个小于2^32的正整数.这个数可以用一个32位的二进制数表示(不足32位用0补足).我们称这个二进制数的前16位为“高位”,后16位为“低位”.将它的高低位交换, ...