1. 程式人生 > >讓 orangepi 用上Btsync(資源分享工具)好資源不怕和諧!

讓 orangepi 用上Btsync(資源分享工具)好資源不怕和諧!

自從有了小橘子派,就想著如何解放我的膝上型電腦,有些事情讓小橘子做,省電!
很多人都發現了,放在百度網盤的小電影都變成8秒短片了,呵呵。。。然後,催生了我們的新式分享工具----BitTorrent Sync
來個GetNAS中文網的介紹

BitTorrent Sync 是免費跨平臺檔案同步軟體。不需第三方伺服器即可在多臺電腦之間同步和共享檔案,全程AES加密。它採用基於類似BT下載的P2P分散式技術而來,速度快而且可通過金鑰檔案共享,可設定完整許可權同步或者讓接收方只讀,還可以傳送 24 小時有效期的金鑰,過期作廢。
也就是說,你釋出一個金鑰,其他人就可以同步你共享的檔案,更可以做到增量式(差異)同步,同步的人越多速度越快,和BT下載一個道理。

Btsync支援超多的系統,從桌面系統到嵌入式、手機等等,最好的莫過於有ARM-linux版

訪問   https://www.getsync.com/platforms/desktop   下載ARM版
 
然後解壓到你的橘子派的某一目錄下
進入目錄,輸入命令
  1. [email protected]_kali:/home/BitTorrent# ls
  2. btsync  LICENSE.TXT  README
複製程式碼
README是說明檔案,告訴你怎麼用
How to start Sync
-----------------

After extracting this tarball, just run:

  $ ./btsync

to start the Sync daemon.
Then go to localhost:8888 in a web browser to access the WebUI.

IMPORTANT NOTE:
To improve security, the LAN listening interface is off unless you configure it.
By default the WebUI is only accessible on the computer running Sync
(localhost:8888). In order to have the WebUI accessible across the
LAN, use a configuration file or start Sync this way:

  $ ./btsync --webui.listen 0.0.0.0:8888
大意是說,安裝後如果需要遠端操作,需要執行  ./btsync --webui.listen 0.0.0.0:8888 命令,我們在橘子派上執行,用其他電腦操作,當然是遠端了
先賦權
  1. chmod +x *
複製程式碼 然後
  1. ./btsync --webui.listen 0.0.0.0:8888
複製程式碼 但是出現了一個不解的現象
  1. [email protected]_kali:/home/BitTorrent# ./btsync --webui.listen 0.0.0.0:8888
  2. -bash: ./btsync: No such file or directory
複製程式碼 明明存在,為啥說沒有這個檔案呢?
檢視檔案資訊
  1. [email protected]_kali:/home/BitTorrent# file btsync
  2. btsync: ELF 32-bit LSB executable, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.3, for GNU/Linux 2.6.16, stripped
複製程式碼 大致是說,這是一個32位的可執行檔案,小端格式,運行於ARM處理器,依賴 /lib/ld-linux.so.3 。。。
等等,說找不到檔案,是不是指的是找不到 /lib/ld-linux.so.3 這個檔案呢?去lib 目錄看下
 

果然沒有這個檔案,但是有個 ld-linux-armhf.so.3 ,看看屬性
 

連結到了這裡
 

注意觀察結構。。。。
我們回到 /lib 目錄,執行以下命令
  1. [email protected]_kali:/lib# ln -s ld-linux-armhf.so.3 ld-linux.so.3  
複製程式碼 再試試看。。。
  1. [email protected]_kali:/lib# cd /home/BitTorrent
  2. [email protected]_kali:/home/BitTorrent# ./btsync --webui.listen 0.0.0.0:8888
  3. By using this application, you agree to our Privacy Policy, Terms of Use and End User License Agreement.
  4. https://www.getsync.com/legal/privacy
  5. https://www.getsync.com/legal/terms-of-use
  6. https://www.getsync.com/legal/eula

  7. BitTorrent Sync forked to background. pid = 13284. default port = 8888
複製程式碼 OK,成功執行!
在你的電腦上開啟瀏覽器,位址列輸入  橘子派的IP:8888
 

好了,設定一個賬戶和密碼就可以開始用了

至於福利資源的金鑰。。。嘿嘿,給大家一個 BJU2MT5LHJHMCP7T4OZMITRM6QBWTCUG7


     


這樣就改成中文介面了