65.9K
CodeProject is changing. Read more.
Home

Windows :xRDP to Ubuntu

starIconstarIconstarIconstarIconstarIcon

5.00/5 (3 votes)

Mar 22, 2014

CPOL

2 min read

viewsIcon

8911

Windows :xRDP to Ubuntu

In my technical journey, my next goal is to master BIG DATA and NoSQL. With the support of my manager and a colleague, we received 5 Linux Virtual Machines from the IT Team (3 of them running CENTOS 6.5 and  2 running UBUNTU).

Our personal/official Laptops run on Windows 8/8.1. So our pre-requisite is to set up RDP to these linux machines.

On some research, we found that xrdp is the best option to remotely connect to these LINUX machines from Windows.

Step 1: Putty on Windows

  • PuTTY is an SSH and telnet client. You can download putty here (opt for putty.exe)
  • Once you run Putty.exe, this is what you see.

    putty

  • Enter the Host Name/IP address provided to you. If not available, contact your IT Team.

Step 2: Installing xRDP

  • Once you provide a valid host name/IP address, putty console will open asking for username and password (will not be visible while typing).
  • Once you successfully login, this is what you see.

    putty_login

If you see “username is not in the sudoers file“.

  • Try with root username and password.
  • If root username and password is not available, add your username to administrator group.

Run the commands below, one after another.

Note

  • Run next command only if the previous command succeeds.
  • Enter y/Y whenever asked for [y/N]
  1. sudo apt-get install xrdp
  2. sudo apt-get install gnome-session-fallback
  3. sudo /etc/init.d/xrdp restart
  4. cd ~
  5. ls -l
  6. echo “gnome-session –session=gnome-fallback” > .xsession
  7. ls -la
  8. cat .xsession

Step 3: RDP To Ubuntu from Windows

  • After successfully running all the commands above, now you should be able to log into the ubuntu machine.

    xrdp

  • Use the same credentials which you used initially with putty to login.
  • If you see a blue screen with distorted icons once you login, run this command:
    sudo apt-get install ubuntu-desktop

xrdp-ubuntu

Stay tuned for my next post on “xRDP to CENTOS 6.5″

Courtesy

Filed under: Operating System Tagged: Windows :xRDP to Ubuntu, xrdp to ubuntu from windows