Very new to qt so please excuse my ignorance.
I already have a console command line program which i want to port to a ui.
The console program will either run on ubuntu server/ red hat linux without a graphical interface.
The basic idea I formed after some research was to use a client server model like fortune example.
I tried to deploy the fortune server to my ubuntu server but it failed with libQt5widgets.so dependency.
So first question is, do I need to install qt on all systems I intend to run programs on? I was under the impression that I could deploy them prepackaged once developed.
second, even after hours of googling and going through docs, I didn’t find a way to deploy qt libraries etc. to non X server systems like ubuntu server and red hat. What libraries will i need to install on each system assuming I don’t need ui components. I already have qt creator installed on my dev system.
Thirdly, Is there an option of creating a remote ui kind of setup where my code runs on the remote machine without ui but ui gets rendered on a client machine which can be windows/ ubuntu 12.04 standard desktop. This might be just me daydreaming but if possible this could avoid me a lot of event handling etc.
Finally for this scenario where I only want ui on the client machine which fires basic calls etc, what should i look into qtTcpsocket or event slot and listen?
↧