Activate SSH before the first start

  • Hello

    Is it possible to install ssh on a freshly installed image on the sd card so that a backup can be imported via ssh?


    I would like to do without keyboard and mouse for a new installation.

    Raspi 4, Argone One m.2,LibreElec 10.95.1

  • Hello


    I am trying to unpack a backup which unfortunately does not work.


    What am I doing wrong?


    Code
    LibreELEC:~/backup # tar -xzf 20220414162636.tar  storage
    tar: invalid magic
    tar: short read
    tar: storage: not found in archive

    Raspi 4, Argone One m.2,LibreElec 10.95.1

  • Use tar xf 20220414162636.tar -C /


    Edit: this does not work reliable.


    Do:

    Code
    mkdir -p /storage/.restore
    cp 20220414162636.tar /storage/.restore
    reboot

    Edited once, last by mglae ().