Although both BitTorrent Sync 2.0 FREE and PRO ensure high file transfer speed and ultimate security, PRO version provides you with a lot more functionality:
All Sync Versions
Fast transfer speeds
Private device-to-device communication
No folder size limits
 
Sync FREE Sync PRO
            Up to 10 folders at a time              Unlimited number of folders
- On-demand access to files from desktop
- Change access permissions on-the-fly
- Sync All ON/OFF
- Pro support

The total number of folders which can be kept synced via FREE version at a time is limited to 10.

If you have already added 10 folders, and want to add one more, you will have to delete at least 1 folder from the previously added ones or upgrade to PRO.

PRO version enables you to link all of your devices under a common identity.

This gives you access to ALL added folders on ALL of your linked devices automatically. Learn more

Sync on-demand lets you access files on other devices without actually syncing them in full to your device.

You can view folders, look through their contents and then fetch only those files you need.

Available on mobile platforms in the free product, on desktops this feature gets activated in the PRO version only.

In Sync 2.0 PRO you can change access permissions (Read Only, Read & Write, Owner)

as well asrevoke access at any time from users you share files with (unavailable while sharing data via My Devices).

For example, now if you wish to upgrade Read Only permission to Read & Write,

you won't have to disconnect a folder and then reconnect it again passing a new key:

Sync will modify permission at the push of a button without breaking connection.

In Sync 2.0 PRO, devices with large amounts of storage space (NAS devices, file servers, desktops, etc) can be toggled to 'Sync all.'

This will backup all of your Sync folders to an always-on device, providing continuous access to your files.

Both ​PRO and FREE users are encouraged to browse Sync Knowledge Base for the answers to their questions as well as check BitTorrent Sync Forum.

PRO users are provided with guaranteed support within 24 hours of their request.

FREE users are welcome to send their feedbacks - Sync support team will respond to them to the extent possible.

Important note on mobile platforms:

Sync mobile app is free, and unlike desktop versions, it does not have folder or feature limitations,

however, connecting your mobile device to a licensed identity on a desktop will let you get the most out of your Sync.

BTSync FREE vs BTSync PRO的更多相关文章

  1. CentOS 安装BitTorrent Sync详细步骤

    官网:https://www.getsync.com 这个软件安装完后通过网页浏览器设置共享目录并生成同步Secret,异地的客户端可以通过这个同步Secret访问共的目录,其中有读写和只读两种同步方 ...

  2. 在 Linux 上安装配置 BitTorrent Sync [转]

    背景介绍:目前我们线上的前端服务器数量比较多,超过200多台,每次发布新应用的时候,都是将软件包放在一台专门的Push服务器上,再由所有的前端服务器通过rsync自动同步.但随着前端服务器的数量越来越 ...

  3. Ubuntu notes

    ubuntu notes Table of Contents 1. backup data 2. Basics Ubuntu 3. Install, uninstall packages 4. Bas ...

  4. Resilio(BtSync)搭建

    Resilio(原名:BtSync)介绍 同步是使用PC和Mac,NAS,甚至服务器之间传输文件的最好方法.创建自己的私有云.连接设备和同步文件安全,不发送他们在第三方服务器.我们不限制你的速度和存储 ...

  5. Debian 8 安装BtSync

    声明,此方法是Btsync的官网resilio提供的方法 传送门:https://help.getsync.com/hc/en-us/articles/206178924 第一,在如下文件中添加: 1 ...

  6. btsync 分享资源

    Btsync是一款跨平台软件,可以在不同的设备之间共享文件. Btsync类似于BT下载,用户对用户(多用户)之间的传送. 文档的分享者可以将资源放到文件夹下,生成共享Key,分享给接受者,接受者只需 ...

  7. 2018-10-8-如何安装-btsync

    title author date CreateTime categories 如何安装 btsync lindexi 2018-10-8 9:15:6 +0800 2018-2-13 17:23:3 ...

  8. 如何安装 btsync

    本文告诉大家如何在 windows 和 Linux 安装使用 Btsync 而且分享一些小东西给大家 btsync 是分布式网盘 在这高速运作的信息化时代,使用云端来衔接工作和生活的点滴已是寻常事.可 ...

  9. 被称为同步神器的 BTSync,你可以怎么用?

    在这高速运作的信息化时代,使用云端来衔接工作和生活的点滴已是寻常事.可你是否曾扪心自问过:用各大云端备份自己的信息资料,真的安全放心吗? 毫不夸张的说,其实恶意代码和漏洞早已和你如影随形.你甚至都不用 ...

随机推荐

  1. python基础-类的封装

    封装:类中封装了公有属性和方法,对象封装了私有属性的值 class F1: def __init__(self,n): self.N=n print('F') class F2: def __init ...

  2. 表格中border-collapse属性

    页面制作中最头痛的,表格的边框算是其一了.一不小心就会出现双重线 border-collapse属性 很好的解决了纠结了很久的问题 .table{border: 1px solid #ccc;bord ...

  3. FTRL算法

    稀疏解的作用:内存和时间啊 实际的互联网广告应用需要的是快速地进行model的更新.为了保证快速的更新,训练样本是一条一条地过来的,每来一个样本,model的参数对这个样本进行一次迭代,从而保证了mo ...

  4. collection.toArray(new String[0])中new String[0]的作用

    new string[0]的作用 比如:String[] result = set.toArray(new String[0]); Collection的公有方法中,toArray()是比较重要的一个 ...

  5. java基础47 装饰着模式设计

    1.装饰者模式 增强一个类的功能,而且还可以让这些装饰类相互装饰 2.装饰者设计模式的步骤 1.在装饰类的内部维护一个被装饰类的引用    2.让装饰者有一个共同的父类或者父接口 3.实例 packa ...

  6. java基础17 模板模式

    1.模版模式 解决某类事物的步骤有些是固定的,有些会发生改变的,那么这个时候我们可以为这一类事物提供一个模版代码,从而提高效率. 2.模版模式的步骤 1.先写出解决该类事物的其中一种解决方案;     ...

  7. opencv之dft及mat类型转换

    跑实验时用到dft这个函数,根据教程,需要先将其扩充到最优尺寸,但我用逆变换后发现得到的mat的维数竟然不一样.因此还是不要扩展尺寸了. 参考:http://www.xpc-yx.com/2014/1 ...

  8. Javascript之浏览器兼容EventUtil

    var EventUtil = { //添加事件处理程序 addHandler: function (element, type, handler) { if (element.addEventLis ...

  9. mysql 导出数据库命令

    mysqldump --socket=/data/mysql/mysql.sock -uroot -pfanzhuo -d stat1> stat1.sql

  10. Storm(一)Storm的简介与相关概念

    一.Storm的简介 官网地址:http://storm.apache.org/ Storm是一个免费开源.分布式.高容错的实时计算系统.Storm令持续不断的流计算变得容易,弥补了Hadoop批处理 ...