Sample Header Ad - 728x90

How to launch 3+ instances of freerdp for 3 windows VMs from single centos

0 votes
1 answer
856 views
I have 3 or more windows machines, those I can connect from centos individually using below command xfreerdp /u:username /p:password /v:hostname but what I want is to connect them in parallel, using some shell script like - #!/bin/bash xfreerdp /u:username /p:password /v:host1 & xfreerdp /u:username /p:password /v:host2 & xfreerdp /u:username /p:password /v:host3 wait Try1 : and received the below error, and also it has launched the only single rdp connection. > rdp_set_error_info:freerdp_set_last_error_ex > ERRINFO_DISCONNECTED_BY_OTHER_CONNECTION [0x00010005] Tyr2 : after the above attempt I tried using separate tabs of terminal to start the new RDP session for new VM still it throws same error. Please suggest if any other ways of doing rdp connection in parallel. **Note:** I don't have multimonitors to my system. I want this sessions on single system for different VM's
Asked by Dev (101 rep)
May 25, 2022, 12:04 PM
Last activity: Aug 5, 2022, 09:57 AM