includeproject / linux_performance_analysis

Tools and dashboard of Linux Performance Analysis for each release
GNU General Public License v2.0
1 stars 2 forks source link

Read an implement LTP #2

Closed VictorRodriguez closed 9 years ago

VictorRodriguez commented 9 years ago

Read documentation and run LTP

https://linux-test-project.github.io/

Make it run on any HW you have ( server/desktop /embedded )

martinsillo commented 9 years ago

ok, i support and i try it

jglezt commented 9 years ago

I have already installed LTP and I had run the "runalltestsripts". To anyone which still have not installed LTP, I leave a brief summary to how install LTP.

The required packages are: make, bison, yacc, flex, automake, autoconf.

1.- Download the newest version form here http://sourceforge.net/projects/ltp/files/LTP%20Source/ 2.- Untar the archive

To configure the package using autoconf:

3.-On the terminal, go to the folder and put the following commands $make autotools $ test -d “$(pwd)” || mkdir -p “$(pwd)” $cd “$(pwd)” && “$(pwd)/configure”

To compile and install the package:

4.- On the terminal, execute the following commands $make all (If you are using a non-root user) $sudo make SKIP_IDCHECK=1 install

And thats all, if you want to now if the installation were successful, run the “runalltest” script which is located on the installation directory.

VictorRodriguez commented 9 years ago

Please upload the wiki to track this info

VictorRodriguez commented 9 years ago

Also , this are commands , how can I know that you have run this into your server/embedded-platfrom or desktop ?

We need to : 1) Automate this process ( bash/python/what ever you want - script ) 2) Publish the results on a web page

Do you think that will be useful to create an image with the architecture design of the entire system?

jglezt commented 9 years ago

Ok, I will make the script as soon as possible :)

richo-mx commented 9 years ago

Closing this issue since LTP is already implemented.