CentOS Run -Befehl im Hintergrund
# 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