diff options
author | 2025-01-07 12:36:05 +0800 | |
---|---|---|
committer | 2025-01-07 12:36:05 +0800 | |
commit | 4d88ef666eee1b6f191f6e85b00acf8d5a2d1899 (patch) | |
tree | 68391846bae84f9546b0d089c012afc336a6e6bd /code/linux/aliyun_cloud.html | |
parent | 11e64c5804b696f170b9d5d881befbabc4a4e85c (diff) | |
download | myweb-new_highlightjs.tar.gz myweb-new_highlightjs.zip |
highlight don't use auto-detect but given languagenew_highlightjs
In this commit, lot's of things is changed. Hope they all runs
currectly.
Now highlight.js is supporting more and more proguam languages, but
the auto detection always go wrong, even for common languages like c,
bash, python, makefile.
Use Given Language
------------------
As you know, I always write markdown and convert to html by pandoc. In
the old, "```cpp" in markdown will be deleted first to keep the embeded
code clean and not highlighted, then I can use highlight.js. But this
causes that html document doesn't know the language.
This time, md2html.sh is changed: pandoc use "--no-highlight"
argument to keep code clean, and it will output like this:
```html
<pre class="cpp"><code>...</code></pre>
```
Although there may be other tags between `<code></code>`, it's clear
that `<pre class="xxx"><code>` is nested tightly, except some space
characters or \n.
Then, sed deal with the whole doc(not line by line), replace `<pre
class="xxx"><code>` with `<pre><code class="language-xxx">`. That's it!
Math Formula
------------
Math formular is also a problem during convertion by pandoc. In the old
it's dealed menually. Now pandoc use "--mathjax=none", then formula is
no longer showed by pandoc, but only `<span class="math xxx">\( formula \)</span>`.
And the math tool I used will deal with it.
Mermaid picture
----------------
pandoc doesn't support convert mermaid in markdown to html picture.
Let's have a warning!
Diffstat (limited to 'code/linux/aliyun_cloud.html')
-rw-r--r-- | code/linux/aliyun_cloud.html | 50 |
1 files changed, 25 insertions, 25 deletions
diff --git a/code/linux/aliyun_cloud.html b/code/linux/aliyun_cloud.html index f430bae..aa2fd3a 100644 --- a/code/linux/aliyun_cloud.html +++ b/code/linux/aliyun_cloud.html | |||
@@ -7,15 +7,15 @@ | |||
7 | <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" /> | 7 | <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" /> |
8 | <title>我的免费云服</title> | 8 | <title>我的免费云服</title> |
9 | <link rel="stylesheet" href="https://www.qin-juan-ge-zhu.top/common/CSS/pandoc.css"> | 9 | <link rel="stylesheet" href="https://www.qin-juan-ge-zhu.top/common/CSS/pandoc.css"> |
10 | <script type="text/javascript" src="https://hl.qin-juan-ge-zhu.top/myset/myhighlight.js"></script> | ||
11 | <script type="text/javascript" src="https://www.qin-juan-ge-zhu.top/common/script4code.js"></script> | 10 | <script type="text/javascript" src="https://www.qin-juan-ge-zhu.top/common/script4code.js"></script> |
12 | </head> | 11 | </head> |
13 | 12 | ||
14 | <body> | 13 | <body> |
15 | <div class="pandoc"> | 14 | <div class="pandoc"> |
16 | <div class="main"> | 15 | <div class="main"> |
17 | <p class="title">我的免费云服</p> | 16 | <header id="title-block-header"> |
18 | <p class="metto">谁不想要个免费的云服呢?</p> | 17 | <p class="title">我的免费云服</p> |
18 | </header> | ||
19 | <h1 id="阿里云服务器">阿里云服务器</h1> | 19 | <h1 id="阿里云服务器">阿里云服务器</h1> |
20 | <p>自从开始做自己的网页,越来越发现<strong>干啥都需要一个服务器</strong>。先是和大佬<a | 20 | <p>自从开始做自己的网页,越来越发现<strong>干啥都需要一个服务器</strong>。先是和大佬<a |
21 | href="https://user.qzone.qq.com/2506370693">黄四郎</a>一起在自己的电脑上搞服务,利用 VSCode 插件<a | 21 | href="https://user.qzone.qq.com/2506370693">黄四郎</a>一起在自己的电脑上搞服务,利用 VSCode 插件<a |
@@ -40,7 +40,7 @@ | |||
40 | <h2 id="创建新用户">创建新用户</h2> | 40 | <h2 id="创建新用户">创建新用户</h2> |
41 | <p>众所周知,<strong>为了安全起见,我们需要一个非 root 但具有 sudo | 41 | <p>众所周知,<strong>为了安全起见,我们需要一个非 root 但具有 sudo |
42 | 权限的用户来进行日常操作</strong>。这里我创建了一个名为<kbd>player</kbd>的用户并设置了密码,然后将其加入 sudo 组。</p> | 42 | 权限的用户来进行日常操作</strong>。这里我创建了一个名为<kbd>player</kbd>的用户并设置了密码,然后将其加入 sudo 组。</p> |
43 | <pre><code># 创建新用户,-m参数创建用户,-d参数手动指定用户的主目录 | 43 | <pre><code class="language-bash"># 创建新用户,-m参数创建用户,-d参数手动指定用户的主目录 |
44 | sudo useradd -m player -d /home/player | 44 | sudo useradd -m player -d /home/player |
45 | # 如需指定默认shell,可以加上-s参数。 | 45 | # 如需指定默认shell,可以加上-s参数。 |
46 | # 这里需要注意,一般意义上bash是sh的超集,因此sh能干的bash一般都能干,所以这里一般需要指定为bash。 | 46 | # 这里需要注意,一般意义上bash是sh的超集,因此sh能干的bash一般都能干,所以这里一般需要指定为bash。 |
@@ -59,7 +59,7 @@ sudo vim sudoers | |||
59 | # 新开一行然后写一份一样的,把root改成player,保存退出</code></pre> | 59 | # 新开一行然后写一份一样的,把root改成player,保存退出</code></pre> |
60 | <h2 id="安装软件">安装软件</h2> | 60 | <h2 id="安装软件">安装软件</h2> |
61 | <p>经历了上边的配置,现在我们拥有了一台可以正常使用的服务器。服务器是为了什么?开发!开发!开发!所以,我们需要安装一些开发所需的软件。</p> | 61 | <p>经历了上边的配置,现在我们拥有了一台可以正常使用的服务器。服务器是为了什么?开发!开发!开发!所以,我们需要安装一些开发所需的软件。</p> |
62 | <pre><code># 如需添加软件源,可以先执行下边的命令 | 62 | <pre><code class="language-bash"># 如需添加软件源,可以先执行下边的命令 |
63 | # 备份软件源 | 63 | # 备份软件源 |
64 | sudo cp /etc/apt/sources.list /etc/apt/sources.list.old | 64 | sudo cp /etc/apt/sources.list /etc/apt/sources.list.old |
65 | # 修改软件源 | 65 | # 修改软件源 |
@@ -86,7 +86,7 @@ sudo apt install make cmake | |||
86 | # 剩下需要安装的软件,可以自行搜索</code></pre> | 86 | # 剩下需要安装的软件,可以自行搜索</code></pre> |
87 | <h2 id="简单美化一下命令行">简单美化一下命令行</h2> | 87 | <h2 id="简单美化一下命令行">简单美化一下命令行</h2> |
88 | <p>配到这里,我们会发现一个很操蛋的事情,“为啥命令提示符之前不显示当前用户名和当前路径嘞?这岂不是每次看路径都需要<kbd>pwd</kbd>吗?烦不烦啊!”别急,问题很好修改。</p> | 88 | <p>配到这里,我们会发现一个很操蛋的事情,“为啥命令提示符之前不显示当前用户名和当前路径嘞?这岂不是每次看路径都需要<kbd>pwd</kbd>吗?烦不烦啊!”别急,问题很好修改。</p> |
89 | <pre><code>cd ~ | 89 | <pre><code class="language-bash">cd ~ |
90 | vim .bashrc | 90 | vim .bashrc |
91 | # 找到PS1=,将其修改为PS1="\u@\h:\w\$" | 91 | # 找到PS1=,将其修改为PS1="\u@\h:\w\$" |
92 | 92 | ||
@@ -94,7 +94,7 @@ vim .bashrc | |||
94 | source .bashrc</code></pre> | 94 | source .bashrc</code></pre> |
95 | <p>改好之后也许还是没有变化,我就是这样的。后来在处理其它问题的时候,我发现了根本原因所在:我 TM 创建用户的时候忘了加<kbd>-s</kbd>参数,导致新用户的默认 shell | 95 | <p>改好之后也许还是没有变化,我就是这样的。后来在处理其它问题的时候,我发现了根本原因所在:我 TM 创建用户的时候忘了加<kbd>-s</kbd>参数,导致新用户的默认 shell |
96 | 是<kbd>sh</kbd>而不是<kbd>bash</kbd>。所以,我们需要修改一下新用户的默认 shell。</p> | 96 | 是<kbd>sh</kbd>而不是<kbd>bash</kbd>。所以,我们需要修改一下新用户的默认 shell。</p> |
97 | <pre><code># 查看当前用户的默认shell | 97 | <pre><code class="language-bash"># 查看当前用户的默认shell |
98 | echo $SHELL | 98 | echo $SHELL |
99 | 99 | ||
100 | # 修改默认shell | 100 | # 修改默认shell |
@@ -102,7 +102,7 @@ sudo chsh -s /bin/bash player</code></pre> | |||
102 | <p>这时再重新加载,就会发现,一切都正常了,一切是那么美好。</p> | 102 | <p>这时再重新加载,就会发现,一切都正常了,一切是那么美好。</p> |
103 | <p>除此之外,我们也许想要调整命令行显示的用户名、路径之类内容的颜色,会想让命令行像 git bash 一样当我们进入 git 仓库的时候显示当前在什么分支。针对这两项需求,我修改了一下我的.bashrc | 103 | <p>除此之外,我们也许想要调整命令行显示的用户名、路径之类内容的颜色,会想让命令行像 git bash 一样当我们进入 git 仓库的时候显示当前在什么分支。针对这两项需求,我修改了一下我的.bashrc |
104 | 文件,现在其内容如下:</p> | 104 | 文件,现在其内容如下:</p> |
105 | <pre><code># ~/.bashrc: executed by bash(1) for non-login shells. | 105 | <pre><code class="language-bash"># ~/.bashrc: executed by bash(1) for non-login shells. |
106 | # see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) | 106 | # see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) |
107 | # for examples | 107 | # for examples |
108 | 108 | ||
@@ -254,7 +254,7 @@ export https_proxy=http://127.0.0.1:7890</code></pre> | |||
254 | <li>将上述.pem 文件移动到家目录<code>C:\用户\当前用户名</code>的<kbd>.ssh</kbd>文件夹下</li> | 254 | <li>将上述.pem 文件移动到家目录<code>C:\用户\当前用户名</code>的<kbd>.ssh</kbd>文件夹下</li> |
255 | <li>在<kbd>.ssh</kbd>文件夹下创建文件<kbd>config</kbd>,内容如下:</li> | 255 | <li>在<kbd>.ssh</kbd>文件夹下创建文件<kbd>config</kbd>,内容如下:</li> |
256 | </ul> | 256 | </ul> |
257 | <pre><code># 给服务器起的别名,这里是aliyun | 257 | <pre><code class="language-plaintext"># 给服务器起的别名,这里是aliyun |
258 | Host aliyun | 258 | Host aliyun |
259 | # IP地址,这里以127.0.0.1代替,但真实操作需要换成服务器的公网ip,在控制台就能看到 | 259 | # IP地址,这里以127.0.0.1代替,但真实操作需要换成服务器的公网ip,在控制台就能看到 |
260 | IP 127.0.0.1 | 260 | IP 127.0.0.1 |
@@ -265,7 +265,7 @@ User player | |||
265 | # 密钥位置 | 265 | # 密钥位置 |
266 | ……</code></pre> | 266 | ……</code></pre> |
267 | <p>在写好之后,我们就可以在本地命令行远程 ssh 连接云服务器操作了!</p> | 267 | <p>在写好之后,我们就可以在本地命令行远程 ssh 连接云服务器操作了!</p> |
268 | <pre><code># 登陆,这里的aliyun是上边config里边起的别名 | 268 | <pre><code class="language-bash"># 登陆,这里的aliyun是上边config里边起的别名 |
269 | ssh aliyun</code></pre> | 269 | ssh aliyun</code></pre> |
270 | <h1 id="拥抱-vim">拥抱 vim</h1> | 270 | <h1 id="拥抱-vim">拥抱 vim</h1> |
271 | <p>既然我们选择了在命令行里使用,编辑文件当然是比较常用 vim 了。当然 neovim 与其他命令行编辑器也很好,但我不熟悉,请参照网上其他教程进行配置。</p> | 271 | <p>既然我们选择了在命令行里使用,编辑文件当然是比较常用 vim 了。当然 neovim 与其他命令行编辑器也很好,但我不熟悉,请参照网上其他教程进行配置。</p> |
@@ -293,26 +293,26 @@ ssh aliyun</code></pre> | |||
293 | href="https://github.com/coder/code-server">链接</a>。官方也有安装教程,这里浅浅说几句吧。</p> | 293 | href="https://github.com/coder/code-server">链接</a>。官方也有安装教程,这里浅浅说几句吧。</p> |
294 | <h2 id="安装">安装</h2> | 294 | <h2 id="安装">安装</h2> |
295 | <p>官方提供了安装脚本,一条命令直接完成安装:</p> | 295 | <p>官方提供了安装脚本,一条命令直接完成安装:</p> |
296 | <pre><code>curl -fsSL https://code-server.dev/install.sh | sh</code></pre> | 296 | <pre><code class="language-bash">curl -fsSL https://code-server.dev/install.sh | sh</code></pre> |
297 | <p>但是我这里 curl 不知何故一直不能用,wget 也不好使,只能在 gayhub 仓库的<a | 297 | <p>但是我这里 curl 不知何故一直不能用,wget 也不好使,只能在 gayhub 仓库的<a |
298 | href="https://github.com/coder/code-server/releases">Releases</a>里找到最新版适合的安装包手动安装了。我是 | 298 | href="https://github.com/coder/code-server/releases">Releases</a>里找到最新版适合的安装包手动安装了。我是 |
299 | Ubuntu22.04LTS,系统架构 amd64,所以下载了对应的.deb 安装包。</p> | 299 | Ubuntu22.04LTS,系统架构 amd64,所以下载了对应的.deb 安装包。</p> |
300 | <pre><code># 本地命令行中运行 | 300 | <pre><code class="language-bash"># 本地命令行中运行 |
301 | scp code-server-4.13.0-linux-amd64.deb aliyun:code-server-4.13.0-linux-amd64.deb</code></pre> | 301 | scp code-server-4.13.0-linux-amd64.deb aliyun:code-server-4.13.0-linux-amd64.deb</code></pre> |
302 | <pre><code># 云服务器命令行中运行 | 302 | <pre><code class="language-bash"># 云服务器命令行中运行 |
303 | 303 | ||
304 | # 安装 | 304 | # 安装 |
305 | sudo dpkg -i code-server-4.13.0-linux-amd64.deb</code></pre> | 305 | sudo dpkg -i code-server-4.13.0-linux-amd64.deb</code></pre> |
306 | <p>默认安装目录在<code>~/.local/share/code-server</code>下。暂且不管。</p> | 306 | <p>默认安装目录在<code>~/.local/share/code-server</code>下。暂且不管。</p> |
307 | <h2 id="运行">运行</h2> | 307 | <h2 id="运行">运行</h2> |
308 | <p>安装完成后,就可以直接运行了。</p> | 308 | <p>安装完成后,就可以直接运行了。</p> |
309 | <pre><code>code-server</code></pre> | 309 | <pre><code class="language-bash">code-server</code></pre> |
310 | <p>就可以直接运行了,但是这样只能在本地浏览器运行,而我们需要的是远程运行。算了,直接上脚本!</p> | 310 | <p>就可以直接运行了,但是这样只能在本地浏览器运行,而我们需要的是远程运行。算了,直接上脚本!</p> |
311 | <pre><code>#!/bin/sh | 311 | <pre><code class="language-bash">#!/bin/sh |
312 | code-server --host "0.0.0.0"> /home/player/useful/codeserver-out.txt 2>&1 &</code></pre> | 312 | code-server --host "0.0.0.0"> /home/player/useful/codeserver-out.txt 2>&1 &</code></pre> |
313 | <p>其中第一条指令是设置允许外界访问,并指定了由后台运行、所有输出写进<code>/home/player/useful/codeserver.txt</code>文件中。后续均为输出信息。</p> | 313 | <p>其中第一条指令是设置允许外界访问,并指定了由后台运行、所有输出写进<code>/home/player/useful/codeserver.txt</code>文件中。后续均为输出信息。</p> |
314 | <p>初次这样设置,直接打开会有密码,密码的存储文件在<code>~/.config/code-server/config.yaml</code>中,可以直接修改,也可以使用命令行修改。比如我当前的设置为:</p> | 314 | <p>初次这样设置,直接打开会有密码,密码的存储文件在<code>~/.config/code-server/config.yaml</code>中,可以直接修改,也可以使用命令行修改。比如我当前的设置为:</p> |
315 | <pre><code>bind-addr: 127.0.0.1:8080 | 315 | <pre><code class="language-yaml">bind-addr: 127.0.0.1:8080 |
316 | auth: password | 316 | auth: password |
317 | password: player | 317 | password: player |
318 | cert: false</code></pre> | 318 | cert: false</code></pre> |
@@ -321,7 +321,7 @@ cert: false</code></pre> | |||
321 | <h2 id="杀死">杀死</h2> | 321 | <h2 id="杀死">杀死</h2> |
322 | <p>设置好之后会需要重新启动程序,我一般选择杀死然后重新运行启动脚本。</p> | 322 | <p>设置好之后会需要重新启动程序,我一般选择杀死然后重新运行启动脚本。</p> |
323 | <p>杀死的方法:</p> | 323 | <p>杀死的方法:</p> |
324 | <pre><code>$ ps -ef | grep code-server | 324 | <pre><code class="language-plaintext">$ ps -ef | grep code-server |
325 | player 2621 1 0 May29 ? 00:00:00 /usr/lib/code-server/lib/node /usr/lib/code-server --host 0.0.0.0 | 325 | player 2621 1 0 May29 ? 00:00:00 /usr/lib/code-server/lib/node /usr/lib/code-server --host 0.0.0.0 |
326 | player 2646 2621 0 May29 ? 00:03:31 /usr/lib/code-server/lib/node /usr/lib/code-server/out/node/entry | 326 | player 2646 2621 0 May29 ? 00:03:31 /usr/lib/code-server/lib/node /usr/lib/code-server/out/node/entry |
327 | player 3079 2646 0 May29 ? 00:00:57 /usr/lib/code-server/lib/node /usr/lib/code-server/lib/vscode/out/bootstrap-fork --type=ptyHost --logsPath /home/player/.local/share/code-server/logs/20230529T211752 | 327 | player 3079 2646 0 May29 ? 00:00:57 /usr/lib/code-server/lib/node /usr/lib/code-server/lib/vscode/out/bootstrap-fork --type=ptyHost --logsPath /home/player/.local/share/code-server/logs/20230529T211752 |
@@ -389,7 +389,7 @@ $ kill -9 2621</code></pre> | |||
389 | 默认端口 443,都和上边 code-server 指定的端口 8080 不一样。</p> | 389 | 默认端口 443,都和上边 code-server 指定的端口 8080 不一样。</p> |
390 | <p>没错,我们需要一个代理,根据访问的网址来对应到指定端口。</p> | 390 | <p>没错,我们需要一个代理,根据访问的网址来对应到指定端口。</p> |
391 | <h3 id="安装运行与常用操作">安装、运行与常用操作</h3> | 391 | <h3 id="安装运行与常用操作">安装、运行与常用操作</h3> |
392 | <pre><code>sudo apt install nginx | 392 | <pre><code class="language-bash">sudo apt install nginx |
393 | # 安装完成后如果服务器重启,nginx会自动启动,手动启动命令如下 | 393 | # 安装完成后如果服务器重启,nginx会自动启动,手动启动命令如下 |
394 | sudo nginx | 394 | sudo nginx |
395 | 395 | ||
@@ -401,9 +401,9 @@ sudo nginx -s reload</code></pre> | |||
401 | <h3 id="ssl-证书">SSL 证书</h3> | 401 | <h3 id="ssl-证书">SSL 证书</h3> |
402 | <p>想要使用 https 方式,还需要一个 SSL 证书,每个域名一个证。腾讯云比较坑,必须花钱。这里我用的是 Certbot 免费发放的证书。</p> | 402 | <p>想要使用 https 方式,还需要一个 SSL 证书,每个域名一个证。腾讯云比较坑,必须花钱。这里我用的是 Certbot 免费发放的证书。</p> |
403 | <p>首先,下载 Certbot:</p> | 403 | <p>首先,下载 Certbot:</p> |
404 | <pre><code>sudo apt install certbot</code></pre> | 404 | <pre><code class="language-bash">sudo apt install certbot</code></pre> |
405 | <p>在申请证书之前,需要停止 nginx 的工作,如果正在运行,按照上边说的方法杀死,而后就可以申请证书辣!</p> | 405 | <p>在申请证书之前,需要停止 nginx 的工作,如果正在运行,按照上边说的方法杀死,而后就可以申请证书辣!</p> |
406 | <pre><code># 申请证书 | 406 | <pre><code class="language-bash"># 申请证书 |
407 | sudo certbot certonly --standalone --email example@qq.com -d code.player.com | 407 | sudo certbot certonly --standalone --email example@qq.com -d code.player.com |
408 | 408 | ||
409 | # 除了使用参数方式外,也可以使用交互的方式 | 409 | # 除了使用参数方式外,也可以使用交互的方式 |
@@ -416,7 +416,7 @@ sudo certbot certonly</code></pre> | |||
416 | 默认下载目录在<code>/etc/nginx</code>,该目录下有个<code>.conf</code>文件,但不建议直接改,建议在<code>/etc/nginx/conf.d</code>文件夹下为每个需要转发的域名添加单独的设置文件,这样方便管理和修改。运行过程中 | 416 | 默认下载目录在<code>/etc/nginx</code>,该目录下有个<code>.conf</code>文件,但不建议直接改,建议在<code>/etc/nginx/conf.d</code>文件夹下为每个需要转发的域名添加单独的设置文件,这样方便管理和修改。运行过程中 |
417 | Nginx 会自动将该目录下所有配置文件全部加载的,不需要手动设置。</p> | 417 | Nginx 会自动将该目录下所有配置文件全部加载的,不需要手动设置。</p> |
418 | <p>在<code>/etc/nginx/conf.d</code>中,新建文件<code>vscode.conf</code>,内容如下:</p> | 418 | <p>在<code>/etc/nginx/conf.d</code>中,新建文件<code>vscode.conf</code>,内容如下:</p> |
419 | <pre><code>server | 419 | <pre><code class="language-nginx">server |
420 | { | 420 | { |
421 | # 这段是一个常用的http重定向到https的方法,用了都说好 | 421 | # 这段是一个常用的http重定向到https的方法,用了都说好 |
422 | listen 80; | 422 | listen 80; |
@@ -449,12 +449,12 @@ server | |||
449 | # } | 449 | # } |
450 | }</code></pre> | 450 | }</code></pre> |
451 | <p>编写完文件之后,需要重新加载配置文件(不必重启 Nginx):</p> | 451 | <p>编写完文件之后,需要重新加载配置文件(不必重启 Nginx):</p> |
452 | <pre><code>sudo nginx -s reload</code></pre> | 452 | <pre><code class="language-bash">sudo nginx -s reload</code></pre> |
453 | <p>再次提醒:一定记得把域名换成自己的域名、证书路径换成自己的证书路径、端口换成自己在提供服务的应用(如 code-server)中指定的端口!</p> | 453 | <p>再次提醒:一定记得把域名换成自己的域名、证书路径换成自己的证书路径、端口换成自己在提供服务的应用(如 code-server)中指定的端口!</p> |
454 | <h1 id="服务器上的文件浏览">服务器上的文件浏览</h1> | 454 | <h1 id="服务器上的文件浏览">服务器上的文件浏览</h1> |
455 | <p>我们已经学会了设置 nginx 的 webroot,但也有很多情况我们需要能在各种设备上直接地看到服务器上有哪些文件,既能方便文件传输,也能覆盖对大多数只需要看不需要改的场景。</p> | 455 | <p>我们已经学会了设置 nginx 的 webroot,但也有很多情况我们需要能在各种设备上直接地看到服务器上有哪些文件,既能方便文件传输,也能覆盖对大多数只需要看不需要改的场景。</p> |
456 | <p>python3 为我们提供了一个简单的 http 文件浏览服务,默认安装目录为<code>/usr/lib/python3.x/http/server.py</code>,一般情况下我们可以直接运行它:</p> | 456 | <p>python3 为我们提供了一个简单的 http 文件浏览服务,默认安装目录为<code>/usr/lib/python3.x/http/server.py</code>,一般情况下我们可以直接运行它:</p> |
457 | <pre><code>python3 -m http.server</code></pre> | 457 | <pre><code class="language-bash">python3 -m http.server</code></pre> |
458 | <p>但是 python 提供的这份文件存在一些问题:</p> | 458 | <p>但是 python 提供的这份文件存在一些问题:</p> |
459 | <ul> | 459 | <ul> |
460 | <li>响应头没有规定文件编码,让浏览器自己看着办,容易出现乱码</li> | 460 | <li>响应头没有规定文件编码,让浏览器自己看着办,容易出现乱码</li> |
@@ -487,7 +487,7 @@ server | |||
487 | clash。但是每次重启系统之后,这许多服务都需要自己手动拉起的话未免太过麻烦了,所以我们需要一个在系统加载完成后就能自动以 root 身份执行的脚本。经过查询,我找到了处理办法。</p> | 487 | clash。但是每次重启系统之后,这许多服务都需要自己手动拉起的话未免太过麻烦了,所以我们需要一个在系统加载完成后就能自动以 root 身份执行的脚本。经过查询,我找到了处理办法。</p> |
488 | <p>在 Linux 系统下,开机启动一般使用的是<code>/etc/rc.local</code>文件(但也有很多发行版不再使用这种操作方式)。ubuntu20.04 系统已经默认安装了 | 488 | <p>在 Linux 系统下,开机启动一般使用的是<code>/etc/rc.local</code>文件(但也有很多发行版不再使用这种操作方式)。ubuntu20.04 系统已经默认安装了 |
489 | rc-local.service 服务,但是不知什么原因系统把这个服务给“隐蔽”了,所以如果不做一番操作是无法使用的。</p> | 489 | rc-local.service 服务,但是不知什么原因系统把这个服务给“隐蔽”了,所以如果不做一番操作是无法使用的。</p> |
490 | <pre><code># 以下所有命令需要root身份执行 | 490 | <pre><code class="language-bash"># 以下所有命令需要root身份执行 |
491 | 491 | ||
492 | cp /usr/lib/systemd/system/rc-local.service /etc/systemd/system/ | 492 | cp /usr/lib/systemd/system/rc-local.service /etc/systemd/system/ |
493 | # 修改rc-local.service文件,在文件末尾添加以下内容(注意删去前边的注释符): | 493 | # 修改rc-local.service文件,在文件末尾添加以下内容(注意删去前边的注释符): |
@@ -516,7 +516,7 @@ systemctl status rc-local.service | |||
516 | # 文件的最后,可以用exec &> /var/log/rc-local.log将脚本的输出重定向到日志文件中</code></pre> | 516 | # 文件的最后,可以用exec &> /var/log/rc-local.log将脚本的输出重定向到日志文件中</code></pre> |
517 | <p>除此之外,我们可能还需要为所有用户默认开启魔法。这个功能在开机脚本和<code>/etc/profile</code>中都无法实现,应当放在<code>/etc/environment</code>中。在其中添加以下内容: | 517 | <p>除此之外,我们可能还需要为所有用户默认开启魔法。这个功能在开机脚本和<code>/etc/profile</code>中都无法实现,应当放在<code>/etc/environment</code>中。在其中添加以下内容: |
518 | </p> | 518 | </p> |
519 | <pre><code>PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin" | 519 | <pre><code class="language-plaintext">PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin" |
520 | http_proxy=http://127.0.0.1:7890 | 520 | http_proxy=http://127.0.0.1:7890 |
521 | https_proxy=http://127.0.0.1:7890 | 521 | https_proxy=http://127.0.0.1:7890 |
522 | no_proxy=127.0.0.1,localhost | 522 | no_proxy=127.0.0.1,localhost |