E2i player

Probaly not the skin then, strange one as it tells you the E2istream has been installed on the screen, when it clearly hasnt.
 
Am I doing the right thing
#!/bin/sh ##setup command = wget http://www.softrix.co.uk/istream/installer.sh -O - | /bin/sh # remove old version rm -rf /usr/lib/enigma2/python/Plugins/Extensions/IPTVPlayer # Download and install plugin cd /tmp set -e wget "http://www.softrix.co.uk/istream/downloads/e2istream_pythonX.X.tar.gz" tar -xzf e2istream_pythonX.X.tar.gz -C / set +e rm -f e2istream_pythonX.X.tar.gz cd .. sync echo "#########################################################" echo "# e2iStream INSTALLED SUCCESSFULLY #" echo "#########################################################" echo "# BOX IS REBOOTING #" echo "#########################################################" reboot exit 0


I'm pasting all of this in mobile ssh
 
Looks like it’s installed try rebooting then press green button to look in plugins if not in there press green again to download plugins and then go in extensions and look down the list till you see istream
 
looking at the output its not running the script, try the following command :
Code:
 wget http://www.softrix.co.uk/istream/installer.sh -O installer.sh && bash installer.sh
 
doesn't look like the bash installer.sh ran so just redo the following

Code:
bash installer.sh
 
looking again it looks like you only pasted up to the . so you may have to run the following cammand if the above fails

Code:
bash installer.
 
The bash installer link didn't work.
you didn't copy and paste the whole command so the file was saved with a wrong name.

do the following, 1 line at a time:

Code:
rm installer*
wget http://www.softrix.co.uk/istream/installer.sh -O instal
bash instal
 
This is what it did ? The box still hasnt rebooted
 

Attachments

  • Screenshot_20190702-222616_Mobile SSH.jpg
    Screenshot_20190702-222616_Mobile SSH.jpg
    505.5 KB · Views: 9
it looks like your copy and paste isn't copying the whole line of code I pasted above.

lets try one more time :)
Code:
rm installer*
wget http://www.softrix.co.uk/istream/installer.sh
bash installer.sh
 
I use mobile ssh so not backwards and forwards to my computer (when kids are not hijacking it) I copied and pasted it fine and from the first screenshot earlier it said installed successfully would it not not have stated collected errors or something along those lines I re ran it earlier off phone installed fine
 
your right but I was just looking at the output
Code:
echo "#########################################################" echo "# e2iStream INSTALLED SUCCESSFULLY #" echo "#########################################################" echo "# BOX IS REBOOTING #" echo "#########################################################" reboot exit 0

which is basically lines of code in the script rather than output from the script so something's not right which is why I suggested splitting it over two lines of code but then the rest of his screenshots have only carried out partial commands, ie the screenshot after my post giving alternative he appears to chopped of all the code after the . in installer.sh

I could tell him to install my build as it's included in that lol
 
your right but I was just looking at the output
Code:
echo "#########################################################" echo "# e2iStream INSTALLED SUCCESSFULLY #" echo "#########################################################" echo "# BOX IS REBOOTING #" echo "#########################################################" reboot exit 0

which is basically lines of code in the script rather than output from the script so something's not right which is why I suggested splitting it over two lines of code but then the rest of his screenshots have only carried out partial commands, ie the screenshot after my post giving alternative he appears to chopped of all the code after the . in installer.sh

I could tell him to install my build as it's included in that lol
That may well be his best option. To install Grogbuild I mean.
 
Latest ipk if you want to install via ipk installer
Code:
https://www.softrix.co.uk/istream/install/enigma2-plugin-extensions-e2istream_20190623-r01_all.ipk

Or try terminal/putty
Code:
opkg install https://www.softrix.co.uk/istream/install/enigma2-plugin-extensions-e2istream_20190623-r01_all.ipk
 
Back
Top