Is there any package for Ubuntu which allows me to connect to remote computer without disturbing or terminating others who have already connected to that server or who are accessing the computer directly?.
I remember I did this in Windows Server 2003 installing Terminal Server when I was doing my course which allowed multiple clients to connect to the server simultaneously with no disturbance to clients and even direct access to server.
Is there any package like this for Ubuntu desktops?
15 Answers
Yes. Ubuntu by default support VNC. Try using Terminal Server or Remote Desktop Viewer.
1NOMACHINE could be the best choice as it has a feature which doesn't reveal what a remote user is doing on and won't disturb other users who have already connected to it. In ubuntu nomachine is packaged as FreeNX
Thanks!
1This thing i have checked by installing on two ubuntu pcs and confirmed working...
ubuntu 14.10 multiple Simultaneous independent remote (desktop like ) connections
sudo apt-get install rdesktop
This will work natively with windows as it uses the same protocols. This is to connect from Linux to a windows server.
If you want to connect to the Linux server from other computers using vnc would be worth investigating.
2sudo apt-get install vnc4server
If you need no UI and terminal is just enough for you use SSH (Secure Shell) to connect remotely
ssh remote_username@remote_hostyou can even transfer files with SCP (Secure Copy)
scp your_username@remotehost:filename.ext /some/local/directory