Screenly / Anthias

The world's most popular open source digital signage project.
https://anthias.screenly.io
Other
2.48k stars 618 forks source link

Default install is not working (Big Buck Bunny) #540

Closed m4rkyx closed 7 years ago

m4rkyx commented 7 years ago

Hi,

On raspberry Pi v1 & v2, the 2016-12-01 version is not working ! I haven't test with raspberry Pi v3.

When I turn on the Big buck bunny video, the player crashed with this error :

image

And this is also not working with custom video (mpeg, mp4).

vpetersson commented 7 years ago

Try upgrading to the latest development version to see if that solves the issue.

m4rkyx commented 7 years ago

Sorry but I'm not used to GitHub so can you please explain me how to install the latest development version ? Thank you

vpetersson commented 7 years ago

Just SSH into the box and run:

bash <(curl -sL https://www.screenly.io/install-ose.sh)

Then answer 'yes' to the question if you want to install the development version.

m4rkyx commented 7 years ago

After 4 hours installing the dev version, it seems to work !

Since the new release, I've also an bug after the splashcreen where screenly stays in command line and doesn't switch into the "viewer mode". It did not happen all the time.

Thank you

ruielias commented 7 years ago

I also have the same problem defaut installation. Can you tell me the steps you've taken? Thank you.

h3n3b0sch commented 7 years ago

Just SSH into the box and run:

bash <(curl -sL https://www.screenly.io/install-ose.sh) Then answer 'yes' to the question if you want to install the development version.

doesn't seem to work for me. When i activate that command nothing happens.

What should i do to get rid of issue #454?

Hendrie

Edit: Just now I plugged the power in again and everything is working like it is supposed to. Could it be an timing problem? That the WiFi on the Raspberry Pi takes to long to get detected? Can i check this somewhere?

vpetersson commented 7 years ago

Hmm very strange.

Could you please post the full output of the run?

h3n3b0sch commented 7 years ago

There is no output (see the screenshot).

image

vpetersson commented 7 years ago

Can you add a "-v" to the curl command?

On Thu, Jun 15, 2017 at 9:50 PM Hendrie Bosch notifications@github.com wrote:

There is no output (see the screenshot).

[image: image] https://user-images.githubusercontent.com/2402124/27201166-ea7c64aa-521c-11e7-9c4b-e319a645db74.png

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/Screenly/screenly-ose/issues/540#issuecomment-308861977, or mute the thread https://github.com/notifications/unsubscribe-auth/AAV1ICmMe4R-rBqkOgC8taXw_-fTyi54ks5sEZkBgaJpZM4L2KWK .

h3n3b0sch commented 7 years ago

$ bash <(curl -v -sL https://www.screenly.io/install-ose.sh) gives:

* Hostname was NOT found in DNS cache
*   Trying 104.27.188.73...
* Connected to www.screenly.io (104.27.188.73) port 443 (#0)
* successfully set certificate verify locations:
*   CAfile: none
  CApath: /etc/ssl/certs
* SSLv3, TLS handshake, Client hello (1):
} [data not shown]
* SSLv3, TLS handshake, Server hello (2):
{ [data not shown]
* SSLv3, TLS handshake, CERT (11):
{ [data not shown]
* SSLv3, TLS handshake, Server key exchange (12):
{ [data not shown]
* SSLv3, TLS handshake, Server finished (14):
{ [data not shown]
* SSLv3, TLS handshake, Client key exchange (16):
} [data not shown]
* SSLv3, TLS change cipher, Client hello (1):
} [data not shown]
* SSLv3, TLS handshake, Finished (20):
} [data not shown]
* SSLv3, TLS change cipher, Client hello (1):
{ [data not shown]
* SSLv3, TLS handshake, Finished (20):
{ [data not shown]
* SSL connection using TLSv1.2 / ECDHE-ECDSA-AES128-GCM-SHA256
* Server certificate:
*        subject: OU=Domain Control Validated; OU=PositiveSSL Multi-Domain; CN=sni35563.cloudflaressl.com
*        start date: 2017-06-14 00:00:00 GMT
*        expire date: 2017-12-21 23:59:59 GMT
*        subjectAltName: www.screenly.io matched
*        issuer: C=GB; ST=Greater Manchester; L=Salford; O=COMODO CA Limited; CN=COMODO ECC Domain Validation Secure Server CA 2
*        SSL certificate verify ok.
> GET /install-ose.sh HTTP/1.1
> User-Agent: curl/7.38.0
> Host: www.screenly.io
> Accept: */*
>
< HTTP/1.1 302 Moved Temporarily
< Date: Fri, 16 Jun 2017 09:21:54 GMT
< Content-Type: text/html
< Transfer-Encoding: chunked
< Connection: keep-alive
< Set-Cookie: __cfduid=dd2596626dfde34963054482e0a516c141497604913; expires=Sat, 16-Jun-18 09:21:53 GMT; path=/; domain=.screenly.io; HttpOnly
< Location: https://raw.github.com/wireload/screenly-ose/master/bin/install.sh
* Server cloudflare-nginx is not blacklisted
< Server: cloudflare-nginx
< CF-RAY: 36fcb3986d392c4e-AMS
<
* Ignoring the response-body
{ [data not shown]
* Connection #0 to host www.screenly.io left intact
* Issue another request to this URL: 'https://raw.github.com/wireload/screenly-ose/master/bin/install.sh'
* Hostname was NOT found in DNS cache
*   Trying 151.101.36.133...
* Connected to raw.github.com (151.101.36.133) port 443 (#1)
* successfully set certificate verify locations:
*   CAfile: none
  CApath: /etc/ssl/certs
* SSLv3, TLS handshake, Client hello (1):
} [data not shown]
* SSLv3, TLS handshake, Server hello (2):
{ [data not shown]
* SSLv3, TLS handshake, CERT (11):
{ [data not shown]
* SSLv3, TLS alert, Server hello (2):
} [data not shown]
* SSL certificate problem: unable to get local issuer certificate
* Closing connection 1
* SSLv3, TLS alert, Client hello (1):
} [data not shown]
vpetersson commented 7 years ago

Hmm, it's could be an SSL issue if you're running an older version of Raspbian.

Try this:

sudo apt-get update
sudo apt-get upgrade
cd ~/screenly
git pull
h3n3b0sch commented 7 years ago

I'm using jessie Linux raspberrypi 4.9.24+

I'm doing the update now....

h3n3b0sch commented 7 years ago

Upgraded... git pull gave: Already up-to-date.

vpetersson commented 7 years ago

ok now try:

cd ~/screenly/bin
./install.sh
h3n3b0sch commented 7 years ago

$ bash <(curl -v -sL https://www.screenly.io/install-ose.sh) still shows the same output...

h3n3b0sch commented 7 years ago

Every answer should be "y" ?

vpetersson commented 7 years ago

Correct.

h3n3b0sch commented 7 years ago

It says: Installation completed

A reboot would be the thing to do now?

vpetersson commented 7 years ago

Can you post the full output of the run?

h3n3b0sch commented 7 years ago

How should i do this?

h3n3b0sch commented 7 years ago

Okay, just copied and paste here...

pi@raspberrypi:~/screenly/bin $ ./install.sh
   _____                           __         ____  _____ ______
  / ___/_____________  ___  ____  / /_  __   / __ \/ ___// ____/
  \__ \/ ___/ ___/ _ \/ _ \/ __ \/ / / / /  / / / /\__ \/ __/
 ___/ / /__/ /  /  __/  __/ / / / / /_/ /  / /_/ /___/ / /___
/____/\___/_/   \___/\___/_/ /_/_/\__, /   \____//____/_____/
                                 /____/
Screenly OSE requires a dedicated Raspberry Pi / SD card.
You will not be able to use the regular desktop environment once installed.

Do you still want to continue? (y/N)
Would you like to use the development branch? You will get the latest features, but thi                       ngs may break. (y/N)

Would you like to perform a full system upgrade as well? (y/N)
+ sudo mkdir -p /etc/ansible
+ echo -e '[local]\nlocalhost ansible_connection=local'
+ sudo tee /etc/ansible/hosts
+ '[' '!' -f /etc/locale.gen ']'
+ sudo sed -i s/apt.screenlyapp.com/archive.raspbian.org/g /etc/apt/sources.list
+ sudo apt-get update
Get:1 http://mirrordirector.raspbian.org jessie InRelease [14,9 kB]
Hit http://archive.raspberrypi.org jessie InRelease
Get:2 http://mirrordirector.raspbian.org jessie/main armhf Packages [9533 kB]
Hit http://archive.raspberrypi.org jessie/main armhf Packages
Hit http://archive.raspberrypi.org jessie/ui armhf Packages
Ign http://archive.raspberrypi.org jessie/main Translation-nl_NL
Ign http://archive.raspberrypi.org jessie/main Translation-nl
Ign http://archive.raspberrypi.org jessie/main Translation-en
Ign http://archive.raspberrypi.org jessie/ui Translation-nl_NL
Ign http://archive.raspberrypi.org jessie/ui Translation-nl
Ign http://archive.raspberrypi.org jessie/ui Translation-en
Get:3 http://mirrordirector.raspbian.org jessie/contrib armhf Packages [43,3 kB]
Get:4 http://mirrordirector.raspbian.org jessie/non-free armhf Packages [84,2 kB]
Get:5 http://mirrordirector.raspbian.org jessie/rpi armhf Packages [1356 B]
Ign http://mirrordirector.raspbian.org jessie/contrib Translation-nl_NL
Ign http://mirrordirector.raspbian.org jessie/contrib Translation-nl
Ign http://mirrordirector.raspbian.org jessie/contrib Translation-en
Ign http://mirrordirector.raspbian.org jessie/main Translation-nl_NL
Ign http://mirrordirector.raspbian.org jessie/main Translation-nl
Ign http://mirrordirector.raspbian.org jessie/main Translation-en
Ign http://mirrordirector.raspbian.org jessie/non-free Translation-nl_NL
Ign http://mirrordirector.raspbian.org jessie/non-free Translation-nl
Ign http://mirrordirector.raspbian.org jessie/non-free Translation-en
Ign http://mirrordirector.raspbian.org jessie/rpi Translation-nl_NL
Ign http://mirrordirector.raspbian.org jessie/rpi Translation-nl
Ign http://mirrordirector.raspbian.org jessie/rpi Translation-en
Fetched 9677 kB in 1min 46s (91,1 kB/s)
Reading package lists... Done
+ sudo apt-get purge -y python-setuptools python-pip python-pyasn1
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package 'python-pip' is not installed, so not removed
Package 'python-pyasn1' is not installed, so not removed
Package 'python-setuptools' is not installed, so not removed
The following package was automatically installed and is no longer required:
  libllvm3.7
Use 'apt-get autoremove' to remove it.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
+ sudo apt-get install -y python-dev git-core libffi-dev libssl-dev
Reading package lists... Done
Building dependency tree
Reading state information... Done
git-core is already the newest version.
libffi-dev is already the newest version.
libssl-dev is already the newest version.
python-dev is already the newest version.
The following package was automatically installed and is no longer required:
  libllvm3.7
Use 'apt-get autoremove' to remove it.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
+ sudo python
+ curl -s https://bootstrap.pypa.io/get-pip.py
Requirement already up-to-date: pip in /usr/local/lib/python2.7/dist-packages
+ sudo pip install ansible==2.1.0.0
Requirement already satisfied: ansible==2.1.0.0 in /usr/local/lib/python2.7/dist-packag                       es
Requirement already satisfied: pycrypto>=2.6 in /usr/local/lib/python2.7/dist-packages                        (from ansible==2.1.0.0)
Requirement already satisfied: setuptools in /usr/local/lib/python2.7/dist-packages (fr                       om ansible==2.1.0.0)
Requirement already satisfied: paramiko in /usr/local/lib/python2.7/dist-packages (from                        ansible==2.1.0.0)
Requirement already satisfied: jinja2 in /usr/local/lib/python2.7/dist-packages (from a                       nsible==2.1.0.0)
Requirement already satisfied: PyYAML in /usr/local/lib/python2.7/dist-packages (from a                       nsible==2.1.0.0)
Requirement already satisfied: cryptography>=1.1 in /usr/local/lib/python2.7/dist-packa                       ges (from paramiko->ansible==2.1.0.0)
Requirement already satisfied: pyasn1>=0.1.7 in /usr/local/lib/python2.7/dist-packages                        (from paramiko->ansible==2.1.0.0)
Requirement already satisfied: MarkupSafe in /usr/local/lib/python2.7/dist-packages (fr                       om jinja2->ansible==2.1.0.0)
Requirement already satisfied: six>=1.4.1 in /usr/local/lib/python2.7/dist-packages (fr                       om cryptography>=1.1->paramiko->ansible==2.1.0.0)
Requirement already satisfied: ipaddress in /usr/local/lib/python2.7/dist-packages (fro                       m cryptography>=1.1->paramiko->ansible==2.1.0.0)
Requirement already satisfied: cffi>=1.4.1 in /usr/local/lib/python2.7/dist-packages (f                       rom cryptography>=1.1->paramiko->ansible==2.1.0.0)
Requirement already satisfied: idna>=2.0 in /usr/local/lib/python2.7/dist-packages (fro                       m cryptography>=1.1->paramiko->ansible==2.1.0.0)
Requirement already satisfied: enum34 in /usr/local/lib/python2.7/dist-packages (from c                       ryptography>=1.1->paramiko->ansible==2.1.0.0)
Requirement already satisfied: pycparser in /usr/local/lib/python2.7/dist-packages (fro                       m cffi>=1.4.1->cryptography>=1.1->paramiko->ansible==2.1.0.0)
+ ansible localhost -m git -a 'repo=https://github.com/wireload/screenly-ose.git dest=/                       home/pi/screenly version=master'
localhost | SUCCESS => {
    "after": "45ce6d797e611a7c2469e927bfecb1760a5987bd",
    "before": "bd6309eba8b614cfb8a1df25c6e8d4b9e63c1960",
    "changed": true
}
+ cd /home/pi/screenly/ansible
+ ansible-playbook site.yml --skip-tags enable-ssl

PLAY [Install Screenly] ********************************************************

TASK [setup] *******************************************************************
ok: [localhost]

TASK [system : stat] ***********************************************************
ok: [localhost]

TASK [system : set_fact] *******************************************************
ok: [localhost]

TASK [system : debug] **********************************************************
skipping: [localhost]

TASK [system : Make sure we have proper framebuffer depth] *********************
ok: [localhost]

TASK [system : Fix framebuffer bug] ********************************************
ok: [localhost]

TASK [system : Backup kernel boot args] ****************************************
ok: [localhost]

TASK [system : debug] **********************************************************
ok: [localhost] => {
    "msg": "Use cmdline.txt.orig for boot parameters (don't remove this file)"
}

TASK [system : copy] ***********************************************************
changed: [localhost]

TASK [system : Use Systemd as init and quiet boot process] *********************
changed: [localhost]

TASK [system : Install Screenly dependencies] **********************************
ok: [localhost] => (item=[u'console-data', u'libffi-dev', u'libssl-dev', u'matchbox', u'omxplayer', u'python-dev', u'python-netifaces', u'python-simplejson', u'rpi-update', u'sqlite3', u'systemd', u'uzbl', u'x11-xserver-utils', u'xserver-xorg'])

TASK [system : Install systemd-sysv on Wheezy] *********************************
skipping: [localhost]

TASK [system : Remove deprecated apt dependencies] *****************************
ok: [localhost] => (item=[u'supervisor', u'lightdm', u'lightdm-gtk-greeter', u'dphys-swapfile'])

TASK [system : Perform system upgrade] *****************************************
ok: [localhost]

TASK [system : Clean up unused packages] ***************************************
changed: [localhost]
 [WARNING]: Consider using apt module rather than running apt-get

TASK [system : Remove deprecated pip dependencies] *****************************
ok: [localhost]

TASK [system : Copy in rc.local] ***********************************************
ok: [localhost]

TASK [system : Copy in 01_nodoc] ***********************************************
ok: [localhost]

TASK [system : Copy in evdev] **************************************************
changed: [localhost]

TASK [system : Clear out X11 configs (disables touchpad and other unnecessary things)] ***
ok: [localhost] => (item=50-synaptics.conf)
changed: [localhost] => (item=10-quirks.conf)
ok: [localhost] => (item=50-wacom.conf)

TASK [system : Restart X] ******************************************************
changed: [localhost]

TASK [system : Disable swap] ***************************************************
ok: [localhost]

TASK [system : Remove swapfile from disk] **************************************
ok: [localhost]

TASK [network : Copies network manger and watchdog] ****************************
changed: [localhost] => (item=screenly_net_mgr.py)
ok: [localhost] => (item=screenly_net_watchdog.py)

TASK [network : Copies network manager unit file] ******************************
ok: [localhost]

TASK [network : Copies network watchdog service file] **************************
ok: [localhost]

TASK [network : Copies network watchdog timer file] ****************************
ok: [localhost]

TASK [network : Copies in sample network.ini file] *****************************
changed: [localhost]

TASK [network : Activate network manager] **************************************
changed: [localhost]

TASK [network : Activate network watchdog] *************************************
changed: [localhost]

TASK [network : Install cronjob for watchdog] **********************************
ok: [localhost]

TASK [rpi-update : Download rpi-update] ****************************************
skipping: [localhost]

TASK [rpi-update : Run kernel upgrade (this can take up to 10 minutes)] ********
skipping: [localhost]

TASK [rpi-update : debug] ******************************************************
skipping: [localhost]

TASK [screenly : Ensure folders exist] *****************************************
ok: [localhost] => (item=.screenly)
ok: [localhost] => (item=.config)
ok: [localhost] => (item=.config/uzbl)

TASK [screenly : Copy Screenly default config] *********************************
ok: [localhost]

TASK [screenly : Copy in GTK config] *******************************************
ok: [localhost]

TASK [screenly : Copy in UZBL config] ******************************************
ok: [localhost]

TASK [screenly : Install pip dependencies] *************************************
ok: [localhost]

TASK [screenly : Create default assets database if does not exists] ************
ok: [localhost]

TASK [screenly : Run database migration] ***************************************
changed: [localhost]

TASK [screenly : debug] ********************************************************
ok: [localhost] => {
    "msg": "Obsolete column (filename) is not present\nColumns (is_enabled,nocache) already present\nalready has primary key\nColumn (play_order) already present\nMigration done."
}

TASK [screenly : Copy screenly_utils.sh] ***************************************
changed: [localhost]

TASK [screenly : Copy screenly_overrides] **************************************
changed: [localhost]

TASK [screenly : Copy screenly systemd units] **********************************
ok: [localhost] => (item=X.service)
ok: [localhost] => (item=matchbox.service)
ok: [localhost] => (item=screenly-viewer.service)
ok: [localhost] => (item=screenly-web.service)

TASK [screenly : Enable screenly systemd services] *****************************
changed: [localhost] => (item=X.service)
changed: [localhost] => (item=matchbox.service)
changed: [localhost] => (item=screenly-viewer.service)
changed: [localhost] => (item=screenly-web.service)

TASK [screenly : Restart services] *********************************************
changed: [localhost]

TASK [splashscreen : Installs dependencies] ************************************
ok: [localhost] => (item=[u'fbi'])

TASK [splashscreen : Copies in splash screen] **********************************
ok: [localhost]

TASK [splashscreen : Copies in rc script] **************************************
ok: [localhost]

TASK [splashscreen : Enables asplashscreen] ************************************
ok: [localhost]

RUNNING HANDLER [restart-screenly-server] **************************************
changed: [localhost]

RUNNING HANDLER [restart-x-server] *********************************************
changed: [localhost] => (item=X.service)
changed: [localhost] => (item=matchbox.service)

RUNNING HANDLER [restart-screenly-viewer] **************************************
changed: [localhost]

PLAY RECAP *********************************************************************
localhost                  : ok=49   changed=18   unreachable=0    failed=0

+ sudo apt-get autoclean
Reading package lists... Done
Building dependency tree
Reading state information... Done
Del libraspberrypi0 1.20161215-1 [842 kB]
Del libsmbclient 2:4.2.14+dfsg-0+deb8u5 [140 kB]
Del libbind9-90 1:9.9.5.dfsg-9+deb8u9 [41,2 kB]
Del raspberrypi-bootloader 1.20161215-1 [3260 kB]
Del libjasper1 1.900.1-debian1-2.4+deb8u2 [110 kB]
Del udev 215-17+deb8u6 [850 kB]
Del libisccfg-export90 1:9.9.5.dfsg-9+deb8u10 [37,9 kB]
Del libjbig2dec0 0.13-4~deb8u1 [51,5 kB]
Del libisc-export95 1:9.9.5.dfsg-9+deb8u10 [124 kB]
Del libc6-dev 2.19-18+deb8u7 [1724 kB]
Del libpam-systemd 215-17+deb8u6 [113 kB]
Del libdns100 1:9.9.5.dfsg-9+deb8u9 [599 kB]
Del libwbclient0 2:4.2.14+dfsg-0+deb8u5 [118 kB]
Del bind9-host 1:9.9.5.dfsg-9+deb8u9 [65,5 kB]
Del libdns-export100 1:9.9.5.dfsg-9+deb8u9 [397 kB]
Del libtiff5 4.0.3-12.3+deb8u2 [197 kB]
Del libisc95 1:9.9.5.dfsg-9+deb8u10 [149 kB]
Del libisccc90 1:9.9.5.dfsg-9+deb8u10 [34,4 kB]
Del libdns-export100 1:9.9.5.dfsg-9+deb8u10 [399 kB]
Del vim-tiny 2:7.4.488-7+deb8u2 [357 kB]
Del login 1:4.2-3+deb8u3 [716 kB]
Del systemd-sysv 215-17+deb8u6 [36,3 kB]
Del libisccc90 1:9.9.5.dfsg-9+deb8u9 [34,3 kB]
Del systemd 215-17+deb8u6 [2212 kB]
Del libsystemd0 215-17+deb8u6 [85,5 kB]
Del raspberrypi-sys-mods 20170313 [8596 B]
Del samba-libs 2:4.2.14+dfsg-0+deb8u2 [4244 kB]
Del libraspberrypi-doc 1.20161215-1 [31,4 MB]
Del pi-bluetooth 0.1.2 [3398 B]
Del vim-common 2:7.4.488-7+deb8u2 [185 kB]
Del libgudev-1.0-0 215-17+deb8u6 [40,5 kB]
Del libc6 2.19-18+deb8u7 [4082 kB]
Del multiarch-support 2.19-18+deb8u7 [180 kB]
Del raspberrypi-kernel 1.20161215-1 [30,1 MB]
Del raspberrypi-sys-mods 20161220 [8472 B]
Del libirs-export91 1:9.9.5.dfsg-9+deb8u10 [36,6 kB]
Del samba-common 2:4.2.14+dfsg-0+deb8u5 [270 kB]
Del libisccfg-export90 1:9.9.5.dfsg-9+deb8u9 [37,9 kB]
Del libwbclient0 2:4.2.14+dfsg-0+deb8u2 [117 kB]
Del libgnutls-openssl27 3.3.8-6+deb8u4 [139 kB]
Del liblwres90 1:9.9.5.dfsg-9+deb8u9 [47,7 kB]
Del libisc95 1:9.9.5.dfsg-9+deb8u9 [149 kB]
Del libraspberrypi-dev 1.20161215-1 [397 kB]
Del raspi-config 20161207 [17,7 kB]
Del libc6-dbg 2.19-18+deb8u7 [3179 kB]
Del libbind9-90 1:9.9.5.dfsg-9+deb8u10 [41,3 kB]
Del libraspberrypi-bin 1.20161215-1 [331 kB]
Del libirs-export91 1:9.9.5.dfsg-9+deb8u9 [36,5 kB]
Del ca-certificates 20141019+deb8u2 [207 kB]
Del passwd 1:4.2-3+deb8u3 [926 kB]
Del libc-bin 2.19-18+deb8u7 [1206 kB]
Del libdns100 1:9.9.5.dfsg-9+deb8u10 [600 kB]
Del tzdata 2016j-0+deb8u1 [186 kB]
Del libudev1 215-17+deb8u6 [53,3 kB]
Del bind9-host 1:9.9.5.dfsg-9+deb8u10 [65,6 kB]
Del samba-common 2:4.2.14+dfsg-0+deb8u2 [269 kB]
Del libc-dev-bin 2.19-18+deb8u7 [231 kB]
Del locales 2.19-18+deb8u7 [3946 kB]
Del liblwres90 1:9.9.5.dfsg-9+deb8u10 [47,8 kB]
Del libsmbclient 2:4.2.14+dfsg-0+deb8u2 [138 kB]
Del samba-libs 2:4.2.14+dfsg-0+deb8u5 [4249 kB]
Del libisccfg90 1:9.9.5.dfsg-9+deb8u9 [50,4 kB]
Del libisccfg90 1:9.9.5.dfsg-9+deb8u10 [50,3 kB]
Del libgnutls-deb0-28 3.3.8-6+deb8u4 [625 kB]
Del libisc-export95 1:9.9.5.dfsg-9+deb8u9 [124 kB]
+ sudo apt-get clean
+ sudo find /usr/share/doc -depth -type f '!' -name copyright -delete
+ sudo find /usr/share/doc -empty -delete
+ sudo rm -rf /usr/share/man /usr/share/groff /usr/share/info /usr/share/lintian /usr/share/linda /var/cache/man
+ sudo find /usr/share/locale -type f '!' -name en '!' -name 'de*' '!' -name 'es*' '!' -name 'ja*' '!' -name 'fr*' '!' -name 'zh*' -delete
+ sudo find /usr/share/locale -mindepth 1 -maxdepth 1 '!' -name 'en*' '!' -name 'de*' '!' -name 'es*' '!' -name 'ja*' '!' -name 'fr*' '!' -name 'zh*' -exec rm -r '{}' ';'
+ cd /home/pi/screenly
+ git rev-parse HEAD
+ set +x
Installation completed.
vpetersson commented 7 years ago

Great. Looks like it works. What do you get for ps faux | grep python.

h3n3b0sch commented 7 years ago
pi@raspberrypi:~/screenly/bin $ ps faux | grep python
pi       18847  2.0  0.4   4508  1992 pts/1    S+   14:50   0:00              \_ grep --color=auto python
root       721  0.2  1.2   9868  5528 ?        Ss   00:18   2:19 /usr/bin/python /home/pi/OnOffMotionDetection.py
pi       18276  0.5  4.4  24712 19960 ?        Ss   14:02   0:14 /usr/bin/python /home/pi/screenly/server.py
pi       18310  7.2  3.6  24712 16144 ?        S    14:03   3:22  \_ /usr/bin/python /home/pi/screenly/server.py
pi       18428 21.8  4.3  58456 19200 ?        Ssl  14:04   9:57 /usr/bin/python /home/pi/screenly/viewer.py
pi       18475  0.3  1.6  13132  7328 ?        S    14:05   0:10 python /usr/bin/uzbl-event-manager -va start
vpetersson commented 7 years ago

Looks like everything is running fine then.

h3n3b0sch commented 7 years ago

Okay. But how should keep up to date?

vpetersson commented 7 years ago

Just repeat the install script.

h3n3b0sch commented 7 years ago

This last ./install.sh ?

vpetersson commented 7 years ago

Yes.

h3n3b0sch commented 7 years ago

Okay, thanks for the help. You are doing a great job!

vpetersson commented 7 years ago

Thanks, but lots of people put in a lot of effort into this, so I don't want to take any credit from them. :)