Problem rclone in LibreELEC-Generic.x86_64-8.90.007.ova installed on virtual machine VMware

  • Hello

    My problem is as follows, install libreelec on a virtual machine in VMware with the following file

    FreeELEC-Generic.x86_64-8.90.007.ova

    Apparently everything works correctly, but the following problem arises

    Install rclone from this url rclone-current-linux-amd64.zip

    with the following commands

    Code
    cd /storage/
    wget https://downloads.rclone.org/rclone-current-linux-amd64.zip
    unzip rclone-current-linux-amd64.zip
    mkdir /storage/.config/rclone
    mv rclone-*-linux-amd64/* /storage/.config/rclone
    rm -r rclone-*linux-amd64
    mkdir /storage/.kodi/grabaciones
    cd /storage/.config/rclone

    It installs correctly, I give permission with

    Code
    chmod 777 /storage/.config/rclone

    So far so good, but when I execute it, I miss this error

    Code
    LibreELEC:~/.config/rclone # rclone config
    -sh: rclone: not found
    LibreELEC:~/.config/rclone #
    Code
    LibreELEC:~ # uname -m
    x86_64
    LibreELEC:~ # uname -n
    LibreELEC
    LibreELEC:~ # uname -r
    4.11.12
    LibreELEC:~ # uname -i
    unknown
    LibreELEC:~ # uname -o
    GNU/Linux

    to see if someone can help me with this

    Sorry for my english

    Thank you very much in advance

    Edited once, last by MoloMuy (November 20, 2018 at 9:54 AM).

  • You need to execute it as

    ./rclone config

    You'd be better off creating a directory like /storage/bin for your executables

    Then edit /storage/.profile and add

    PATH=/storage/bin:$PATH

    This will ensure that it can be run from anywhere

    See HERE for more details.