<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>远程桌面归档 - Liao&#039;s blog</title>
	<atom:link href="https://www.laobaiblog.top/tag/%E8%BF%9C%E7%A8%8B%E6%A1%8C%E9%9D%A2/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.laobaiblog.top/tag/远程桌面/</link>
	<description>路漫漫其修远兮，吾将上下而求索</description>
	<lastBuildDate>Mon, 05 Sep 2022 10:03:04 +0000</lastBuildDate>
	<language>zh-Hans</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://www.laobaiblog.top/wp-content/uploads/2022/01/cropped-tyuu-32x32.png</url>
	<title>远程桌面归档 - Liao&#039;s blog</title>
	<link>https://www.laobaiblog.top/tag/远程桌面/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>远程连接Centos7桌面功能</title>
		<link>https://www.laobaiblog.top/2022/09/05/%e8%bf%9c%e7%a8%8b%e8%bf%9e%e6%8e%a5centos7%e6%a1%8c%e9%9d%a2%e5%8a%9f%e8%83%bd/</link>
		
		<dc:creator><![CDATA[大白]]></dc:creator>
		<pubDate>Mon, 05 Sep 2022 10:03:04 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[分享]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Xfce]]></category>
		<category><![CDATA[远程桌面]]></category>
		<guid isPermaLink="false">https://www.laobaiblog.top/?p=277</guid>

					<description><![CDATA[<p>突如其来的疫情让人措手不及，愿疫情早日过去&#8230; 因为要是实现居家办公，公司的服务器有些工作 &#8230;</p>
<p><a href="https://www.laobaiblog.top/2022/09/05/%e8%bf%9c%e7%a8%8b%e8%bf%9e%e6%8e%a5centos7%e6%a1%8c%e9%9d%a2%e5%8a%9f%e8%83%bd/">远程连接Centos7桌面功能</a>最先出现在<a href="https://www.laobaiblog.top">Liao&#039;s blog</a>。</p>
]]></description>
										<content:encoded><![CDATA[<p><em>突如其来的疫情让人措手不及，愿疫情早日过去&#8230;</em><br />
<em>因为要是实现居家办公，公司的服务器有些工作需要桌面化才能满足日常使用要求</em></p>
<h1>远程连接CentOS7桌面方案</h1>
<p><a class="wp-editor-md-post-content-link" href="https://mrliao.lanzouy.com/it82e0b3pseh">MobaXterm工具蓝奏云下载</a></p>
<h3>SSH + X11桌面远程</h3>
<p>Linux的远程桌面一般采用VNC，很少提到SSH + X11做转发，下面介绍多种SSH + X11；</p>
<ul>
<li>安装Xfce桌面</li>
</ul>
<pre><code class="language-shell line-numbers">#安装Xfce
yum -y groupinstall "X Window System" "Xfce"
#启动桌面
startxfce4
</code></pre>
<ul>
<li>MobaXterm转发X11</li>
</ul>
<ol>
<li>MobaXterm功能非常全，内建X server，可远程运行X窗口程序，支持VNC/RDP/Xdmcp等远程桌面；</p>
</li>
<li>
<p>在SSH服务器中配置X11转发服务<br />
在/etc/ssh/sshd_config文件中将 X11Forwarding 设置成 yes</p>
</li>
</ol>
<p><code>X11Forwarding yes</code></p>
<p>重启ssh相关命令</p>
<pre><code class="language-shell line-numbers">#查看ssh服务状态
systemctl status sshd.service

#开启ssh服务
systemctl start sshd.service

#设置ssh服务开机自启
systemctl enable sshd.service
</code></pre>
<p><a class="wp-editor-md-post-content-link" href="https://www.laobaiblog.top/wp-content/uploads/2022/09/wp_editor_md_3ddb2904cb3a4ae54ea3402ad19b3bb0.jpg"><img decoding="async" src="https://www.laobaiblog.top/wp-content/uploads/2022/09/wp_editor_md_3ddb2904cb3a4ae54ea3402ad19b3bb0.jpg" alt="" /></a></p>
<ol start="3">
<li>配置MobaXterm登录信息(Remote environment注意CentOS的桌面类型 )</li>
</ol>
<p><a class="wp-editor-md-post-content-link" href="https://www.laobaiblog.top/wp-content/uploads/2022/09/wp_editor_md_b6667f76c9b7497a0f69fdc484f3cff3.jpg"><img decoding="async" src="https://www.laobaiblog.top/wp-content/uploads/2022/09/wp_editor_md_b6667f76c9b7497a0f69fdc484f3cff3.jpg" alt="" /></a></p>
<ol start="4">
<li>MobaXterm连接到服务器<br />
X11-forwarding 和 DISPLAY 都打钩表示配置正常</li>
</ol>
<p><a class="wp-editor-md-post-content-link" href="https://www.laobaiblog.top/wp-content/uploads/2022/09/wp_editor_md_20e20ee8af40a31abb81d48990ff287b.jpg"><img decoding="async" src="https://www.laobaiblog.top/wp-content/uploads/2022/09/wp_editor_md_20e20ee8af40a31abb81d48990ff287b.jpg" alt="" /></a></p>
<h3>远程效果</h3>
<p>这样就可以很方便的使用内网应用了</p>
<p><a class="wp-editor-md-post-content-link" href="https://www.laobaiblog.top/wp-content/uploads/2022/09/wp_editor_md_708ff87ef5c2eed595989189ca7eacdc.jpg"><img decoding="async" src="https://www.laobaiblog.top/wp-content/uploads/2022/09/wp_editor_md_708ff87ef5c2eed595989189ca7eacdc.jpg" alt="" /></a></p>
<p><a href="https://www.laobaiblog.top/2022/09/05/%e8%bf%9c%e7%a8%8b%e8%bf%9e%e6%8e%a5centos7%e6%a1%8c%e9%9d%a2%e5%8a%9f%e8%83%bd/">远程连接Centos7桌面功能</a>最先出现在<a href="https://www.laobaiblog.top">Liao&#039;s blog</a>。</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
