getminera / minera

Minera is a web interface to monitor and manage mining devices

Home Page:http://getminera.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

rc.local not running due to issue.

opened this issue · comments

rc.local is failing to start because
#!/bin/sh
needs to be changed to
#!/bin/bash

fyi, Im running the latest image in qemu-system-arm. Then installing https://github.com/michelem09/minera/archive/developing.zip

Im using to remove php5

 
sudo apt-get -y purge `dpkg -l | grep php| awk '{print $2}' |tr "\n" " "`
rm -rf /etc/php5

Then to install php7

sudo su
apt-get update --fix-missing
apt-get -y install apt-transport-https lsb-release ca-certificates
wget -O /etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpg
echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" > /etc/apt/sources.list.d/php.list
apt-get update

I also had to change minera_install.sh
libssl1.0-dev to libssl-dev
and the install worked fine.

Thanks I will fix that. For PHP7.0 Minera 0.8.0 has it by default (I should release it in few days)