mirror of
https://github.com/Dichgrem/Blog.git
synced 2025-02-23 05:58:36 -05:00
just push
This commit is contained in:
parent
45cabaa40e
commit
bf716087ec
@ -22,5 +22,3 @@ tags = ["乱七八糟"]
|
|||||||
8. `$src`: 这是一个变量,用于表示源代码文件的路径。在实际使用中,这个变量会被替换为实际的源代码文件路径,告诉编译器从哪里读取源代码进行编译。
|
8. `$src`: 这是一个变量,用于表示源代码文件的路径。在实际使用中,这个变量会被替换为实际的源代码文件路径,告诉编译器从哪里读取源代码进行编译。
|
||||||
9. `-lm`: 这是用于链接数学库的选项。在某些情况下,C++程序可能会使用到数学库中的函数,比如`sqrt()`或`sin()`等。指定`-lm`选项可以告诉链接器在链接时将数学库链接到最终的可执行文件中,以便程序能够正常调用这些函数。
|
9. `-lm`: 这是用于链接数学库的选项。在某些情况下,C++程序可能会使用到数学库中的函数,比如`sqrt()`或`sin()`等。指定`-lm`选项可以告诉链接器在链接时将数学库链接到最终的可执行文件中,以便程序能够正常调用这些函数。
|
||||||
10. `-o $exe`: 这个选项指定了输出文件的名称。`$exe`是一个变量,用于表示输出文件的路径和名称。在实际使用中,这个变量会被替换为实际的输出文件路径和名称,告诉编译器将编译生成的可执行文件保存到指定的位置。
|
10. `-o $exe`: 这个选项指定了输出文件的名称。`$exe`是一个变量,用于表示输出文件的路径和名称。在实际使用中,这个变量会被替换为实际的输出文件路径和名称,告诉编译器将编译生成的可执行文件保存到指定的位置。
|
||||||
|
|
||||||
这个命令是一个用于编译C++程序的`g++`命令,它使用了一系列编译选项和参数来控制编译过程,包括预处理宏定义、优化级别、警告提示、C++标准版本、以及输出文件的名称。这些选项和参数的组合可以根据具体的需求进行调整,以满足不同场景下的编译需求。
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
+++
|
+++
|
||||||
title = "乱七八糟:Windows单级菜单/开机启动/关闭更新"
|
title = "乱七八糟:Windows单级菜单/开机启动/关闭更新/本地登录"
|
||||||
date = 2023-08-26
|
date = 2023-08-26
|
||||||
|
|
||||||
[taxonomies]
|
[taxonomies]
|
||||||
@ -165,3 +165,17 @@ pause
|
|||||||
```
|
```
|
||||||
以上为恢复更新的脚本。
|
以上为恢复更新的脚本。
|
||||||
|
|
||||||
|
## **Windows11跳过联网激活 & 使用本地账号**
|
||||||
|
|
||||||
|
|
||||||
|
开机之前,先断网,然后输入Shift+F10,会弹出命令行界面,并输入
|
||||||
|
``
|
||||||
|
oobe\BypassNRO.cmd:
|
||||||
|
``
|
||||||
|
回车之后会重启,之后就可以跳过联网了,选择
|
||||||
|
``
|
||||||
|
I don't have internet
|
||||||
|
``
|
||||||
|
即可。
|
||||||
|
|
||||||
|
|
||||||
|
@ -109,7 +109,6 @@
|
|||||||
<li><code>-lm</code>: 这是用于链接数学库的选项。在某些情况下,C++程序可能会使用到数学库中的函数,比如<code>sqrt()</code>或<code>sin()</code>等。指定<code>-lm</code>选项可以告诉链接器在链接时将数学库链接到最终的可执行文件中,以便程序能够正常调用这些函数。</li>
|
<li><code>-lm</code>: 这是用于链接数学库的选项。在某些情况下,C++程序可能会使用到数学库中的函数,比如<code>sqrt()</code>或<code>sin()</code>等。指定<code>-lm</code>选项可以告诉链接器在链接时将数学库链接到最终的可执行文件中,以便程序能够正常调用这些函数。</li>
|
||||||
<li><code>-o $exe</code>: 这个选项指定了输出文件的名称。<code>$exe</code>是一个变量,用于表示输出文件的路径和名称。在实际使用中,这个变量会被替换为实际的输出文件路径和名称,告诉编译器将编译生成的可执行文件保存到指定的位置。</li>
|
<li><code>-o $exe</code>: 这个选项指定了输出文件的名称。<code>$exe</code>是一个变量,用于表示输出文件的路径和名称。在实际使用中,这个变量会被替换为实际的输出文件路径和名称,告诉编译器将编译生成的可执行文件保存到指定的位置。</li>
|
||||||
</ol>
|
</ol>
|
||||||
<p>这个命令是一个用于编译C++程序的<code>g++</code>命令,它使用了一系列编译选项和参数来控制编译过程,包括预处理宏定义、优化级别、警告提示、C++标准版本、以及输出文件的名称。这些选项和参数的组合可以根据具体的需求进行调整,以满足不同场景下的编译需求。</p>
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -150,7 +150,7 @@
|
|||||||
|
|
||||||
<span class="button next">
|
<span class="button next">
|
||||||
<a href="https://blog.dich.bid/windows-some-setting/">
|
<a href="https://blog.dich.bid/windows-some-setting/">
|
||||||
<span class="button__text">乱七八糟:Windows单级菜单/开机启动/关闭更新</span>
|
<span class="button__text">乱七八糟:Windows单级菜单/开机启动/关闭更新/本地登录</span>
|
||||||
<span class="button__icon">→</span>
|
<span class="button__icon">→</span>
|
||||||
</a>
|
</a>
|
||||||
</span>
|
</span>
|
||||||
|
@ -634,7 +634,7 @@
|
|||||||
<li class="post-list">
|
<li class="post-list">
|
||||||
<a href="https://blog.dich.bid/windows-some-setting/">
|
<a href="https://blog.dich.bid/windows-some-setting/">
|
||||||
<span class="post-date">2023-08-26</span>
|
<span class="post-date">2023-08-26</span>
|
||||||
:: <span class="post-list-title">乱七八糟:Windows单级菜单/开机启动/关闭更新</span></a>
|
:: <span class="post-list-title">乱七八糟:Windows单级菜单/开机启动/关闭更新/本地登录</span></a>
|
||||||
|
|
||||||
<span class="post-tags-inline">
|
<span class="post-tags-inline">
|
||||||
::
|
::
|
||||||
|
@ -1108,7 +1108,7 @@
|
|||||||
|
|
||||||
</entry>
|
</entry>
|
||||||
<entry xml:lang="en">
|
<entry xml:lang="en">
|
||||||
<title>乱七八糟:Windows单级菜单/开机启动/关闭更新</title>
|
<title>乱七八糟:Windows单级菜单/开机启动/关闭更新/本地登录</title>
|
||||||
<published>2023-08-26T00:00:00+00:00</published>
|
<published>2023-08-26T00:00:00+00:00</published>
|
||||||
<updated>2023-08-26T00:00:00+00:00</updated>
|
<updated>2023-08-26T00:00:00+00:00</updated>
|
||||||
|
|
||||||
|
@ -267,7 +267,7 @@
|
|||||||
<span class="button previous">
|
<span class="button previous">
|
||||||
<a href="https://blog.dich.bid/windows-some-setting/">
|
<a href="https://blog.dich.bid/windows-some-setting/">
|
||||||
<span class="button__icon">←</span>
|
<span class="button__icon">←</span>
|
||||||
<span class="button__text">乱七八糟:Windows单级菜单/开机启动/关闭更新</span>
|
<span class="button__text">乱七八糟:Windows单级菜单/开机启动/关闭更新/本地登录</span>
|
||||||
</a>
|
</a>
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
|
@ -79,7 +79,7 @@
|
|||||||
<div class="posts">
|
<div class="posts">
|
||||||
<div class="post on-list">
|
<div class="post on-list">
|
||||||
|
|
||||||
<h1 class="post-title"><a href="https://blog.dich.bid/windows-some-setting/">乱七八糟:Windows单级菜单/开机启动/关闭更新</a></h1>
|
<h1 class="post-title"><a href="https://blog.dich.bid/windows-some-setting/">乱七八糟:Windows单级菜单/开机启动/关闭更新/本地登录</a></h1>
|
||||||
<div class="post-meta-inline">
|
<div class="post-meta-inline">
|
||||||
|
|
||||||
<span class="post-date">
|
<span class="post-date">
|
||||||
|
Binary file not shown.
BIN
public/pagefind/fragment/en_38b4a5a.pf_fragment
Normal file
BIN
public/pagefind/fragment/en_38b4a5a.pf_fragment
Normal file
Binary file not shown.
BIN
public/pagefind/fragment/en_3e1e115.pf_fragment
Normal file
BIN
public/pagefind/fragment/en_3e1e115.pf_fragment
Normal file
Binary file not shown.
BIN
public/pagefind/fragment/en_3fec467.pf_fragment
Normal file
BIN
public/pagefind/fragment/en_3fec467.pf_fragment
Normal file
Binary file not shown.
BIN
public/pagefind/fragment/en_434fc78.pf_fragment
Normal file
BIN
public/pagefind/fragment/en_434fc78.pf_fragment
Normal file
Binary file not shown.
BIN
public/pagefind/fragment/en_4f5cbd2.pf_fragment
Normal file
BIN
public/pagefind/fragment/en_4f5cbd2.pf_fragment
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
public/pagefind/fragment/en_76436dc.pf_fragment
Normal file
BIN
public/pagefind/fragment/en_76436dc.pf_fragment
Normal file
Binary file not shown.
Binary file not shown.
BIN
public/pagefind/fragment/en_b7a378b.pf_fragment
Normal file
BIN
public/pagefind/fragment/en_b7a378b.pf_fragment
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
public/pagefind/index/en_1dbd442.pf_index
Normal file
BIN
public/pagefind/index/en_1dbd442.pf_index
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
public/pagefind/index/en_a6b3fd0.pf_index
Normal file
BIN
public/pagefind/index/en_a6b3fd0.pf_index
Normal file
Binary file not shown.
Binary file not shown.
BIN
public/pagefind/index/en_b794dc4.pf_index
Normal file
BIN
public/pagefind/index/en_b794dc4.pf_index
Normal file
Binary file not shown.
Binary file not shown.
BIN
public/pagefind/index/en_f4ce628.pf_index
Normal file
BIN
public/pagefind/index/en_f4ce628.pf_index
Normal file
Binary file not shown.
@ -1 +1 @@
|
|||||||
{"version":"1.2.0","languages":{"en":{"hash":"en_ae7c3bafb2","wasm":"en","page_count":107}}}
|
{"version":"1.2.0","languages":{"en":{"hash":"en_f83295c0d7","wasm":"en","page_count":107}}}
|
Binary file not shown.
BIN
public/pagefind/pagefind.en_f83295c0d7.pf_meta
Normal file
BIN
public/pagefind/pagefind.en_f83295c0d7.pf_meta
Normal file
Binary file not shown.
@ -273,7 +273,7 @@ Dich'blog</title>
|
|||||||
<li class="post-list">
|
<li class="post-list">
|
||||||
<a href="https://blog.dich.bid/windows-some-setting/">
|
<a href="https://blog.dich.bid/windows-some-setting/">
|
||||||
<span class="post-date">2023-08-26</span>
|
<span class="post-date">2023-08-26</span>
|
||||||
:: <span class="post-list-title">乱七八糟:Windows单级菜单/开机启动/关闭更新</span></a>
|
:: <span class="post-list-title">乱七八糟:Windows单级菜单/开机启动/关闭更新/本地登录</span></a>
|
||||||
|
|
||||||
<span class="post-tags-inline">
|
<span class="post-tags-inline">
|
||||||
::
|
::
|
||||||
|
@ -78,7 +78,7 @@
|
|||||||
|
|
||||||
<div class="post">
|
<div class="post">
|
||||||
|
|
||||||
<h1 class="post-title"><a href="https://blog.dich.bid/windows-some-setting/">乱七八糟:Windows单级菜单/开机启动/关闭更新</a></h1>
|
<h1 class="post-title"><a href="https://blog.dich.bid/windows-some-setting/">乱七八糟:Windows单级菜单/开机启动/关闭更新/本地登录</a></h1>
|
||||||
<div class="post-meta-inline">
|
<div class="post-meta-inline">
|
||||||
|
|
||||||
<span class="post-date">
|
<span class="post-date">
|
||||||
@ -252,6 +252,12 @@ Windows注册表实质上是一个庞大的数据库,存储着各种各样的
|
|||||||
</span><span>pause
|
</span><span>pause
|
||||||
</span></code></pre>
|
</span></code></pre>
|
||||||
<p>以上为恢复更新的脚本。</p>
|
<p>以上为恢复更新的脚本。</p>
|
||||||
|
<h2 id="windows11tiao-guo-lian-wang-ji-huo-shi-yong-ben-di-zhang-hao"><strong>Windows11跳过联网激活 & 使用本地账号</strong></h2>
|
||||||
|
<p>开机之前,先断网,然后输入Shift+F10,会弹出命令行界面,并输入
|
||||||
|
<code>oobe\BypassNRO.cmd:</code>
|
||||||
|
回车之后会重启,之后就可以跳过联网了,选择
|
||||||
|
<code>I don't have internet</code>
|
||||||
|
即可。</p>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user