Remote Desktop Connection between Windows and Linux

Remote Desktop Connection between Windows and Linux

When it comes to remote desktop connection to Linux, people may first think of using VNC. When it comes to remote desktop to Windows, people may first think of using the remote desktop that comes with Windows. So is there any way to remotely access Windows from Linux, and remotely access Linux from Windows? Today, let’s discuss the remote communication between Linux and Windows. Taking CentOS6.6 as an example, the steps are as follows:

Connect to Linux using Windows Remote Desktop

1. Check whether GNome is installed on the server

[root@admin /]# rpm -qa | grep desktop

If gnome-desktop does not appear in the query results, you need to configure the installation source and install the GNOME graphical interface. Command: yum -y groupinstall "X Window

System" "Chinese Support" "Desktop"

2. Install VNCServer, configure VNCServer and set password

[root@admin /]# rpm -ivh tigervnc-server-1.1.0-18.el6.x86_64.rpm #Local installation of VNCServer
[root@admin /]# vncpasswd #Set VNC login password
[root@admin /]# vim /etc/sysconfig/vncservers #Modify configuration VNC
[root@admin /]# chkconfig vncserver on #Configure startup
[root@admin /]# service vncserver restart #Start VNC service

3. Allow 5900~5905 and 3389 in the firewall

The released VNC port needs to be configured according to the actual situation

4. Install the epel library

[root@admin /]# yum -y install epel-release

5. Install xrdp

[root@admin /]# yum -y install xrdp

6. Modify xrdp configuration

[root@admin /]# vim /etc/xrdp/xrdp.ini
max_bpp=32 #Change the default 24 to 32

7. Start the xrdp service and set it to start at boot

[root@admin /] chkconfig xrdp on
[root@admin /] service xrdp start

The above are all online installations. If you need offline installation, you can go to the website: http://www.rpmfind.net/ Search for xrdp and select the version that suits your system to download

[root@admin /] rpm -ivh xrdp-0.6.1-5.el6.x86_64.rpm

8. Test Remote Desktop


Connect to Windows using Linux Remote Desktop

1. Confirm that Linux has installed the GNome graphical desktop

2. Configure the Windows that needs to be remoted to allow remote desktop connection

3. Open the Remote Desktop port in Windows Firewall (the default Windows port is 3389)

4. Install the remote connection package in Linux

[root@admin /]# yum -y install rdesktop
[root@admin /]# yum -y install tsclient

5. In Applications->Internet->Open Terminal Server Client

6. Click Add Connection, select Windows Terminal Service, and fill in Name, Host, Username, and Password in turn.

If the Windows Remote Desktop port is not 3389, use the format IP:Port when filling in the field.

7. After saving the configuration, double-click the session configuration just saved in the main interface


Connect to Linux using Linux Remote Desktop

1. Confirm that Linux has installed the GNome graphical desktop

2. Open the remote desktop port in the Linux firewall (the default port initial value is 5900 + connection ID) and install and configure VNCServer in the remote server

3. Install the remote connection package in Linux

[root@admin /]# yum -y install rdesktop
[root@admin /]# yum -y install tsclient

4. In Applications->Internet->Open Terminal Server Client

5. Click Add Connection, select VNC, and fill in Name, Host, and Password in turn.

The Host entry format is: IP: connection ID

6. After saving the configuration, double-click the session configuration just saved in the main interface


Exit full screen

In Linux, whether it is remote Windows or Linux, if the full screen appears and you don’t know how to exit the full screen, you can use the following method

1. Linux Remote Linux

Press F8, the VNC menu will pop up, click "Exit Viewer" or uncheck "Full Screen"

2. Linux remote Windows

Use the key combination Crtl+Alt+Enter to exit full screen

Common Mistakes

1. The username and password entered are correct, but the login prompt is "xrdp_mm_process_login_response: login failed". Check the xrdp log and the error message is as follows:

[root@admin xrdp] vim /var/log/xrdp-sesman.log
[20181107-09:17:36] [INFO ] scp thread on sck 7 started successfully
[20181107-09:17:36] [INFO ] ++ created session (access granted): username root, ip xxxx:57714 - socket: 7
[20181107-09:17:36] [INFO ] starting Xvnc session...
[20181107-09:17:36] [ERROR] X server -- no display in range is available # Error message

This error is caused by exceeding the maximum connection data. The solution is as follows:

[root@admin xrdp] ps -ef | grep xrdp | grep -v grep | awk '{print $2}' | xargs kill -9
[root@admin xrdp] vim /etc/xrdp/sesman.ini
MaxSessions=100 # Maximum number of session connections
[root@admin xrdp] service xrdp restart

or

[root@admin xrdp] vim /etc/xrdp/sesman.ini
MaxSessions=10 # Maximum number of session connections
KillDisconnected=1 # Change to 1, it means automatic logout after disconnection
IdleTimeLimit=1800
[root@admin xrdp] service xrdp restart

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Detailed explanation of how to connect pycharm to the virtual environment of a remote linux server
  • How to solve the problem of Linux ssh remote connection disconnection
  • Alibaba Cloud Server Remote Connection Management Linux Server Graphic Tutorial
  • ftp remotely connect to Linux via SSH

<<:  Implementing carousel effects with JavaScript

>>:  MySQL 8.0.19 installation and configuration method graphic tutorial

Recommend

Solution to secure-file-priv problem when exporting MySQL data

ERROR 1290 (HY000) : The MySQL server is running ...

Detailed explanation of the use of HTML header tags

HTML consists of two parts: head and body ** The ...

Detailed installation and configuration tutorial of MySQL 5.7 under Win10

1. Unzip MySQL 5.7 2. Create a new configuration ...

How to use Nginx proxy to surf the Internet

I usually use nginx as a reverse proxy for tomcat...

How to use @media in mobile adaptive styles

General mobile phone style: @media all and (orien...

CSS form validation function implementation code

Rendering principle In the form element, there is...

Summary of some reasons why crontab scheduled tasks are not executed

Preface I recently encountered some problems at w...

Example of using CSS3 to achieve shiny font effect when unlocking an Apple phone

0. Introduction August 18, 2016 Today, I noticed ...

MySQL Constraints Super Detailed Explanation

Table of contents MySQL Constraint Operations 1. ...

Centos 7 64-bit desktop version installation graphic tutorial

If you think the system is slow and want to chang...

Vue implements top left and right sliding navigation

Navigation and other things are often used in dai...

Several ways to implement inheritance in JavaScript

Table of contents Structural inheritance (impleme...

Discuss the application of mixin in Vue

Mixins provide a very flexible way to distribute ...

A detailed introduction to deploying RabbitMQ environment with docker

Prerequisites: Docker is already installed 1. Fin...