Mycroft is not responding on Ubuntu

1. Problem: Mycroft doesn’t reply to text or speech.

2. Steps to reproduce:

git pull --all
git merge upstream/dev
git status show

On branch dev
Your branch is up-to-date with 'origin/dev'.
nothing to commit, working directory clean

./mycroft.sh start
./start.sh cli --quiet

I see nothing in the Log Output of the CLI.

Here is some more output of different commands

ps auxf|grep mycroft

oren      8709  0.0  0.0  14224  1016 pts/3    S+   12:22   0:00          \_ grep mycroft
oren      8553  0.0  0.0  27188  2796 ?        Ss   12:21   0:00 SCREEN -mdS mycroft-service -c /home/oren/mycroft-core/scripts/mycroft-service.screen /home/oren/mycroft-core/start.sh service
oren      8555  0.0  0.0  12600  2884 pts/5    Ss+  12:21   0:00  \_ bash /home/oren/mycroft-core/start.sh service
oren      8564  9.0  0.2  80668 21848 pts/5    S+   12:21   0:00      \_ python /home/oren/mycroft-core/mycroft/messagebus/service/main.py
oren      8621  0.0  0.0  27188  2788 ?        Ss   12:21   0:00 SCREEN -mdS mycroft-cli -c /home/oren/mycroft-core/scripts/mycroft-service.screen -c /home/oren/mycroft-core/scripts/mycroft-audio.screen -c /home/oren/mycroft-core/scripts/mycroft-skills.screen -c /home/oren/mycroft-core/scripts/mycroft-voice.screen -c /home/oren/mycroft-core/scripts/mycroft-cli.screen /home/oren/mycroft-core/start.sh cli --quiet --simple
oren      8623  0.0  0.0  12600  2960 pts/9    Ss+  12:21   0:00  \_ bash /home/oren/mycroft-core/start.sh cli --quiet --simple
oren      8632  8.5  0.3 1475628 26140 pts/9   Sl+  12:21   0:00      \_ python /home/oren/mycroft-core/mycroft/client/text/main.py --quiet --simple

and

screen -ls
There are screens on:
        8621.mycroft-cli        (08/27/2017 12:21:59 PM)        (Detached)
        8553.mycroft-service    (08/27/2017 12:21:59 PM)        (Detached)

3. More info:

lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 16.04.2 LTS
Release:        16.04
Codename:       xenial
uname -a
Linux oren 4.4.0-83-generic #106-Ubuntu SMP Mon Jun 26 17:54:43 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux

Hi Oren,

seems like the skills and speech services aren’t starting for some reason. Have you run build_host_debian.sh and dev_setup.sh recently? There might be some new dependencies that causes the system to fail.

Do you see anything in scripts/logs/mycroft-skills.log and scripts/logs/mycroft-speech.log?

or you can try to start skills in the foreground using ./start.sh skills

and check what’s failing?

Great tips for troubleshooting. I will try it this week.
In the meantime I was able to run a fork that adds a web interface and shot a short video of it: https://oren.github.io/blog/mycroft-mobile.html

Thank you!