I've got a Tiny Core setup on a VMWare and plan on using it as a Selenium Node.
So far, I've installed JAVA, Chrome, Chromedriver, and Selenium on this machine. I'm able to launch the the Selenium jar from the terminal and it all works fine. To put the final finishing touch to this setup, I need to start the selenium jar on startup, but I'm having difficulty figuring it out. The commands to start the selenium is like this:
java -jar /path/to/selenium/server/selenium-server-standalone-2.28.0.jar -role node -nodeConfig /path/to/selenium/config/cofigFile.json
I'm a newbie to linux and tiny core so I may need some hand holding.
So far, I've tried to put this exact line in a shell script (runSelenium.sh), but no matter where i put it, it is not executed. Any suggestion would be great.
By the way, I'm not even sure if putting this line in a shell script is the best way to do this.
Thanks.