diff --git a/content/Junk-cleanup.md b/content/Junk-cleanup.md index 478292f..cc30549 100644 --- a/content/Junk-cleanup.md +++ b/content/Junk-cleanup.md @@ -70,7 +70,71 @@ tags = ["Junk-cleanup"] 2. **Stacer:** Stacer 是一款开源的系统优化和监控工具,提供了垃圾清理、系统管理、系统监控等功能,适用于多种 Linux 发行版。 3. **Sweeper(KDE 扫除者):** Sweeper 是 KDE 桌面环境的一部分,提供了简单易用的垃圾清理功能,可以帮助您清理系统中的临时文件、缓存等。 +## Arch linux 清理 +1. **缓存清理**: + + - `sudo pacman -Sc`: 清理包缓存,删除已安装的但不再需要的软件包。 + - `sudo pacman -Scc`: 进一步清理所有包文件,包括已下载的包。 + +2. **系统日志**: + + - `/var/log` 目录下包含系统日志文件。你可以删除较旧的日志文件,或者使用日志轮换工具,如 `logrotate`。 + +3. **临时文件**: + + - `/tmp` 目录下包含临时文件。你可以通过 `sudo rm -rf /tmp/*` 清理它们。 + +4. **缓存文件**: + + - 一些应用程序会在 `~/.cache` 目录下存储缓存文件。你可以检查该目录并删除不再需要的文件。 + +5. **AUR 缓存**: + + - AUR 辅助工具(如 `yay`)会在 `~/.cache/yay` 目录下存储构建和下载的软件包。你可以清理这些文件。 + +6. **旧内核**: + + - 如果你安装了多个内核版本,你可以删除不再需要的旧内核。首先使用 `uname -r` 查看当前内核版本,然后使用 `sudo pacman -Rns linux-older-kernel` 删除不需要的版本。 + +7. **不再使用的配置文件**: + + - 检查家目录下的隐藏文件,如 `~/.config`,并删除不再需要的配置文件。 + +8. **Docker日志文件**: + 使用 `docker ps -a` 命令查找你感兴趣的容器的 ID。 + + ```` + docker ps -a + ```` + 进入容器的日志目录,路径类似于 `/var/lib/docker/containers//`。 + + ```` + cd /var/lib/docker/containers// + ```` + 使用命令清理或删除日志文件。你可以删除所有日志文件,或者只删除特定的日志文件。 + + ```` + # 删除所有日志文件 + rm *.log + + # 删除特定日志文件(例如 stdout 和 stderr) + rm *-json.log + ```` + +## **Arch Linux 安装备份** + +你可以定期备份 Arch Linux 安装的软件列表,以便在需要时轻松还原。 + +```` +pacman -Qqe > package-list.txt +```` + +这将列出所有已安装的软件包,并将其保存到文件 `package-list.txt` 中。在还原系统时,你可以使用以下命令: + +```` +sudo pacman -S --needed - < package-list.txt +```` + ## 后记 -垃圾文件的产生总是无可避免,这是因为随着使用时间的流逝,系统的熵值也在增大;生命以负熵为食,同样的为系统清理垃圾也是逆熵的一部分。在你的生命中会有许多电子设备,但它们往往只有你一任主人,请善待它们! - +垃圾文件的产生总是无可避免,这是因为随着使用时间的流逝,系统的熵值也在增大;生命以负熵为食,同样的为系统清理垃圾也是逆熵的一部分。在你的生命中会有许多电子设备,但它们往往只有你一任主人,请善待它们! \ No newline at end of file diff --git a/content/PVE-MCSM.md b/content/PVE-MCSM.md index bd0e82b..70a8b5b 100644 --- a/content/PVE-MCSM.md +++ b/content/PVE-MCSM.md @@ -60,6 +60,8 @@ MCSManager 面板(简称:MCSM 面板)是一款全中文,轻量级,开 4.浏览器打开 PVE 地址,进入系统后我们需要给PVE换源。 +## 换源 + 首先,移除(备份)一下 PVE 原始的官方源 (将 sources.list 改名为 sources.list.bak) ``mv /etc/apt/sources.list /etc/apt/sources.list.bak`` @@ -123,7 +125,20 @@ deb-src https://mirrors.ustc.edu.cn/debian/ bookworm-updates main contrib 7.安装基本系统,随后将进入包管理器和大组件安装; ![image-ldsc.webp](https://pic.dich.ink/1/2024/03/06/65e8667090f06.webp) -我们选择清华源,速度较快。注意:Debian 安装时默认开启安全源,这个源是国外的所以下载速度极慢,因此还需要修改配置文件,这里使用 Ctrl+Alt+F2 从图形界面转到tty命令终端, 键入 Enter,使用命令``nano /target/etc/apt/sources.list``,将所有的源都改成 http://mirrors.ustc.edu.cn 或者清华源,然后 Ctrl+X 退出保存, Ctrl+Alt+F5 回到图形界面。 +我们选择清华源,速度较快。注意:Debian 安装时默认开启安全源,这个源是国外的所以下载速度极慢,因此还需要修改配置文件。 + +在安装步骤进入到选择安装的桌面环境和软件时, 键入 Ctrl+Alt+F2 可以看到从图形界面转到了tty命令终端, 键入 Enter +这里修改软件源配置文件 + +``` +nano /target/etc/apt/sources.list +``` +修改debian-security源地址  `http://mirrors.ustc.edu.cn ` 目测最快 + +``` +deb http://mirrors.ustc.edu.cn/debian-security bullseye-security main +``` +修改后 Ctrl+X 退出保存,然后退出终端重新进入界面继续安装,键入 Ctrl+Alt+F5。 ![image-uphv.webp](https://pic.dich.ink/1/2024/03/06/65e8665b075cf.webp) diff --git a/content/Terminal-Console-Shell.md b/content/Terminal-Console-Shell.md index f4b3a26..2d1df44 100644 --- a/content/Terminal-Console-Shell.md +++ b/content/Terminal-Console-Shell.md @@ -3,7 +3,7 @@ title = "Terminal,Console and Shell" date = 2024-03-12 [taxonomies] -tags = ["Terminal","Console","Shell"] +tags = ["linux"] +++ diff --git a/content/mechrev-keyboard.md b/content/mechrev-keyboard.md index 422b88b..369d461 100644 --- a/content/mechrev-keyboard.md +++ b/content/mechrev-keyboard.md @@ -60,4 +60,143 @@ reboot 不出意外,重启后键盘即可使用,若系统不同将 apt 替换即可。 +## 四.其他问题 +对于Redmi 或 Lenovo刚发布的AMD R7 6800H机型: +- WIFI没有驱动 - (螃蟹卡 8852be)。 +- 蓝牙没有驱动 - (螃蟹卡 8852be)。 +- 开启窗口特效后,kwin_x11进程CPU占用飙升。 +- 电源管理,无论怎么调,笔记本都发热很严重。 + +### 修复wifi驱动 + +```shell +# 内核小于5.18的 +git clone https://github.com/HRex39/rtl8852be.git +# 内核大于等于5.18的 +git clone https://github.com/HRex39/rtl8852be.git -b dev + +cd rtl8852be +make -j8 +sudo make install +sudo modprobe 8852be +``` + +### 修复蓝牙驱动 + +```shell +# 内核=5.15 +git clone https://github.com/HRex39/rtl8852be_bt.git -b 5.15 +# 内核=5.18 +git clone https://github.com/HRex39/rtl8852be_bt.git -b 5.18 + +cd rtl8852be_bt +make -j8 +sudo make install +``` + +### 修复kwin_x11显卡未驱动 + +首先去amd官网下载最新的linux-amd驱动: + +```` +https://www.amd.com/zh-hans/support/linux-drivers // 22.20 for Ubuntu 20.04.5 HWE +```` + +修改Deepin为ubuntu + +```` +sudo vim /etc/os-release // ID=Deepin => ID=ubuntu + +sudo apt install ./amdgpu-install_22.20.50200-1_all.deb + +sudo vim /etc/apt/sources.list.d/amdgpu.list // focal => bionic + +sudo apt update + +sudo amdgpu-install --no-dkms + +sudo apt install inxi clinfo +```` + +安装成功以后,用inxi查看下: + +`inxi -G` + +```` +Graphics: Device-1: AMD Rembrandt driver: amdgpu v: kernel + Display: x11 server: X.Org 1.20.11 driver: amdgpu,ati unloaded: fbdev,modesetting,vesa + resolution: 1920x1080~60Hz + OpenGL: renderer: AMD YELLOW_CARP (LLVM 14.0.1 DRM 3.42 5.15.34-amd64-desktop) + v: 4.6 Mesa 22.1.0-devel +```` + +最后还原最初的修改: + +```` +sudo vim /etc/os-release // ID=ubuntu => ID=Deepin +sudo apt purge amdgpu-install +```` + +看下效果图: + +```` +➜ ~ glxinfo -B +name of display: :0 +display: :0 screen: 0 +direct rendering: Yes +Extended renderer info (GLX_MESA_query_renderer): + Vendor: AMD (0x1002) + Device: AMD YELLOW_CARP (LLVM 14.0.1, DRM 3.42, 5.15.34-amd64-desktop) (0x1681) + Version: 22.1.0 + Accelerated: yes + Video memory: 2048MB + Unified memory: no + Preferred profile: core (0x1) + Max core profile version: 4.6 + Max compat profile version: 4.6 + Max GLES1 profile version: 1.1 + Max GLES[23] profile version: 3.2 +Memory info (GL_ATI_meminfo): + VBO free memory - total: 1388 MB, largest block: 1388 MB + VBO free aux. memory - total: 3047 MB, largest block: 3047 MB + Texture free memory - total: 1388 MB, largest block: 1388 MB + Texture free aux. memory - total: 3047 MB, largest block: 3047 MB + Renderbuffer free memory - total: 1388 MB, largest block: 1388 MB + Renderbuffer free aux. memory - total: 3047 MB, largest block: 3047 MB +Memory info (GL_NVX_gpu_memory_info): + Dedicated video memory: 2048 MB + Total available memory: 5120 MB + Currently available dedicated video memory: 1388 MB +OpenGL vendor string: AMD +OpenGL renderer string: AMD YELLOW_CARP (LLVM 14.0.1, DRM 3.42, 5.15.34-amd64-desktop) +OpenGL core profile version string: 4.6 (Core Profile) Mesa 22.1.0-devel +OpenGL core profile shading language version string: 4.60 +OpenGL core profile context flags: (none) +OpenGL core profile profile mask: core profile + +OpenGL version string: 4.6 (Compatibility Profile) Mesa 22.1.0-devel +OpenGL shading language version string: 4.60 +OpenGL context flags: (none) +OpenGL profile mask: compatibility profile + +OpenGL ES profile version string: OpenGL ES 3.2 Mesa 22.1.0-devel +OpenGL ES profile shading language version string: OpenGL ES GLSL ES 3.20 +```` + +### 手动管理电源,避免CPU过度使用而发热 + +安装下面的三方电源管理工具 `Boost Changer`,选择 `Performance`策略即可 + +```` +wget https://github.com/nbebaw/boostchanger/releases/download/v4.4.0/boostchanger_4.4.0_amd64.deb +```` +## 参考 + +[https://zhuanlan.zhihu.com/p/530643928](https://zhuanlan.zhihu.com/p/530643928) + +[https://github.com/HRex39/rtl8852be](https://github.com/HRex39/rtl8852be) + +[https://github.com/HRex39/rtl8852be_bt](https://github.com/HRex39/rtl8852be_bt) + +[https://bbs.deepin.org/post/241607](https://bbs.deepin.org/post/241607) diff --git a/content/windows-secondary-menu-recovery-and-settings-boot-startup.md b/content/windows-secondary-menu-recovery-and-settings-boot-startup.md new file mode 100644 index 0000000..a74bf3a --- /dev/null +++ b/content/windows-secondary-menu-recovery-and-settings-boot-startup.md @@ -0,0 +1,37 @@ ++++ +title = "Windows二级菜单恢复及设置开机启动" +date = 2023-08-26 + +[taxonomies] +tags = ["Windows11"] ++++ + +前言 Windows操作系统作为全球最为普及的桌面操作系统之一,其用户界面的设计非常经典;而win11中的二级菜单令人感到无语,本文教你回到一级菜单。 + + + +## **使用CMD恢复完整右键菜单** + +Win11的`显示更多选项`怎么设置才能将其关闭,并恢复成Win10的状态呢?系统内置的命令提示符(CMD)可以帮助我们完成这一任务,另外请注意,此操作仅适用于CMD,并不适用于Windows PowerShell。 + +**步骤1.** 按**Win+S**打开搜索框,输入**cmd**并以管理员身份运行命令提示符。 + +**步骤2.** 输入以下命令并按**Enter**键执行。 + +``` +reg add HKCU\Software\Classes\CLSID{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32 /ve /d “” /f +``` + +注意:如果您想要重新打开Win11新样式的右键菜单的话,以同样的方式在命令提示符中执行此命令: +``` +reg delete "HKCU\Software\Classes\CLSID{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}" /f +``` +## **Win11添加开机自启动项方法** + +选择“开始”按钮 ,然后滚动查找你希望在启动时运行的应用。 + +右键单击该应用,选择“更多”,然后选择“打开文件位置”。此操作会打开保存应用快捷方式的位置。如果没有“打开文件位置”选项,这意味着该应用无法在启动时运行。 + +文件位置打开后,按win+ R,键入“shell:startup”,然后选择“确定”。这将打开“启动”文件夹。 + +将该应用的快捷方式从文件位置复制并粘贴到“启动”文件夹中,即添加启动项成功。 \ No newline at end of file diff --git a/public/accurate-pronunciation/index.html b/public/accurate-pronunciation/index.html index 4da463b..466267e 100644 --- a/public/accurate-pronunciation/index.html +++ b/public/accurate-pronunciation/index.html @@ -148,8 +148,8 @@ - - 机械革命键盘失灵拯救记  + + Windows二级菜单恢复及设置开机启动  diff --git a/public/archive/index.html b/public/archive/index.html index 51ad9d5..79d4ca6 100644 --- a/public/archive/index.html +++ b/public/archive/index.html @@ -119,9 +119,7 @@ +
  • @@ -239,6 +237,16 @@ :: +
  • +
  • + + + :: Windows二级菜单恢复及设置开机启动 + + +
  • diff --git a/public/atom.xml b/public/atom.xml index 4d09cc3..3439843 100644 --- a/public/atom.xml +++ b/public/atom.xml @@ -306,6 +306,26 @@ <p>前言 机械革命作为一款极高性价比的笔记本,其优惠的力度和问题不断的故障让玩家们爱恨交织;作者在其上安装 Linux 时遇到了键盘失灵的问题,为了避免更多人踩坑,故写本文。</p> + + + Windows二级菜单恢复及设置开机启动 + 2023-08-26T00:00:00+00:00 + 2023-08-26T00:00:00+00:00 + + + + + Unknown + + + + + + https://blog.dich.ink/windows-secondary-menu-recovery-and-settings-boot-startup/ + + <p>前言 Windows操作系统作为全球最为普及的桌面操作系统之一,其用户界面的设计非常经典;而win11中的二级菜单令人感到无语,本文教你回到一级菜单。</p> + + 常见发音错误术语集合 diff --git a/public/index.html b/public/index.html index c0e71b3..1c41a8d 100644 --- a/public/index.html +++ b/public/index.html @@ -194,9 +194,7 @@   -   - + diff --git a/public/junk-cleanup/index.html b/public/junk-cleanup/index.html index 68419b0..cf8bcc9 100644 --- a/public/junk-cleanup/index.html +++ b/public/junk-cleanup/index.html @@ -163,6 +163,75 @@
  • Stacer: Stacer 是一款开源的系统优化和监控工具,提供了垃圾清理、系统管理、系统监控等功能,适用于多种 Linux 发行版。
  • Sweeper(KDE 扫除者): Sweeper 是 KDE 桌面环境的一部分,提供了简单易用的垃圾清理功能,可以帮助您清理系统中的临时文件、缓存等。
  • +

    Arch linux 清理

    +
      +
    1. +

      缓存清理:

      +
        +
      • sudo pacman -Sc: 清理包缓存,删除已安装的但不再需要的软件包。
      • +
      • sudo pacman -Scc: 进一步清理所有包文件,包括已下载的包。
      • +
      +
    2. +
    3. +

      系统日志:

      +
        +
      • /var/log 目录下包含系统日志文件。你可以删除较旧的日志文件,或者使用日志轮换工具,如 logrotate
      • +
      +
    4. +
    5. +

      临时文件:

      +
        +
      • /tmp 目录下包含临时文件。你可以通过 sudo rm -rf /tmp/* 清理它们。
      • +
      +
    6. +
    7. +

      缓存文件:

      +
        +
      • 一些应用程序会在 ~/.cache 目录下存储缓存文件。你可以检查该目录并删除不再需要的文件。
      • +
      +
    8. +
    9. +

      AUR 缓存:

      +
        +
      • AUR 辅助工具(如 yay)会在 ~/.cache/yay 目录下存储构建和下载的软件包。你可以清理这些文件。
      • +
      +
    10. +
    11. +

      旧内核:

      +
        +
      • 如果你安装了多个内核版本,你可以删除不再需要的旧内核。首先使用 uname -r 查看当前内核版本,然后使用 sudo pacman -Rns linux-older-kernel 删除不需要的版本。
      • +
      +
    12. +
    13. +

      不再使用的配置文件:

      +
        +
      • 检查家目录下的隐藏文件,如 ~/.config,并删除不再需要的配置文件。
      • +
      +
    14. +
    15. +

      Docker日志文件:
      +使用 docker ps -a 命令查找你感兴趣的容器的 ID。

      +
      docker ps -a
      +
      +

      进入容器的日志目录,路径类似于 /var/lib/docker/containers/<container-id>/

      +
      cd /var/lib/docker/containers/<container-id>/
      +
      +

      使用命令清理或删除日志文件。你可以删除所有日志文件,或者只删除特定的日志文件。

      +
      # 删除所有日志文件
      +rm *.log
      +
      +# 删除特定日志文件(例如 stdout 和 stderr)
      +rm *-json.log
      +
      +
    16. +
    +

    Arch Linux 安装备份

    +

    你可以定期备份 Arch Linux 安装的软件列表,以便在需要时轻松还原。

    +
    pacman -Qqe > package-list.txt
    +
    +

    这将列出所有已安装的软件包,并将其保存到文件 package-list.txt 中。在还原系统时,你可以使用以下命令:

    +
    sudo pacman -S --needed - < package-list.txt
    +

    后记

    垃圾文件的产生总是无可避免,这是因为随着使用时间的流逝,系统的熵值也在增大;生命以负熵为食,同样的为系统清理垃圾也是逆熵的一部分。在你的生命中会有许多电子设备,但它们往往只有你一任主人,请善待它们!

    diff --git a/public/mechrev-keyboard/index.html b/public/mechrev-keyboard/index.html index 7681474..6312a8b 100644 --- a/public/mechrev-keyboard/index.html +++ b/public/mechrev-keyboard/index.html @@ -138,6 +138,116 @@ reboot

    不出意外,重启后键盘即可使用,若系统不同将 apt 替换即可。

    +

    四.其他问题

    +

    对于Redmi 或 Lenovo刚发布的AMD R7 6800H机型:

    + +

    修复wifi驱动

    +
    # 内核小于5.18的
    +git clone https://github.com/HRex39/rtl8852be.git
    +# 内核大于等于5.18的
    +git clone https://github.com/HRex39/rtl8852be.git -b dev
    +
    +cd rtl8852be
    +make -j8
    +sudo make install
    +sudo modprobe 8852be
    +
    +

    修复蓝牙驱动

    +
    # 内核=5.15
    +git clone https://github.com/HRex39/rtl8852be_bt.git -b 5.15
    +# 内核=5.18
    +git clone https://github.com/HRex39/rtl8852be_bt.git -b 5.18
    +
    +cd rtl8852be_bt
    +make -j8
    +sudo make install
    +
    +

    修复kwin_x11显卡未驱动

    +

    首先去amd官网下载最新的linux-amd驱动:

    +
    https://www.amd.com/zh-hans/support/linux-drivers // 22.20 for Ubuntu 20.04.5 HWE
    +
    +

    修改Deepin为ubuntu

    +
    sudo vim /etc/os-release // ID=Deepin => ID=ubuntu
    +
    +sudo apt install ./amdgpu-install_22.20.50200-1_all.deb
    +
    +sudo vim /etc/apt/sources.list.d/amdgpu.list // focal => bionic
    +
    +sudo apt update
    +
    +sudo amdgpu-install --no-dkms
    +
    +sudo apt install inxi clinfo
    +
    +

    安装成功以后,用inxi查看下:

    +

    inxi -G

    +
    Graphics:  Device-1: AMD Rembrandt driver: amdgpu v: kernel 
    +           Display: x11 server: X.Org 1.20.11 driver: amdgpu,ati unloaded: fbdev,modesetting,vesa 
    +           resolution: 1920x1080~60Hz 
    +           OpenGL: renderer: AMD YELLOW_CARP (LLVM 14.0.1 DRM 3.42 5.15.34-amd64-desktop) 
    +           v: 4.6 Mesa 22.1.0-devel
    +
    +

    最后还原最初的修改:

    +
    sudo vim /etc/os-release // ID=ubuntu => ID=Deepin
    +sudo apt purge amdgpu-install
    +
    +

    看下效果图:

    +
    ➜  ~ glxinfo -B
    +name of display: :0
    +display: :0  screen: 0
    +direct rendering: Yes
    +Extended renderer info (GLX_MESA_query_renderer):
    +    Vendor: AMD (0x1002)
    +    Device: AMD YELLOW_CARP (LLVM 14.0.1, DRM 3.42, 5.15.34-amd64-desktop) (0x1681)
    +    Version: 22.1.0
    +    Accelerated: yes
    +    Video memory: 2048MB
    +    Unified memory: no
    +    Preferred profile: core (0x1)
    +    Max core profile version: 4.6
    +    Max compat profile version: 4.6
    +    Max GLES1 profile version: 1.1
    +    Max GLES[23] profile version: 3.2
    +Memory info (GL_ATI_meminfo):
    +    VBO free memory - total: 1388 MB, largest block: 1388 MB
    +    VBO free aux. memory - total: 3047 MB, largest block: 3047 MB
    +    Texture free memory - total: 1388 MB, largest block: 1388 MB
    +    Texture free aux. memory - total: 3047 MB, largest block: 3047 MB
    +    Renderbuffer free memory - total: 1388 MB, largest block: 1388 MB
    +    Renderbuffer free aux. memory - total: 3047 MB, largest block: 3047 MB
    +Memory info (GL_NVX_gpu_memory_info):
    +    Dedicated video memory: 2048 MB
    +    Total available memory: 5120 MB
    +    Currently available dedicated video memory: 1388 MB
    +OpenGL vendor string: AMD
    +OpenGL renderer string: AMD YELLOW_CARP (LLVM 14.0.1, DRM 3.42, 5.15.34-amd64-desktop)
    +OpenGL core profile version string: 4.6 (Core Profile) Mesa 22.1.0-devel
    +OpenGL core profile shading language version string: 4.60
    +OpenGL core profile context flags: (none)
    +OpenGL core profile profile mask: core profile
    +
    +OpenGL version string: 4.6 (Compatibility Profile) Mesa 22.1.0-devel
    +OpenGL shading language version string: 4.60
    +OpenGL context flags: (none)
    +OpenGL profile mask: compatibility profile
    +
    +OpenGL ES profile version string: OpenGL ES 3.2 Mesa 22.1.0-devel
    +OpenGL ES profile shading language version string: OpenGL ES GLSL ES 3.20
    +
    +

    手动管理电源,避免CPU过度使用而发热

    +

    安装下面的三方电源管理工具 Boost Changer,选择 Performance策略即可

    +
    wget https://github.com/nbebaw/boostchanger/releases/download/v4.4.0/boostchanger_4.4.0_amd64.deb
    +
    +

    参考

    +

    https://zhuanlan.zhihu.com/p/530643928

    +

    https://github.com/HRex39/rtl8852be

    +

    https://github.com/HRex39/rtl8852be_bt

    +

    https://bbs.deepin.org/post/241607

    @@ -149,9 +259,9 @@
    - +   - 常见发音错误术语集合 + Windows二级菜单恢复及设置开机启动 diff --git a/public/page/4/index.html b/public/page/4/index.html index 9594b0c..d8690c2 100644 --- a/public/page/4/index.html +++ b/public/page/4/index.html @@ -181,11 +181,11 @@
    -

    常见发音错误术语集合

    +

    Windows二级菜单恢复及设置开机启动

    @@ -193,18 +193,18 @@ +
    -

    前言 中文和英语发音习惯不同,容易引起误解。本文旨在帮助您准确发音常见的科技术语,欢迎随时补充。

    +

    前言 Windows操作系统作为全球最为普及的桌面操作系统之一,其用户界面的设计非常经典;而win11中的二级菜单令人感到无语,本文教你回到一级菜单。

    - + Read more  ↩︎ diff --git a/public/page/5/index.html b/public/page/5/index.html index 6adab12..7d64cbb 100644 --- a/public/page/5/index.html +++ b/public/page/5/index.html @@ -78,6 +78,40 @@
    +

    常见发音错误术语集合

    + + + + + + + + +
    +

    前言 中文和英语发音习惯不同,容易引起误解。本文旨在帮助您准确发音常见的科技术语,欢迎随时补充。

    + +
    + + + +
    + +
    +

    流量卡购买与套路

    -
    - -
    - -

    PVE安装与MC服务器搭建

    - - - - - - - - -
    -

    前言 假期将至,不少家里有闲置设备的小伙伴想尝试开设一个我的世界(Minecraft)服务器,却不知从何下手。本文以 PVE-Debian-MCSM 为主线介绍其部署流程。

    - -
    - - -