Click here to Skip to main content
15,881,938 members
Articles / Operating Systems / Windows

Windows :xRDP to Ubuntu

Rate me:
Please Sign up or sign in to vote.
5.00/5 (3 votes)
21 Mar 2014CPOL2 min read 8.7K   5  
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 Image 5 Image 6 Image 7 Image 8 Image 9 Image 10 Image 11 Image 12

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



Comments and Discussions

 
-- There are no messages in this forum --