The instructions for installing CentOS are a little different than Ubuntu. Ubuntu uses apt to install other packages, and CentOS uses yum. There are a few other differences. I've got commands for both below.
Please note that the installation of Linux for all distributions must be the 64 bit version!!
Note that all instances of $ at the beginning of a line indicate a terminal command prompt, not something you type. the command follows the $ .
**Install Java** (http://openjdk.java.net/install/):
**Ubuntu:**
$ sudo apt-get install openjdk-8-jdk
$ java -version
**CentOS:**
$ su -c ''yum install java-1.8.0-openjdk''
$ java -version
**Install NodeJS** (http://tecadmin.net/install-latest-nodejs-npm-on-ubuntu/#):
**Ubuntu:**
$ sudo apt-get install python-software-properties
$ curl -sL https://deb.nodesource.com/setup_7.x | sudo -E bash -
$ sudo apt-get install nodejs
$ node -v
**CentOS:**
$ curl --silent --location https://rpm.nodesource.com/setup_6.x | bash -
as root:
$ yum install -y nodejs
$ node -v
Ensure IDE is already installed:
Eclipse (eclipse.org) is the most common IDE for Linux. Be sure to install a compatible version of Eclipse for LeanFT. The **IDE for Java EE Developers** works well.
(http://ubuntuhandbook.org/index.php/2016/01/how-to-install-the-latest-eclipse-in-ubuntu-16-04-15-10/)
**Install LeanFT**
Download the LeanFT install files from http://leanft-help.saas.hpe.com/en/14.00/HelpCenter/Content/Installation/LFTinst_install_lnx.htm
In a terminal window, go to location where you put the LeanFT tar file and run the following command:
tar xvfz HPE_UFT_Pro_LeanFT_14.00_Linux_64_bit_Installation_LeanFT_14.00_Linux64_Setup.tar.gz
Next, run the installer file with root permissions:
sudo ./LeanFTSetup
Now you should get a dialog to install UFT Pro (LeanFT).
![alt text][1]
[1]: /storage/temp/575-linux-leanft.png