Click here to Skip to main content
15,867,771 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
I have two C++ program :

1 - connect to server and get another user Ip, after that connect to sightly user.
2 - run on Linux server and give information of other user to first program.

my question is How run second program on Linux server? is it possible?
Posted
Comments
Sergey Alexandrovich Kryukov 6-Aug-14 17:13pm    
The question makes no sense. If you asked how to develop some program, it would make some sense. If you already have some programs with required features, why not running them? how it could be impossible?
—SA

At first the program must run on linux, so it must be build to run on this linux system.
If two programs on different machiens want to communicate they should do it over the network.

This article demonstrates how to deal with.

"Have a lof of fun" :-O
 
Share this answer
 
Quote:
my question is How run second program on Linux server? is it possible?

Of course it is possible to run a program on a Linux server, provided that it is a Linux executable.
I order to create a Linux executable you have to write it using a Linux box (e.g. a virtual machine) g++ and Linux API, that are pretty different from the Windows ones.
It isn't a daunting task, however.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900