惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

F
Fortinet All Blogs
Attack and Defense Labs
Attack and Defense Labs
V2EX - 技术
V2EX - 技术
O
OpenAI News
S
Secure Thoughts
H
Heimdal Security Blog
Application and Cybersecurity Blog
Application and Cybersecurity Blog
Schneier on Security
Schneier on Security
H
Hacker News: Front Page
S
Security Affairs
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
Vercel News
Vercel News
Microsoft Security Blog
Microsoft Security Blog
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
P
Proofpoint News Feed
The Register - Security
The Register - Security
GbyAI
GbyAI
Cloudbric
Cloudbric
MongoDB | Blog
MongoDB | Blog
D
Darknet – Hacking Tools, Hacker News & Cyber Security
K
Kaspersky official blog
Forbes - Security
Forbes - Security
Y
Y Combinator Blog
C
CXSECURITY Database RSS Feed - CXSecurity.com
Scott Helme
Scott Helme
Hacker News - Newest:
Hacker News - Newest: "LLM"
The Cloudflare Blog
Recorded Future
Recorded Future
人人都是产品经理
人人都是产品经理
Cyberwarzone
Cyberwarzone
C
CERT Recently Published Vulnerability Notes
Webroot Blog
Webroot Blog
C
Cyber Attacks, Cyber Crime and Cyber Security
L
LangChain Blog
T
Tor Project blog
Microsoft Azure Blog
Microsoft Azure Blog
博客园_首页
Hacker News: Ask HN
Hacker News: Ask HN
Blog — PlanetScale
Blog — PlanetScale
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
B
Blog RSS Feed
N
News and Events Feed by Topic
阮一峰的网络日志
阮一峰的网络日志
I
Intezer
V
V2EX
T
Tailwind CSS Blog
SecWiki News
SecWiki News
NISL@THU
NISL@THU
C
Check Point Blog

博客园 - 番茄的梦想

Debian防火墙的ufw的使用 Linux—nvm教程 LNMP一键安装包安装的mysql远程连接不上的问题 linux service文件格式 linux if命令 微软sdk及运行时下载地址 解决python错误 UnicodeDecodeError: 'gb2312' codec can't decode byte 0x8b in position 1: illegal multibyt pip相关介绍 结构(位置)伪类选择器 如何清除mstsc记录 ubuntu开启远程桌面功能 缓存头Cache-Control的含义和使用 正则表达式 以A开头B结尾 取中间的内容 nginx 不带www的域名跳转www域名 IIS配置导入导出 CSS中hover选择器的使用详解 html 锚点三种实现方法 重置自增长id 如何解决Visual Studio2012 与此版本的Windows不兼容
使用Windows远程桌面工具来远程连接控制Ubuntu系统
番茄的梦想 · 2022-10-08 · via 博客园 - 番茄的梦想

转载来源 :使用Windows远程桌面工具来远程连接控制Ubuntu系统 :http://www.safebase.cn/article-258275-1.html

介绍

有时需要在实际的电脑上安装Ubuntu的操作系统来搭建免费的网站平台。这就需要使用远程的客户端Windows系统来控制Ubuntu的电脑。除了使用webmin,VNC等方式来管理Ubuntu系统外,还可以使用Windows的远程桌面工具来控制管理Ubuntu系统。

Windows的远程桌面使用的协议为RDP,接下来需要在Ubuntu的操作系统中安装xrdp。

安装可以使用下面的命令来进行安装。打开Ubuntu的终端命令窗口。输入下面的指令进行安装。

#sudo apt-get install tightvncserver xrdp -y

安装xrdp需要安装tightvncserver组件,上面的命令将其相关的组件安装完成

完成安装后,进入Windows的操作系统,这里为Windows 10操作系统,打开Windows的远程桌面工具,输入Ubuntu系统的IP地址,就可以进行远程桌面的链接。

使用Windows远程桌面工具来远程连接控制Ubuntu系统_第1张图片
使用Windows远程桌面工具来远程连接控制Ubuntu系统_第2张图片
使用Windows远程桌面工具来远程连接控制Ubuntu系统_第3张图片
链接成功后,选择xorg,输入链接Ubuntu桌面的账号和密码,这里为root帐号链接
使用Windows远程桌面工具来远程连接控制Ubuntu系统_第4张图片
进入桌面后就可以开始远程管理控制远程的Ubuntu系统了。
使用Windows远程桌面工具来远程连接控制Ubuntu系统_第5张图片
需要注意的是,远程桌面链接的账号默认需要root用户方可登陆,开启root的账号的方法,需要在Ubuntu的终端命令窗口下输入下面的指令。

#sudo passwd root

并为root设置相关的密码
使用Windows远程桌面工具来远程连接控制Ubuntu系统_第6张图片
如果需要使用其他的账号登陆远程Ubuntu,需要修改 .ICEauthority 文件的权限。将其改为666权限。文件的目录位于"/home/用户"下。

在Ubuntu的终端命令窗口下进入相应的目录。输入如下的指令。

#chmod 660 .ICEauthority

使用Windows远程桌面工具来远程连接控制Ubuntu系统_第7张图片
完成权限修改后,重启Ubuntu电脑,就可以用Windows远程桌面工具使用对应的账号进行远程桌面连接了。

http://www.safebase.cn/article-258275-1.html