HOW TO install Arora web-browser

Tested on RBPi2B, OSMC 2015.11-1, OSMC 2016.02-3

Needs:Screen resolution1280x1024 (or higher) and keyboard (mouse optinal)

This is an installer for Arora, a simple and SLOW web-browser.
Aurora is NOT for streaming content or flash content.

How to install, in shell run these commands:

wget https://raw.githubusercontent.com/zjoasan/arora_install/master/install_web.sh
sh ./install_web.sh

Attention: It takes up to 1½ minute to show after you started it from Kodi.

To change starting page, you have to edit /home/osmc/web-browser/webbis.sh

Contens of install_web.sh:

 #!/bin/bash
 sudo apt-get update 2>&1 | dialog --title "Updating package database..." --infobox "\nPlease wait...\n" 11 70
 sudo apt-get --show-progress -y install dialog arora fbi libexif12  2>&1 | grep --line-buffered -oP "(\d+(\.\d+)?(?=%))" | dialog --title "Installing FBI imageviewer and Arora" --gauge "\nPlease wait...\n" 11 70
 wget -O install_web.zip https://github.com/zjoasan/arora_install/blob/master/install_web.zip?raw=true  
 unzip -q -o install_web.zip 
 chmod +x /home/osmc/web-browser/webbis.sh 2>&1
 chmod +x /home/osmc/web-browser/webstart2.sh 2>&1
 chmod +x /home/osmc/web-browser/web_watchdog.sh 2>&1
 cp /home/osmc/.kodi/addons/plugin.program.www-launcher/fanart.jpg /home/osmc/web-browser/fanart.jpg
 rm -f install_web.zip 2>&1
 dialog --title "Installation finnished!" --msgbox "\nThank you for using my installer\n"  11 70
 exit

Please post the commands your script runs, rather than a script here.

You should edit your original posts to use this rather than suggest users run a script off the Internet. Same for the other tutorial.

It’s also better to put ZIPs on GitHub rather than a random website.

Moved the files to github, so people can inspect them before downloading them. Dont know much about github, So i hope this good enough.

That’s better, thanks.