Run more than one application in the same time

Atilla Gündoğan

I want to start my master server first:

cd /home/MasterServer
wine ForgeMasterServer.exe

Then I want to host my server:

cd /home/Forge
./forge.x86_64

Both of them should run after ssh client closes. I can do it by tmux. But once I start any program I can't type any command? Or If I type it simply doesnt work. I searched the net but couldn't find any solution. Thank you for your time.

heemayl

You can background the process by appending a & at the end e.g.:

./forge.x86_64 &

You can do the same for other processes too.

To view the list of currently backgrounded jobs, check the output of jobs command. The jobs will be shown with a job ID on the left, which can be used to get the job in the foreground again by fg %<Job_ID> e.g.:

fg %1

Similarly to kill a job:

kill %1

On a different note, to keep the backgrounder process running after you detached from your current shell session, you can use nohup or disown:

./forge.x86_64 & disown
nohup ./forge.x86_64 & &>/dev/null

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

Is it possible for more than one task in Task Scheduler to run a console application (.exe file) at the same time?

Is it possible for a JVM to run more than one program at the same time?

Run more than one lein task at the same time

Can I run more than one ansible instance at the same time on the same machine?

Run my script more than one time

Run IndexOf more than one time JS

How to work with more than one version of the same application at the same time in git?

(How) Can I run more than one Spring Boot application on the same server and port?

How to print more than one div at the same time in same pdf?

Is the following while loop can be run more than one time?

How to replace more than one word in JavaScript string at a same time?

Make the select statement wait for more than one channel at the same time

Using RAND() keyword in more than one query at the same time

Save file for more than one user at the same time

Allow more than one python threads to use resource at the same time

Allow more than one accordion to open at the same time

Can I use OpenGL in more than one language at the same time?

Insert records into a table from more than one users at same time

How to scan more than one location at the same time with ClamAV

C program fails to execute more than one statement at the same time

Groovy Mock the same Stream call more than one time

i am Trying more Flags to prevent the Activity to be opened more than one time at the Same time

StaticCompiler - Run the same application few time in one html page

Running where() more more than one time

Is there a way to assign delegate to more than one object of the same class just one time in Swift?

RDweb: Cannot run legacy VB6 DLL more than once, at the same time

Application.run with more than 30 arguments

How do I run the same linux command in more than one tab/shell simultaneously?

How do I run more than one asp.net core application on Nginx server