<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>kj’s blog</title><link>http://116.62.116.201/algolia.json</link><description>Recent content from kj’s blog</description><generator>Hugo</generator><language>zh-CN</language><managingEditor>None (Kfjie)</managingEditor><webMaster>None (Kfjie)</webMaster><copyright>本博客所有文章除特别声明外，均采用 BY-NC-SA 许可协议。转载请注明出处！</copyright><lastBuildDate>Sat, 14 Mar 2026 00:50:27 +0800</lastBuildDate><atom:link href="http://116.62.116.201/index.xml" rel="self" type="application/rss+xml"/><item><title>树莓派系统硬件重装与 VNC 远程桌面配置指南</title><link>http://116.62.116.201/post/raspberry-pi-vnc-setup-guide/</link><pubDate>Sat, 14 Mar 2026 00:50:27 +0800</pubDate><author>None (Kfjie)</author><guid>http://116.62.116.201/post/raspberry-pi-vnc-setup-guide/</guid><description>
<![CDATA[<h1>树莓派系统硬件重装与 VNC 远程桌面配置指南</h1><p>作者：Kfjie（None）</p>
        
          <p>很久没弄树莓派了，最近买了一张新的 TF 卡想重新折腾一下，结果发现因为太久没弄，很多操作都忘光了…… 摸索了一会才想起来，所以干脆把这些配置步骤写成这篇教程，等哪天内存降价了再弄一次时，可以直接照着抄作业。</p>
        
        <hr><p>本文2026-03-14首发于<a href='http://116.62.116.201/'>kj’s blog</a>，最后修改于2026-03-14</p>]]></description><category>Hardware</category></item><item><title>Meting-API 使用说明</title><link>http://116.62.116.201/post/meting-api-usage-guide/</link><pubDate>Sat, 28 Feb 2026 11:57:05 +0800</pubDate><author>None (Kfjie)</author><guid>http://116.62.116.201/post/meting-api-usage-guide/</guid><description>
<![CDATA[<h1>Meting-API 使用说明</h1><p>作者：Kfjie（None）</p>
        
          <p><a href="https://github.com/thekfjie/Meting_Api_Kugou">Meting_kugou</a>本站不提供服务，以下仅做仓库demo示范。</p>
<h2 id="1-基础地址">
<a class="header-anchor" href="#1-%e5%9f%ba%e7%a1%80%e5%9c%b0%e5%9d%80"></a>
1. 基础地址
</h2><ul>
<li><strong>主地址</strong>：<code>https://api.kfjie.me/music</code></li>
<li><strong>请求方式</strong>：<code>GET</code></li>
<li><strong>用途</strong>：给 MetingJS、APlayer 和站内自定义播放器提供统一数据入口</li>
</ul>
<hr>
<h2 id="2-常用参数">
<a class="header-anchor" href="#2-%e5%b8%b8%e7%94%a8%e5%8f%82%e6%95%b0"></a>
2. 常用参数
</h2><p>接口最常用的 3 个参数如下：</p>
        
        <hr><p>本文2026-02-28首发于<a href='http://116.62.116.201/'>kj’s blog</a>，最后修改于2026-02-28</p>]]></description><category>Documentation</category></item><item><title>树莓派 4 VNC 白屏解决方案</title><link>http://116.62.116.201/post/raspberry-pi-4-vnc-white-screen-solution/</link><pubDate>Tue, 17 Feb 2026 23:55:00 +0800</pubDate><author>None (Kfjie)</author><guid>http://116.62.116.201/post/raspberry-pi-4-vnc-white-screen-solution/</guid><description>
<![CDATA[<h1>树莓派 4 VNC 白屏解决方案</h1><p>作者：Kfjie（None）</p>
        
          <p>在使用 Raspberry Pi 4B (4GB, Rev 1.5) 搭载 Raspberry Pi OS (64-bit) 时，初次配置 SSH 并开启 VNC Server 后，使用 RealVNC Viewer 连接可能会遇到白屏问题（仅能显示右键菜单）。这通常是因为系统默认使用的 Wayland 显示服务器与 RealVNC 不兼容导致的。</p>
        
        <hr><p>本文2026-02-17首发于<a href='http://116.62.116.201/'>kj’s blog</a>，最后修改于2026-02-17</p>]]></description><category>Hardware</category></item><item><title>Linux 服务器目录结构详解</title><link>http://116.62.116.201/post/understanding-the-server/</link><pubDate>Sat, 07 Feb 2026 21:18:00 +0800</pubDate><author>None (Kfjie)</author><guid>http://116.62.116.201/post/understanding-the-server/</guid><description>
<![CDATA[<h1>Linux 服务器目录结构详解</h1><p>作者：Kfjie（None）</p>
        
          <p>Linux 文件系统采用树状结构，所有文件和目录都起始于 <strong>根目录</strong> (<code>/</code>)。</p>
<h2 id="linux-文件系统结构图">
<a class="header-anchor" href="#linux-%e6%96%87%e4%bb%b6%e7%b3%bb%e7%bb%9f%e7%bb%93%e6%9e%84%e5%9b%be"></a>
Linux 文件系统结构图
</h2><pre class="mermaid">
  graph LR
    Root["/ (根目录)"]

    subgraph sg_core [核心系统]
        Usr["/usr/"]
        Boot["/boot/"]
        LinkBin["/bin, /sbin, /lib*"]
    end
    
    LinkBin -.-> Usr
    Root --> Usr
    Root --> Boot

    Usr --> UsrBin["bin/ (git, python3)"]
    Usr --> UsrSbin["sbin/ (nginx)"]
    Usr --> UsrLocal["local/ (手动安装)"]
    Usr --> UsrLib["lib/ (库文件)"]

    subgraph sg_data [配置与数据]
        Etc["/etc/"]
        Var["/var/"]
        Tmp["/tmp/"]
    end

    Root --> Etc
    Root --> Var
    Root --> Tmp

    Etc --> NginxConf["nginx/"]
    Etc --> Systemd["systemd/system/"]
    Etc --> Ssh["ssh/"]

    Var --> Log["log/"]
    Var --> Www["www/"]

    subgraph sg_apps [应用软件]
        Opt["/opt/"]
        Snap["/snap/"]
    end

    Root --> Opt
    Root --> Snap
    
    Opt --> OpenList["openlist/"]

    subgraph sg_users [用户空间]
        Home["/home/"]
        RootHome["/root/"]
    end
    
    Root --> Home
    Root --> RootHome

    subgraph sg_virtual [虚拟文件系统]
        DirProc["/proc/"]
        DirSys["/sys/"]
        DirDev["/dev/"]
        DirRun["/run/"]
    end

    Root --> DirProc
    Root --> DirSys
    Root --> DirDev
    Root --> DirRun

    subgraph sg_mounts [外部存储]
        Mnt["/mnt/"]
        Media["/media/"]
    end

    Root --> Mnt
    Root --> Media
</pre><hr>
<h2 id="1-核心系统目录">
<a class="header-anchor" href="#1-%e6%a0%b8%e5%bf%83%e7%b3%bb%e7%bb%9f%e7%9b%ae%e5%bd%95"></a>
1. 核心系统目录
</h2><h3 id="bin--sbin-binaries">
<a class="header-anchor" href="#bin--sbin-binaries"></a>
bin &amp; sbin (Binaries)
</h3><ul>
<li><strong>用途</strong>：存放可执行命令。</li>
<li><strong>说明</strong>：
<ul>
<li><strong>bin</strong>：存放所有用户皆可使用的基础命令，如 <code>ls</code>, <code>cp</code>, <code>mv</code> 等。</li>
<li><strong>sbin</strong>：存放主要用于系统管理的命令，通常只有管理员权限才能执行，如 <code>reboot</code>, <code>fdisk</code> 等。</li>
</ul>
</li>
</ul>
<h3 id="etc-etceteraconfiguration">
<a class="header-anchor" href="#etc-etceteraconfiguration"></a>
etc (Etcetera/Configuration)
</h3><ul>
<li><strong>用途</strong>：存放系统及软件的配置文件。</li>
<li><strong>说明</strong>：Nginx 配置、用户账户信息、网络配置等均位于此处。修改此目录下的文件会直接影响系统或服务的运行行为。
<ul>
<li>例如：我的 Nginx 配置文件位于 <code>/etc/nginx/nginx.conf</code>。</li>
</ul>
</li>
</ul>
<h3 id="lib-lib64-libraries">
<a class="header-anchor" href="#lib-lib64-libraries"></a>
lib, lib64 (Libraries)
</h3><ul>
<li><strong>用途</strong>：存放系统共享库。</li>
<li><strong>说明</strong>：类似于 Windows 的 <code>.dll</code> 文件，为系统中的程序提供运行时支持。</li>
</ul>
<h3 id="systemd-system-daemons">
<a class="header-anchor" href="#systemd-system-daemons"></a>
systemd (System Daemons)
</h3><ul>
<li><strong>关键目录</strong>：<code>/etc/systemd/system/</code></li>
<li><strong>用途</strong>：<strong>管家大本营</strong>。</li>
<li><strong>说明</strong>：这里存放着“服务配置文件” (<code>.service</code> 文件)。
<ul>
<li>当你运行 <code>systemctl enable nginx</code> 或 <code>systemctl start frps</code> 时，系统其实就是去这里找对应的文件。</li>
<li><strong>docker.service.d/</strong>：Docker 服务的自定义配置目录（如代理设置）。</li>
<li>如果你想让某个程序开机自动运行，你就得往这里丢一个配置文件。</li>
</ul>
</li>
</ul>
<h3 id="boot-boot-loader">
<a class="header-anchor" href="#boot-boot-loader"></a>
boot (Boot Loader)
</h3><ul>
<li><strong>用途</strong>：启动文件。</li>
<li><strong>说明</strong>：存放内核 (<code>vmlinuz</code>) 和启动引导程序 (GRUB)。一般不用动，除非你在修这台机器的启动问题。</li>
</ul>
<hr>
<h2 id="2-软件都在哪software-locations">
<a class="header-anchor" href="#2-%e8%bd%af%e4%bb%b6%e9%83%bd%e5%9c%a8%e5%93%aasoftware-locations"></a>
2. 软件都在哪？(Software Locations)
</h2><p>在 Linux 下，软件不像 Windows 那样集中在 <code>Program Files</code>，而是根据安装方式分散在不同位置。以下是我服务器上的实际情况：</p>
        
        <hr><p>本文2026-02-07首发于<a href='http://116.62.116.201/'>kj’s blog</a>，最后修改于2026-02-07</p>]]></description><category>Server</category></item><item><title>服务器科学上网配置手册</title><link>http://116.62.116.201/post/server-network-configuration-manual/</link><pubDate>Fri, 06 Feb 2026 13:26:00 +0800</pubDate><author>None (Kfjie)</author><guid>http://116.62.116.201/post/server-network-configuration-manual/</guid><description>
<![CDATA[<h1>服务器科学上网配置手册</h1><p>作者：Kfjie（None）</p>
        
          <h2 id="服务器科学上网配置手册-ssh-remote-forwarding">
<a class="header-anchor" href="#%e6%9c%8d%e5%8a%a1%e5%99%a8%e7%a7%91%e5%ad%a6%e4%b8%8a%e7%bd%91%e9%85%8d%e7%bd%ae%e6%89%8b%e5%86%8c-ssh-remote-forwarding"></a>
服务器科学上网配置手册 (SSH Remote Forwarding)
</h2><p>场景： 本地电脑 (Windows/Mac) 有 Clash，云服务器 (Linux) 需要拉取 GitHub 代码或 Docker 镜像。<br>
核心原理： 利用 SSH 建立反向隧道，将服务器流量转发回本地 Clash 端口。</p>
        
        <hr><p>本文2026-02-06首发于<a href='http://116.62.116.201/'>kj’s blog</a>，最后修改于2026-02-06</p>]]></description><category>Server</category></item></channel></rss>