Команда Centos запустить в фоновом режиме
# to make the command work in the backgroud add & after it
command &
to check running commands on background
jobs -l
to kill the command with the proccess ID
kill -9 25177
MohammadMark