XCP-ng
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Home
    2. Linuxmonger
    L
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 0
    • Posts 1
    • Groups 0

    Linuxmonger

    @Linuxmonger

    0
    Reputation
    1
    Profile views
    1
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    Linuxmonger Unfollow Follow

    Latest posts made by Linuxmonger

    • RE: Is there something like VMRC (VMware Remote Console) for XCP-ng?

      @olivierlambert Is there a way to make Xen Orchestra run a session full screen without the lag of the https connection?
      At this point, I'm running xrdp on my Linux machines, and access everything from a shell script that I hard-link with different names;

      #!/bin/bash
      
      # Name the script the same as the machine you want to log into
      Server=$(basename ${0})
      
      # Get the credentials into an aray from .netrc, keys are the even references, values are the odds.
      Creds=($(grep -A 2 "machine ${Server}" ~/.netrc))
      
      # Open RDP session to the server, /sound and /microphone let Zoom work, opens full screen across multiple monitors.
      xfreerdp /f /sound /microphone /multimon /u:${Creds[3]} /p:"${Creds[5]}" /v:${Server}
      
      # Use <Ctrl>-<Alt>-<Enter> to switch fullscreen and allow disconnect
      

      Argh, why doesn't this keep carriage returns the way they were typed?

      posted in Compute
      L
      Linuxmonger