Software Installation
- Install JDK. - Download and install JDK. 
- Configure the environment variables as follows: - export JAVA_HOME=your_path/jdk1.8.0_232 export JRE_HOME=${JAVA_HOME}/jre export CLASSPATH=.:${JAVA_HOME}/lib:${JRE_HOME}/jre export PATH=${PATH}:${JAVA_HOME}/bin export JAVA_TOOL_OPTIONS=-Dfile.encoding=UTF8
 
- Install numactl. - Run the following command to install numactl. - yum install –y numactl
- Install ANT. - Run the following command to install ANT. - yum install –y ant
- Set environment variables and add the following two lines to the /etc/profile file. - export ANT_HOME=/usr/share/ant/ export PATH=${PATH}:${ANT_HOME}/bin
  NOTE:
The installation path of ANT_HOME may vary according to the OS. You can run the find command to find the corresponding installation path. NOTE:
The installation path of ANT_HOME may vary according to the OS. You can run the find command to find the corresponding installation path.
- Install the htop tool. For details, see https://hisham.hm/htop/. 
Feedback