Hi guys,
I come here for a little help.
I’m getting new to Tiny Core (PiCore) and discovering this very practical distro.
I know a bit of debian based distros, but it’s kind of… Hugely different.
Let’s get to the point.
My purpose is to run the framework magicmirror on piCore (
https://github.com/MichMich/MagicMirror)
Magicmirror basically use nodejs npm and electron, so it should be alright.
I started with a fresh install of piCore 9.03, connect through SSH and :
1- First, installation of node and git :
tce-load –wi git node
2- Clone of the repository :
git clone https://github.com/MichMich/MagicMirror
3- Change into the new folder and install the magicmirror
cd Magicmirror && npm install
4- Launching the mirror :
npm start
5- But I got an error :
/home/tc/MagicMirror/node_modules/electron/dist/electron: error while loading shared libraries: libgtk-x11-2.0.so.0: cannot open shared object file: No such file or directory
6- No problem, I can handle it and after a bit of search, I found and installed gtk2
tce-load –wi gtk2
7- Launching the mirror again and:
/home/tc/MagicMirror/node_modules/electron/dist/electron: error while loading shared libraries: libdbus-1.so.3: cannot open shared object file: No such file or directory
8- Ok, google it again and installed dbus
tce-load –wi dbus
9- Launching the mirror again and:
/home/tc/MagicMirror/node_modules/electron/dist/electron: error while loading shared libraries: libXi.so.6: cannot open shared object file: No such file or directory
10- Well googled it again and installed libXi
tce-load –wi libXi
11- Launching the mirror again and:
/home/tc/MagicMirror/node_modules/electron/dist/electron: error while loading shared libraries: libXtst.so.6: cannot open shared object file: No such file or directory
12- Hum... Ok, I installed libXtst
tce-load –wi libXtst
13- Launching the mirror again and:
/home/tc/MagicMirror/node_modules/electron/dist/electron: error while loading shared libraries: libXss.so.1: cannot open shared object file: No such file or directory
14- After lots of searches, I couldn't fint this dependency anywhere within the 9.03 repository. Some links leads me to Xorg, but it's not working.
Do you guys have any tips for me?
Thanks you a lot.