Hi all,
I have managed to install homeassistant and a couple more servers (influxdb, grafana) on my oneplus one running ubuntu touch using libertine. Now I want to start these when the phone boots, I thought it would be easy making it a service and configuring it with systemctl but it looks like it's not working. Is this even possible within libertine?
I know I'm pushing the boundaries of what a phone is supposed to do, but it's fun nonetheless. I have not found much documentation about libertine itself other than how to launch things, so I'd love to learn more about it if you can help thank you!
Best posts made by DanVal
-
Start process in libertine when phone boots
Latest posts made by DanVal
-
RE: Start process in libertine when phone boots
@applee Thank you! It looks like I can run
initctl listfrom terminal but not within the libertine container -
Start process in libertine when phone boots
Hi all,
I have managed to install homeassistant and a couple more servers (influxdb, grafana) on my oneplus one running ubuntu touch using libertine. Now I want to start these when the phone boots, I thought it would be easy making it a service and configuring it withsystemctlbut it looks like it's not working. Is this even possible within libertine?
I know I'm pushing the boundaries of what a phone is supposed to do, but it's fun nonetheless. I have not found much documentation about libertine itself other than how to launch things, so I'd love to learn more about it if you can help thank you! -
RE: Upgrade OpenSSL to version 1.1.1
I have solved this by running
/usr/bin/perl ./Configure linux-armv4instead of running./config. Other than that followed the steps described here -
RE: Upgrade OpenSSL to version 1.1.1
perl is installed as
perl -vreturns 5.22.1
I suspect this version might not include FindBin module for some reason?
Looks like other people had this issue and missing modue is the suspected culprit. -
RE: Upgrade OpenSSL to version 1.1.1
@dobey I am coming out of a rabbit hole where I am experimenting with installing
homeassistanton my One plus one, which requires thecryptographypython package. The package dropped support for older versions of OpenSSL and the installation fails, so I am now trying to install a supported version -
Upgrade OpenSSL to version 1.1.1
Hi everyone I am trying to upgrade OpenSSL to version 1.1.0 in a Libertine container.
The current version is 1.0.2g and if I runapt install opensslit results as the latest.
I have tried to compile and install manually downloading this versionhttps://www.openssl.org/source/openssl-1.1.1b.tar.gzbut when I run the command./config --prefix=/opt/openssl --openssldir=/opt/openssl/sslI get the following error/usr/bin/env.fakechroot: 1: eval: -march=armv7-a: not found /usr/bin/env.fakechroot: 1: eval: -march=armv7-a: not found Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /etc/perl /usr/local/lib/arm-linux-gnueabihf/perl/5.22.1 /usr/local/share/perl/5.22.1 /usr/lib/arm-linux-gnueabihf/perl5/5.22 /usr/share/perl5 /usr/lib/arm-linux-gnueabihf/perl/5.22 /usr/share/perl/5.22 /usr/local/lib/site_perl /usr/lib/arm-linux-gnueabihf/perl-base .) at ./Configure line 15. BEGIN failed--compilation aborted at ./Configure line 15.Am I using the wrong version maybe?