-
Notifications
You must be signed in to change notification settings - Fork 0
/
atom.xml
75 lines (43 loc) · 10.3 KB
/
atom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>醉晔生的学习记录</title>
<link href="http://example.com/atom.xml" rel="self"/>
<link href="http://example.com/"/>
<updated>2024-09-21T11:39:17.896Z</updated>
<id>http://example.com/</id>
<author>
<name>醉晔生</name>
</author>
<generator uri="https://hexo.io/">Hexo</generator>
<entry>
<title>关于linux云服务器图形化界面部署</title>
<link href="http://example.com/2024/09/17/First_Post/"/>
<id>http://example.com/2024/09/17/First_Post/</id>
<published>2024-09-17T08:26:00.000Z</published>
<updated>2024-09-21T11:39:17.896Z</updated>
<content type="html"><![CDATA[<p>在云服务器上,通常默认情况下是以命令行界面(CLI)方式进行管理的,特别是在使用像阿里云这样的云服务提供商时。虽然大多数云服务器主要通过命令行进行操作,但您仍然可以通过以下几种方式访问图形用户界面(GUI):</p><span id="more"></span><ol><li><p><strong>安装桌面环境</strong>:</p><ul><li>您可以在云服务器上安装一个桌面环境(如 GNOME、KDE 等)。以下是安装 GNOME 桌面环境的示例命令:<figure class="highlight bash"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">dnf groupinstall <span class="string">"Server with GUI"</span></span><br></pre></td></tr></table></figure></li><li>安装完成后,您可以使用以下命令启动图形界面:<figure class="highlight bash"><table><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br></pre></td><td class="code"><pre><span class="line">systemctl set-default graphical.target</span><br><span class="line">systemctl reboot</span><br></pre></td></tr></table></figure><img src="/image.png" alt="alt text"><br>初次安装完程序需要较长时间的响应等待,如果长时间未响应以下是一些措施可以帮助您解决问题:</li></ul><ol><li><p><strong>等待数分钟</strong>: 服务器重启可能需要一些时间,尤其是在有大量更新或更改的情况下。确保给机器足够的时间完成重启进程。</p></li><li><p><strong>重新连接</strong>: 如果您是通过 SSH 连接到服务器的,等待一段时间后尝试重新连接。重启过程中,您的连接会被中断,因此可以尝试再次连接上去。</p></li><li><p><strong>使用管理控制面板</strong>: 如果您使用的是阿里云或其他云服务提供商,您可能可以通过提供的管理控制面板直接访问服务器的重启状态或重新启动服务器。</p></li><li><p><strong>监控功能</strong>: 大多数云服务包括控制台访问功能(如通过管理页面的VNC控制台),以便在无法通过SSH进入时进行基本的系统管理和监控。登录到您的云服务商的仪表板来检查服务器日志或状态。</p></li><li><p><strong>检查云提供商状态</strong>: 查看是否有任何关于云服务商的中断或性能问题的公告。</p></li></ol></li></ol><p>如果以上步骤都不能解决问题,您可能需要联系您云服务的技术支持团队以进一步调查服务器的当前状态。</p><ol start="2"><li><p><strong>使用远程桌面协议(RDP)</strong>:</p><ul><li>安装桌面环境后,您可以安装 RDP 服务器(如 xrdp)以便通过 RDP 客户端连接:<figure class="highlight bash"><table><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br><span class="line">3</span><br></pre></td><td class="code"><pre><span class="line">dnf install xrdp</span><br><span class="line">systemctl <span class="built_in">enable</span> xrdp</span><br><span class="line">systemctl start xrdp</span><br></pre></td></tr></table></figure></li><li>然后,您可以使用 Windows 的远程桌面连接工具或其他 RDP 客户端连接到您的云服务器。</li></ul></li><li><p><strong>使用 VNC</strong>:</p><ul><li>另一种选择是使用 VNC(Virtual Network Computing)。您可以安装 VNC 服务器(如 TigerVNC)并配置它以便远程访问:<figure class="highlight bash"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">dnf install tigervnc-server</span><br></pre></td></tr></table></figure></li><li>配置 VNC 服务器后,您可以使用 VNC 客户端连接到服务器。</li></ul></li><li><p><strong>使用 Web 界面管理工具</strong>:</p><ul><li>还有一些基于 Web 的管理工具(如 Cockpit),可以提供图形化的管理界面。您可以安装 Cockpit:<figure class="highlight bash"><table><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br></pre></td><td class="code"><pre><span class="line">dnf install cockpit</span><br><span class="line">systemctl <span class="built_in">enable</span> --now cockpit.socket</span><br></pre></td></tr></table></figure></li><li>然后通过浏览器访问 <code>http://<your-server-ip>:9090</code> 来管理您的服务器。</li></ul></li></ol><p>请注意,安装和使用图形界面可能会增加系统的资源消耗,因此在选择使用 GUI 时,请确保您的云服务器有足够的资源(CPU、内存等)来支持它。</p>]]></content>
<summary type="html"><p>在云服务器上,通常默认情况下是以命令行界面(CLI)方式进行管理的,特别是在使用像阿里云这样的云服务提供商时。虽然大多数云服务器主要通过命令行进行操作,但您仍然可以通过以下几种方式访问图形用户界面(GUI):</p></summary>
<category term="linux" scheme="http://example.com/tags/linux/"/>
</entry>
<entry>
<title>测试日志</title>
<link href="http://example.com/2024/07/27/My-New-Post/"/>
<id>http://example.com/2024/07/27/My-New-Post/</id>
<published>2024-07-26T18:12:27.000Z</published>
<updated>2024-07-26T18:54:35.251Z</updated>
<content type="html"><![CDATA[<h2 id="样式测试"><a href="#样式测试" class="headerlink" title="样式测试"></a>样式测试</h2><ul><li><input checked="" disabled="" type="checkbox"> 设置博文内链接为蓝色</li><li><input checked="" disabled="" type="checkbox"> 显示文章字数和阅读时长</li><li><input checked="" disabled="" type="checkbox"> 显示站点文章总字数<span id="more"></span></li><li><input checked="" disabled="" type="checkbox"> 设置文章末尾”本文结束”标记</li><li><input checked="" disabled="" type="checkbox"> 文章末尾添加版权说明</li></ul>]]></content>
<summary type="html"><h2 id="样式测试"><a href="#样式测试" class="headerlink" title="样式测试"></a>样式测试</h2><ul>
<li><input checked="" disabled="" type="checkbox"> 设置博文内链接为蓝色</li>
<li><input checked="" disabled="" type="checkbox"> 显示文章字数和阅读时长</li>
<li><input checked="" disabled="" type="checkbox"> 显示站点文章总字数</summary>
</entry>
<entry>
<title>Hello World</title>
<link href="http://example.com/2024/07/25/hello-world/"/>
<id>http://example.com/2024/07/25/hello-world/</id>
<published>2024-07-25T15:49:01.742Z</published>
<updated>2024-07-26T18:54:04.656Z</updated>
<content type="html"><![CDATA[<p>Welcome to <a href="https://hexo.io/">Hexo</a>! This is your very first post. Check <a href="https://hexo.io/docs/">documentation</a> for more info. If you get any problems when using Hexo, you can find the answer in <a href="https://hexo.io/docs/troubleshooting.html">troubleshooting</a> or you can ask me on <a href="https://github.com/hexojs/hexo/issues">GitHub</a>.</p><span id="more"></span><h2 id="Quick-Start"><a href="#Quick-Start" class="headerlink" title="Quick Start"></a>Quick Start</h2><h3 id="Create-a-new-post"><a href="#Create-a-new-post" class="headerlink" title="Create a new post"></a>Create a new post</h3><figure class="highlight bash"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">$ hexo new <span class="string">"My New Post"</span></span><br></pre></td></tr></table></figure><p>More info: <a href="https://hexo.io/docs/writing.html">Writing</a></p><h3 id="Run-server"><a href="#Run-server" class="headerlink" title="Run server"></a>Run server</h3><figure class="highlight bash"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">$ hexo server</span><br></pre></td></tr></table></figure><p>More info: <a href="https://hexo.io/docs/server.html">Server</a></p><h3 id="Generate-static-files"><a href="#Generate-static-files" class="headerlink" title="Generate static files"></a>Generate static files</h3><figure class="highlight bash"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">$ hexo generate</span><br></pre></td></tr></table></figure><p>More info: <a href="https://hexo.io/docs/generating.html">Generating</a></p><h3 id="Deploy-to-remote-sites"><a href="#Deploy-to-remote-sites" class="headerlink" title="Deploy to remote sites"></a>Deploy to remote sites</h3><figure class="highlight bash"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">$ hexo deploy</span><br></pre></td></tr></table></figure><p>More info: <a href="https://hexo.io/docs/one-command-deployment.html">Deployment</a></p>]]></content>
<summary type="html"><p>Welcome to <a href="https://hexo.io/">Hexo</a>! This is your very first post. Check <a href="https://hexo.io/docs/">documentation</a> for more info. If you get any problems when using Hexo, you can find the answer in <a href="https://hexo.io/docs/troubleshooting.html">troubleshooting</a> or you can ask me on <a href="https://github.com/hexojs/hexo/issues">GitHub</a>.</p></summary>
</entry>
</feed>