Я пытаюсь синхронизировать 5 общих ресурсов с компьютера с Win7 в Linux. Окно Linux настраивается с помощью следующей конфигурации. Я немного поэкспериментировал с настройками, но смог синхронизировать только 3 из 5 акций. Кто-нибудь может сказать мне, что я виноват? Существует ли максимальное количество акций в btsync?
Чтобы быть полностью уверенным, что я не пропустил детали, я вставляю полный конфиг. То, что я изменил по сравнению с первоначальными настройками, помечено как
{
"device_name": "MySync",
"listening_port" : 0, // 0 - randomize port
/* storage_path dir contains auxilliary app files
if no storage_path field: .sync dir created in the directory
where binary is located.
otherwise user-defined directory will be used
*/
// "storage_path" : "/home/user/.sync",
// uncomment next line if you want to set location of pid file
"pid_file" : "<Userhomedir>.sync/btsync.pid",
"check_for_updates" : true,
"use_upnp" : false, // use UPnP for port mapping
/* limits in kB/s
0 - no limit
*/
"download_limit" : 0,
"upload_limit" : 0,
/* remove "listen" field to disable WebUI
remove "login" and "password" fields to disable credentials check
*/
"webui" :
{
/* directory_root path defines where the WebUI Folder browser starts
(linux only)
*/
// "directory_root" : "/home/user/MySharedFolders/"
}
/* !!! if you set shared folders in config file WebUI will be DISABLED !!!
shared directories specified in config file
override the folders previously added from WebUI.
*/
,
"shared_folders" :
[
{ //Datenfass
"secret" : "<secret1>", // * required field
"dir" : "<syncfolder1>", // * required field
// use relay server when direct connection fails
"use_relay_server" : true,
"use_tracker" : true,
"use_dht" : false,
"search_lan" : true,
// enable SyncArchive to store files deleted on remote devices
"use_sync_trash" : true ,
// restore modified files to original version, ONLY for Read-Only folders
// "overwrite_changes" : false,
// specify hosts to attempt connection without additional search
"known_hosts" :
[
"<myip>:8888"
]
}
,
{ //Compendium
"secret" : "<secret2>", // * required field
"dir" : "<sharedir2>", // * required field
// use relay server when direct connection fails
"use_relay_server" : true,
"use_tracker" : true,
"use_dht" : false,
"search_lan" : true,
// enable SyncArchive to store files deleted on remote devices
"use_sync_trash" : true,
// restore modified files to original version, ONLY for Read-Only folders
// "overwrite_changes" : false,
// specify hosts to attempt connection without additional search
"known_hosts" :
[
"<myip>:8888"
]
}
,
{ //TaggtoolDatabase
"secret" : "<secret3>", // * required field
"dir" : "<sharedir3>", // * required field
// use relay server when direct connection fails
"use_relay_server" : true,
"use_tracker" : true,
"use_dht" : false,
"search_lan" : true,
// enable SyncArchive to store files deleted on remote devices
"use_sync_trash" : true,
// restore modified files to original version, ONLY for Read-Only folders
// "overwrite_changes" : false,
// specify hosts to attempt connection without additional search
"known_hosts" :
[
"<myip>:8888"
]
}
,
{ //MyInfo
"secret" : "<secret4>", // * required field
"dir" : "<sharedir4>", // * required field
// use relay server when direct connection fails
"use_relay_server" : true,
"use_tracker" : true,
"use_dht" : false,
"search_lan" : true,
// enable SyncArchive to store files deleted on remote devices
"use_sync_trash" : true,
// restore modified files to original version, ONLY for Read-Only folders
// "overwrite_changes" : false,
// specify hosts to attempt connection without additional search
"known_hosts" :
[
"<myip>:8888"
]
}
,
{//TAggToolC-Platte
"secret" : "<secret5>", // * required field
"dir" : "<sharedir5>", // * required field
// use relay server when direct connection fails
"use_relay_server" : true,
"use_tracker" : true,
"use_dht" : false,
"search_lan" : true,
// enable SyncArchive to store files deleted on remote devices
"use_sync_trash" : true,
// restore modified files to original version, ONLY for Read-Only folders
// "overwrite_changes" : false,
// specify hosts to attempt connection without additional search
"known_hosts" :
[
"<myip>:8888"
]
}
]
// Advanced preferences can be added to config file.
// Info is available in BitTorrent Sync User Guide.
}
Я пытался удалить папки из интерфейса Win, удалить.SyncID и тому подобное в LinuxBox, добавив его снова в WinBox с помощью интерфейса и изменив секрет на последний. Я не могу найти ни одного. файлы (что очень трудно сделать во вложенных папках; я попытался find . -name ".\!*"
; Я не уверен на 100%, что работает). Все намеки очень ценятся.
Версия btsync на обоих устройствах - 1.3.106. Версия для Linux является 64-битной версией. заранее спасибо