Hello,
Is it possible to run pt_linux_x64 in the background in a Linux command-line environment? For example, I am trying the following command (notice the & at the end to make it run in the background):
./pt_linux_x64 -d 1 -i 1 -r 1 &
After I run this, I see it listed in the output of "ps aux", but it is stopped, and it never actually starts running and never returns, and the log file is never created.
My goal is to create an automated test where I can kick off pt_inux_x64 on multiple hardware systems at the same time, and wait for each one to finish running, and then take a copy of the log file once it has finished running. Without having it run in the background, I am stuck waiting for each one to finish running before I can start running it on the next hardware system.
Is it possible to run pt_linux_x64 in the background in a Linux command-line environment? For example, I am trying the following command (notice the & at the end to make it run in the background):
./pt_linux_x64 -d 1 -i 1 -r 1 &
After I run this, I see it listed in the output of "ps aux", but it is stopped, and it never actually starts running and never returns, and the log file is never created.
My goal is to create an automated test where I can kick off pt_inux_x64 on multiple hardware systems at the same time, and wait for each one to finish running, and then take a copy of the log file once it has finished running. Without having it run in the background, I am stuck waiting for each one to finish running before I can start running it on the next hardware system.
Comment