通过windows远程访问linux桌面的方法(简单)

Linux端

  1.保证Linux是有桌面界面的版本

  2.安装xrdp,xrdp在 EPEL仓库可以使用,所以配置 EPEL仓库:sudo rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm

  3.安装插件:sudo -y yum install xrdp,结果如下:

[[email protected] ~]$ sudo yum -y install xrdp
Loaded plugins: fastestmirror, langpacks
Loading mirror speeds from cached hostfile
epel/x86_64/metalink                                                                                                                                                   | 8.5 kB  00:00:00
 * base: mirrors.163.com
 * epel: ftp.cuhk.edu.hk
 * extras: mirrors.163.com
 * updates: ftp.sjtu.edu.cn
epel                                                                                                                                                                   | 4.7 kB  00:00:00
http://ftp.cuhk.edu.hk/pub/linux/fedora-epel/7/x86_64/repodata/repomd.xml: [Errno -1] repomd.xml does not match metalink for epel
Trying other mirror.
epel                                                                                                                                                                   | 3.2 kB  00:00:00
(1/3): epel/x86_64/group_gz                                                                                                                                            |  88 kB  00:00:00
(2/3): epel/x86_64/updateinfo                                                                                                                                          | 943 kB  00:00:15
(3/3): epel/x86_64/primary                                                                                                                                             | 3.6 MB  00:01:37
epel                                                                                                                                                                              12687/12687
Resolving Dependencies
--> Running transaction check
---> Package xrdp.x86_64 1:0.9.7-1.el7 will be installed
--> Processing Dependency: xorgxrdp for package: 1:xrdp-0.9.7-1.el7.x86_64
--> Running transaction check
---> Package xorgxrdp.x86_64 0:0.2.7-1.el7 will be installed
--> Finished Dependency Resolution

Dependencies Resolved

==============================================================================================================================================================================================
 Package                                       Arch                                        Version                                            Repository                                 Size
==============================================================================================================================================================================================
Installing:
 xrdp                                          x86_64                                      1:0.9.7-1.el7                                      epel                                      416 k
Installing for dependencies:
 xorgxrdp                                      x86_64                                      0.2.7-1.el7                                        epel                                       62 k

Transaction Summary
==============================================================================================================================================================================================
Install  1 Package (+1 Dependent package)

Total download size: 478 k
Installed size: 2.2 M
Downloading packages:
warning: /var/cache/yum/x86_64/7/epel/packages/xorgxrdp-0.2.7-1.el7.x86_64.rpm: Header V3 RSA/SHA256 Signature, key ID 352c64e5: NOKEY                      ]  0.0 B/s |    0 B  --:--:-- ETA
Public key for xorgxrdp-0.2.7-1.el7.x86_64.rpm is not installed
(1/2): xorgxrdp-0.2.7-1.el7.x86_64.rpm                                                                                                                                 |  62 kB  00:00:01
(2/2): xrdp-0.9.7-1.el7.x86_64.rpm                                                                                                                                     | 416 kB  00:00:07
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Total                                                                                                                                                          62 kB/s | 478 kB  00:00:07
Retrieving key from file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-7
Importing GPG key 0x352C64E5:
 Userid     : "Fedora EPEL (7) <[email protected]ject.org>"
 Fingerprint: 91e9 7d7c 4a5e 96f1 7f3e 888f 6a2f aea2 352c 64e5
 Package    : epel-release-7-11.noarch (installed)
 From       : /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-7
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
Warning: RPMDB altered outside of yum.
** Found 11 pre-existing rpmdb problem(s), ‘yum check‘ output follows:
icedtea-web-1.7.1-1.el7.x86_64 has missing requires of java-1.8.0-openjdk
icedtea-web-1.7.1-1.el7.x86_64 has missing requires of jpackage-utils
icedtea-web-1.7.1-1.el7.x86_64 has missing requires of jpackage-utils
jline-1.0-8.el7.noarch has missing requires of java >= (‘0‘, ‘1.5‘, None)
jline-1.0-8.el7.noarch has missing requires of jpackage-utils
1:libreoffice-core-5.3.6.1-10.el7.x86_64 has missing requires of java-headless >= (‘1‘, ‘1.6‘, None)
1:libreoffice-ure-5.3.6.1-10.el7.x86_64 has missing requires of libjvm.so()(64bit)
rhino-1.7R5-1.el7.noarch has missing requires of jpackage-utils
rhino-1.7R5-1.el7.noarch has missing requires of jpackage-utils
tagsoup-1.2.1-8.el7.noarch has missing requires of jpackage-utils
tagsoup-1.2.1-8.el7.noarch has missing requires of jpackage-utils >= (‘0‘, ‘1.6‘, None)
  Installing : xorgxrdp-0.2.7-1.el7.x86_64                                                                                                                                                1/2
  Installing : 1:xrdp-0.9.7-1.el7.x86_64                                                                                                                                                  2/2
  Verifying  : xorgxrdp-0.2.7-1.el7.x86_64                                                                                                                                                1/2
  Verifying  : 1:xrdp-0.9.7-1.el7.x86_64                                                                                                                                                  2/2 

Installed:
  xrdp.x86_64 1:0.9.7-1.el7                                                                                                                                                                   

Dependency Installed:
  xorgxrdp.x86_64 0:0.2.7-1.el7                                                                                                                                                               

Complete!

  4.安装插件:sudo yum -y install tigervnc-server

  5.启动服务:/bin/systemctl start xrdp.service

1 [[email protected] ~]$ /bin/systemctl start xrdp.service
2 ==== AUTHENTICATING FOR org.freedesktop.systemd1.manage-units ===
3 Authentication is required to manage system services or units.
4 Authenticating as: root
5 Password:
6 ==== AUTHENTICATION COMPLETE ===
7 [[email protected] ~]$ 

Windows端:

  1.打开远程桌面工具:

  

  2.输入LinuxIP地址,阅读警告后点“是”

  

  3.输入Linux用户名和密码

  

  4.完美远程登录桌面。

原文地址:https://www.cnblogs.com/lizhangshu/p/9709531.html

时间: 2024-10-17 07:03:44

通过windows远程访问linux桌面的方法(简单)的相关文章

windows与Linux桌面知识点

1,计算机的硬件组成?机箱,电源,主板,CPU,内存,显卡,网卡,硬盘,光驱等2,计算机组装机顺序?(1),安装CPU (2)安装CPU散热片 (3)安装内存(4) 安装硬盘和光驱 (5)安装显卡 (6)安装前面板(7)对主要硬件进行简单测试 (8)如果主要硬件正常,再把主板接到机箱内3.开关及指示灯的接线?电源指示灯(power LED) 绿色为"+",白色为"-":电源开关(power sw) 标为pwksw或pwr;复位开关(reset sw) 标为reset

windows和linux删除文件方法

Windows下bat文件内容如下:复制代码 代码如下: @echo offforfiles -p "D:\servers\apache2.2\logs" -s -m *.log -d -15 -c "cmd /c del @path"forfiles -p "D:\servers\mysql\logs" -s -m *.log -d -15 -c "cmd /c del @path"可以将上面的目录换成指定的目录,*.log

适用于kali linux的远程桌面开启方法(从windows xp 远程登录到kali linux )

为了解决Windows远程桌面访问Ubuntu 12.04 之一 中提到的VNC远程桌面的缺点(见http://www.linuxidc.com/Linux/2012-07/64801.htm),我们采用第二种方法XRDP,该方法支持多用户登录并远程桌面. 1.首先参考Windows远程桌面访问Ubuntu 12.04 之安装VNC中提到的安装GNOME桌面方法(点击这里): 2.进入GNOME界面,在左上角进入系统->首选项->桌面共享进行如下设置. 我们共享所使用的协议是rdp,所以我们要

Windows与Linux文件系统互访的几种方法

首先,我们知道基于文件的几种服务:ftp,sftp,这两种服务都是文件传输服务,偏重于网络传输,并不是实时互访.通常,我们需要在远程和本地同时操作同一个目录,如:在Windows下使用各种强大的IDE编辑代码,在Linux下编译和运行该代码.如果在Windows下编写好代码再拷贝到Linux下编译,这样修改时很费事,直接在Linux下修改,还要同步回Windows,相当费事.当然有人会说,所有的工作都在Linux下搞定,VI.Linux命令行足够强大,没有需要使用Windows系统的理由,本文的

远程访问Linux系统桌面

让Windows可以远程访问Linux系统桌面 http://jingyan.baidu.com/article/d8072ac47b810eec95cefde8.html linux系统下,11款常见远程桌面控- http://blog.csdn.net/guo8113/article/details/29211235 Xmanager连接CentOS的远程桌面 http://www.linuxidc.com/Linux/2015-08/122356.htm

Windows 下远程桌面连接linux服务器(确保服务器为带桌面版)

方法一(通过xmanager中的Xbrowser工具远程桌面): 详细步骤 Cd  /etc/sysconfig/ Vi  displaymanager ,修改 DISPLAYMANAGER_REMOTE_ACCESS=“yes” DISPLAYMANAGER_ROOT_LOGIN_RENOTE=”yes” 执行命令:rcxdm restart 来 重启XDM服务, 在客户机上启动Xbrowser,刷新即可看到你想要连接的服务器,双击即可 或者输入suse linux机器IP地址来连接: 二.方

Python实现Windows和Linux之间互相传输文件(文件夹)的方法

项目中需要从Windows系统传输ISO文件到Linux测试系统,然后再Linux测试系统里安装这个ISO文件.所以就需要实现如何把文件从Windows系统传输到Linux系统中. 在项目中使用了pscp.exe这个工具,只要按照pscp.exe的使用说明操作即可.只要进入pscp.exe的安装位置,然后输入pscp即可查看pscp的使用说明. 下面是我机器上的: 使用Python实现也挺简单的,下面的code主要介绍4中情况: 1. windows传输文件到Linux 2. windows传输

Linux 桌面玩家指南:17. 在 Ubuntu 中使用 deepin-wine,解决一些依赖 Windows 的痛点问题

特别说明:要在我的随笔后写评论的小伙伴们请注意了,我的博客开启了 MathJax 数学公式支持,MathJax 使用$标记数学公式的开始和结束.如果某条评论中出现了两个$,MathJax 会将两个$之间的内容按照数学公式进行排版,从而导致评论区格式混乱.如果大家的评论中用到了$,但是又不是为了使用数学公式,就请使用\$转义一下,谢谢. 想从头阅读该系列吗?下面是传送门: Linux 桌面玩家指南:01. 玩转 Linux 系统的方法论 Linux 桌面玩家指南:02. 以最简洁的方式打造实用的

.Net Core 跨平台:一个简单程序的多平台(windows、Linux、osx)发布

.Net Core 跨平台:一个简单程序的多平台(windows.Linux.osx)发布 .Net Core 3.0 已于2019年9月23日发布了,包含了一些新特性,具体参见Announcing .NET Core 3.0 .NET Core是一个跨平台,高性能,开放源代码框架,用于构建现代的,基于云的,Internet连接的应用程序框架,其具有一下优点和特点: 跨平台:.NET Framework应用程序仅在Windows平台上运行,而.NET Core应用程序可以在Windows平台上开