File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11These scripts are created to have your media synced between your cloud- and local store. All media is always encrypted before being uploaded.
22This also means if you loose your encryption keys you can't read your media.
33
4- ** Plexdrive version 4.0.0 and Rclone version 1.36 is used.**
4+ ** Plexdrive version 4.0.0 and Rclone version 1.37 is used.**
55
66There is a setup file, ` setup.sh ` , to install the necessary stuff automatically. This has only been tested on Ubuntu 16.04+.
77
@@ -61,7 +61,7 @@ To install the necessary stuff manually do the following:
61611 . Install unionfs-fuse.
62622 . Install bc.
63633 . Install GNU screen.
64- 4 . Install [ Rclone 1.36 ] ( https://downloads. rclone.org /rclone-current -linux-amd64.zip ) .
64+ 4 . Install [ Rclone 1.37 ] ( https://github.com/ncw/ rclone/releases/download/v1.37 /rclone-v1.37 -linux-amd64 ) .
65655 . Install [ Plexdrive 4.0.0] ( https://github.com/dweidenfeld/plexdrive/releases/download/4.0.0/plexdrive-linux-amd64 ) .
66666 . Create the folders pointing, in the config file, to ` local_decrypt_dir ` and ` plexdrive_temp_dir ` .
67677 . Run rclone bin, installed in step 4, with the parameter ` --config=RCLONE_CONFIG config ` where ` RCLONE_CONFIG ` is the variable set in the config file.
Original file line number Diff line number Diff line change 55# ##################################
66# ######### DOWNLOADS ##########
77# Rclone
8- _rclone_url= " https://github.com/ncw/ rclone/releases/download/v1.36/rclone -v1.36 -linux-amd64.zip "
9- _rclone_zip=" rclone-v1.36-linux-amd64 .zip"
10- _rclone_dir= " rclone- v1.36-linux-amd64 "
8+ _rclone_release= " rclone-v1.37 -linux-amd64"
9+ _rclone_zip=" ${_rclone_release} .zip"
10+ _rclone_url= " https://github.com/ncw/ rclone/releases/download/ v1.37/ ${_rclone_zip} "
1111
1212# Plexdrive
13- _plexdrive_url=" https://github.com/dweidenfeld/plexdrive/releases/download/4.0.0/plexdrive-linux-amd64"
1413_plexdrive_bin=" plexdrive-linux-amd64"
14+ _plexdrive_url=" https://github.com/dweidenfeld/plexdrive/releases/download/4.0.0/${_plexdrive_bin} "
1515# ##################################
1616
1717apt-get update
@@ -21,15 +21,15 @@ apt-get install screen -y
2121apt-get install unzip -y
2222apt-get install fuse -y
2323
24- if [ ! -d " ${rclone_dir } " ]; then
25- mkdir " ${rclone_dir } "
24+ if [ ! -d " ${_rclone_release } " ]; then
25+ mkdir " ${_rclone_release } "
2626fi
2727wget " ${_rclone_url} "
2828unzip " ${_rclone_zip} "
29- chmod a+x " ${_rclone_dir } /rclone"
30- cp -rf " ${_rclone_dir } /*" " ${rclone_dir } /"
29+ chmod a+x " ${_rclone_release } /rclone"
30+ cp -rf " ${_rclone_release } /*" " ${_rclone_release } /"
3131rm -rf " ${_rclone_zip} "
32- rm -rf " ${_rclone_dir } "
32+ rm -rf " ${_rclone_release } "
3333
3434
3535if [ ! -d " ${plexdrive_dir} " ]; then
You can’t perform that action at this time.
0 commit comments