Skip to content

Latest commit

 

History

History
44 lines (31 loc) · 1.13 KB

Installation.md

File metadata and controls

44 lines (31 loc) · 1.13 KB

Installation

The instructions below will install the following tools:

rclone

  • Debian/Ubuntu

    sudo apt install rclone

rclone-browser

  • Debian/Ubuntu (outdated GUI)

    Use the following command to install rclone-browser (at the time of writing, based on this code base):

    sudo apt install rclone-browser
  • Debian/Ubuntu (refreshed GUI)

    The rclone-browser version in the Ubuntu repositories is outdated (based on kapitainsky). The one by Mercenar is more user-friendly (like editing paths) and has more features (like scheduler). You can install this version as follows:

    sudo apt update && sudo apt -y install git g++ cmake make qtdeclarative5-dev qtmultimedia5-dev
    git clone https://github.com/Mercenar/RcloneBrowser.git
    cd RcloneBrowser
    mkdir build && cd build
    cmake -DCMAKE_INSTALL_PREFIX=$HOME/.local .. 
    make
    make install