<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
  <title>Diraw的世界</title>
  <icon>https://diraw.top/icon.png</icon>
  
  <link href="https://diraw.top/atom.xml" rel="self"/>
  
  <link href="https://diraw.top/"/>
  <updated>2026-09-08T14:03:11.799Z</updated>
  <id>https://diraw.top/</id>
  
  <author>
    <name>Diraw</name>
    
  </author>
  
  <generator uri="https://hexo.io/">Hexo</generator>
  
  <entry>
    <title>GitHub PR 流程与 cherry-pick 多 commit 标准做法</title>
    <link href="https://diraw.top/2026/09/08/CS/git/4/"/>
    <id>https://diraw.top/2026/09/08/CS/git/4/</id>
    <published>2026-09-08T14:03:00.000Z</published>
    <updated>2026-09-08T14:03:11.799Z</updated>
    
    
    <summary type="html">协作开发中遇到的一些问题</summary>
    
    
    
    <category term="计算机" scheme="https://diraw.top/categories/%E8%AE%A1%E7%AE%97%E6%9C%BA/"/>
    
    
    <category term="github" scheme="https://diraw.top/tags/github/"/>
    
    <category term="git" scheme="https://diraw.top/tags/git/"/>
    
  </entry>
  
  <entry>
    <title>RTX 3060 离线工作站 NVIDIA 535 驱动更新与 initrd 启动故障复盘</title>
    <link href="https://diraw.top/2026/07/17/CS/Linux/10/"/>
    <id>https://diraw.top/2026/07/17/CS/Linux/10/</id>
    <published>2026-07-17T07:28:00.000Z</published>
    <updated>2026-07-17T07:31:46.481Z</updated>
    
    
    <summary type="html">本文记录了一台配备 NVIDIA RTX 3060、无法直接连接互联网的 Ubuntu 工作站在离线更新 NVIDIA 535 驱动时遇到的完整故障链</summary>
    
    
    
    <category term="计算机" scheme="https://diraw.top/categories/%E8%AE%A1%E7%AE%97%E6%9C%BA/"/>
    
    
    <category term="linux" scheme="https://diraw.top/tags/linux/"/>
    
    <category term="nvidia" scheme="https://diraw.top/tags/nvidia/"/>
    
    <category term="initramfs" scheme="https://diraw.top/tags/initramfs/"/>
    
  </entry>
  
  <entry>
    <title>CentOS 超算 GPU 节点内核与 NVIDIA 驱动升级记录：从 535 到 595.80</title>
    <link href="https://diraw.top/2026/07/17/CS/Linux/9/"/>
    <id>https://diraw.top/2026/07/17/CS/Linux/9/</id>
    <published>2026-07-17T06:23:00.000Z</published>
    <updated>2026-07-17T07:32:22.325Z</updated>
    
    
    <summary type="html">这次升级过程中踩到的坑比较典型：新驱动需要新内核，新内核需要新 GCC，驱动编译又牵涉到 RDMA/IB 模块，最后还因为存储网络没起来导致共享 home 丢失。</summary>
    
    
    
    <category term="计算机" scheme="https://diraw.top/categories/%E8%AE%A1%E7%AE%97%E6%9C%BA/"/>
    
    
    <category term="linux" scheme="https://diraw.top/tags/linux/"/>
    
    <category term="centos" scheme="https://diraw.top/tags/centos/"/>
    
    <category term="nvidia" scheme="https://diraw.top/tags/nvidia/"/>
    
  </entry>
  
  <entry>
    <title>EasyTier Windows 开机自启实现</title>
    <link href="https://diraw.top/2026/07/16/CS/Windows/12/"/>
    <id>https://diraw.top/2026/07/16/CS/Windows/12/</id>
    <published>2026-07-16T05:29:00.000Z</published>
    <updated>2026-07-16T06:22:58.589Z</updated>
    
    
    <summary type="html">基于 WinSW 将 EasyTier 部署为 Windows 系统服务，实现开机自启</summary>
    
    
    
    <category term="计算机" scheme="https://diraw.top/categories/%E8%AE%A1%E7%AE%97%E6%9C%BA/"/>
    
    
    <category term="注册表" scheme="https://diraw.top/tags/%E6%B3%A8%E5%86%8C%E8%A1%A8/"/>
    
  </entry>
  
  <entry>
    <title>wsl碎片化和扩容解决方案</title>
    <link href="https://diraw.top/2026/03/19/CS/Windows/11/"/>
    <id>https://diraw.top/2026/03/19/CS/Windows/11/</id>
    <published>2026-03-19T13:47:00.000Z</published>
    <updated>2026-03-19T14:06:02.523Z</updated>
    
    
    <summary type="html">工作站上动态容量的ubuntu wsl读取速度只有22MB/s，碎片化100%也是无敌了</summary>
    
    
    
    <category term="计算机" scheme="https://diraw.top/categories/%E8%AE%A1%E7%AE%97%E6%9C%BA/"/>
    
    
    <category term="wsl" scheme="https://diraw.top/tags/wsl/"/>
    
  </entry>
  
  <entry>
    <title>Python：全局解释器锁GIL</title>
    <link href="https://diraw.top/2026/01/14/CS/python/1/"/>
    <id>https://diraw.top/2026/01/14/CS/python/1/</id>
    <published>2026-01-14T14:00:00.000Z</published>
    <updated>2026-01-14T16:03:52.964Z</updated>
    
    
    <summary type="html">自 Python 诞生以来的三十余年间，GIL 作为 CPython 内存管理和线程安全模型的基础，既成就了 Python 在单线程脚本和胶水语言领域的霸主地位，也成为了其在多核并发计算时代面临的最大技术债务</summary>
    
    
    
    <category term="计算机" scheme="https://diraw.top/categories/%E8%AE%A1%E7%AE%97%E6%9C%BA/"/>
    
    
    <category term="python" scheme="https://diraw.top/tags/python/"/>
    
  </entry>
  
  <entry>
    <title>2026跨年：写给2027年1月1日的信</title>
    <link href="https://diraw.top/2026/01/01/LIFE/record/3/"/>
    <id>https://diraw.top/2026/01/01/LIFE/record/3/</id>
    <published>2025-12-31T17:15:00.000Z</published>
    <updated>2025-12-31T18:32:41.918Z</updated>
    
    
    <summary type="html">新年，新气象。新年，改过自新。新年，重头再来。</summary>
    
    
    
    <category term="生活" scheme="https://diraw.top/categories/%E7%94%9F%E6%B4%BB/"/>
    
    
    <category term="记录" scheme="https://diraw.top/tags/%E8%AE%B0%E5%BD%95/"/>
    
  </entry>
  
  <entry>
    <title>非独立联合概率分布和Copula理论</title>
    <link href="https://diraw.top/2025/12/26/PHYSICS/2/"/>
    <id>https://diraw.top/2025/12/26/PHYSICS/2/</id>
    <published>2025-12-26T12:07:00.000Z</published>
    <updated>2026-01-08T11:57:38.701Z</updated>
    
    
    <summary type="html">介绍了构建非独立联合概率分布的方法，并重点讲解了 Copula 理论</summary>
    
    
    
    <category term="物理" scheme="https://diraw.top/categories/%E7%89%A9%E7%90%86/"/>
    
    
    <category term="物理" scheme="https://diraw.top/tags/%E7%89%A9%E7%90%86/"/>
    
  </entry>
  
  <entry>
    <title>自建jsDelivr镜像服务，并配置Hexo Butterfly主题</title>
    <link href="https://diraw.top/2025/12/25/CS/www/15/"/>
    <id>https://diraw.top/2025/12/25/CS/www/15/</id>
    <published>2025-12-25T14:29:00.000Z</published>
    <updated>2025-12-25T14:55:34.140Z</updated>
    
    
    <summary type="html">jsDelivr 在国内的访问时好时坏，导致网站的图标、字体加载很慢，索性自己建个镜像算了</summary>
    
    
    
    <category term="计算机" scheme="https://diraw.top/categories/%E8%AE%A1%E7%AE%97%E6%9C%BA/"/>
    
    
    <category term="Hexo" scheme="https://diraw.top/tags/Hexo/"/>
    
    <category term="服务器" scheme="https://diraw.top/tags/%E6%9C%8D%E5%8A%A1%E5%99%A8/"/>
    
    <category term="Butterfly" scheme="https://diraw.top/tags/Butterfly/"/>
    
  </entry>
  
  <entry>
    <title>自建长链转短链URL服务</title>
    <link href="https://diraw.top/2025/12/15/CS/www/14/"/>
    <id>https://diraw.top/2025/12/15/CS/www/14/</id>
    <published>2025-12-15T14:20:00.000Z</published>
    <updated>2025-12-15T14:22:50.219Z</updated>
    
    
    <summary type="html">使用 Docker + Shlink 自托管部署</summary>
    
    
    
    <category term="计算机" scheme="https://diraw.top/categories/%E8%AE%A1%E7%AE%97%E6%9C%BA/"/>
    
    
    <category term="服务器" scheme="https://diraw.top/tags/%E6%9C%8D%E5%8A%A1%E5%99%A8/"/>
    
  </entry>
  
  <entry>
    <title>自建文本分享Pastebin服务</title>
    <link href="https://diraw.top/2025/12/15/CS/www/13/"/>
    <id>https://diraw.top/2025/12/15/CS/www/13/</id>
    <published>2025-12-15T08:32:00.000Z</published>
    <updated>2025-12-15T14:24:27.544Z</updated>
    
    
    <summary type="html">在 Debian 服务器上部署一个像 paste.ubuntu.com 这样的网站，使用项目为 PrivateBin</summary>
    
    
    
    <category term="计算机" scheme="https://diraw.top/categories/%E8%AE%A1%E7%AE%97%E6%9C%BA/"/>
    
    
    <category term="服务器" scheme="https://diraw.top/tags/%E6%9C%8D%E5%8A%A1%E5%99%A8/"/>
    
  </entry>
  
  <entry>
    <title>设置debian笔记本电脑合盖熄屏但不断网</title>
    <link href="https://diraw.top/2025/12/05/CS/x220/1/"/>
    <id>https://diraw.top/2025/12/05/CS/x220/1/</id>
    <published>2025-12-05T15:21:00.000Z</published>
    <updated>2025-12-05T15:34:57.435Z</updated>
    
    
    <summary type="html">通过 systemd-logind 和 acpid 脚本精确地控制屏幕熄灭的时间，以及开始捣腾买的二手x220…</summary>
    
    
    
    <category term="计算机" scheme="https://diraw.top/categories/%E8%AE%A1%E7%AE%97%E6%9C%BA/"/>
    
    
    <category term="debian" scheme="https://diraw.top/tags/debian/"/>
    
    <category term="x220" scheme="https://diraw.top/tags/x220/"/>
    
  </entry>
  
  <entry>
    <title>自建github-readme-stats服务</title>
    <link href="https://diraw.top/2025/12/03/CS/www/12/"/>
    <id>https://diraw.top/2025/12/03/CS/www/12/</id>
    <published>2025-12-03T13:44:00.000Z</published>
    <updated>2025-12-03T13:59:35.824Z</updated>
    
    
    <summary type="html">最近github-readme-stats官方的vercel配额一直崩，遂自己部署一个来用</summary>
    
    
    
    <category term="计算机" scheme="https://diraw.top/categories/%E8%AE%A1%E7%AE%97%E6%9C%BA/"/>
    
    
    <category term="github" scheme="https://diraw.top/tags/github/"/>
    
    <category term="服务器" scheme="https://diraw.top/tags/%E6%9C%8D%E5%8A%A1%E5%99%A8/"/>
    
  </entry>
  
  <entry>
    <title>Clifford代数和宇称不守恒</title>
    <link href="https://diraw.top/2025/11/07/PHYSICS/1/"/>
    <id>https://diraw.top/2025/11/07/PHYSICS/1/</id>
    <published>2025-11-07T14:25:00.000Z</published>
    <updated>2025-12-31T08:09:48.465Z</updated>
    
    
    <summary type="html">从群、环、域基本概念开始，一步步构建结合代数、Clifford代数、Dirac代数数学结构，最后证明宇称不守恒。</summary>
    
    
    
    <category term="物理" scheme="https://diraw.top/categories/%E7%89%A9%E7%90%86/"/>
    
    
    <category term="物理" scheme="https://diraw.top/tags/%E7%89%A9%E7%90%86/"/>
    
  </entry>
  
  <entry>
    <title>不需要服务器，使用tailscale内网ip进行windows自带远程桌面连接</title>
    <link href="https://diraw.top/2025/10/27/CS/Windows/10/"/>
    <id>https://diraw.top/2025/10/27/CS/Windows/10/</id>
    <published>2025-10-27T11:49:00.000Z</published>
    <updated>2025-10-27T12:28:53.180Z</updated>
    
    
    <summary type="html">相对于rustdesk来说安装更加方便，而且tailscale端对端、windows自带服务更安全</summary>
    
    
    
    <category term="计算机" scheme="https://diraw.top/categories/%E8%AE%A1%E7%AE%97%E6%9C%BA/"/>
    
    
    <category term="windows" scheme="https://diraw.top/tags/windows/"/>
    
  </entry>
  
  <entry>
    <title>在没有systemd的系统上启动守护进程</title>
    <link href="https://diraw.top/2025/10/25/CS/Windows/9/"/>
    <id>https://diraw.top/2025/10/25/CS/Windows/9/</id>
    <published>2025-10-25T12:17:00.000Z</published>
    <updated>2025-10-26T11:46:41.277Z</updated>
    
    
    <summary type="html">解决 wsl 上 System has not been booted with systemd as init system (PID 1). Can&#39;t operate. 的问题</summary>
    
    
    
    <category term="计算机" scheme="https://diraw.top/categories/%E8%AE%A1%E7%AE%97%E6%9C%BA/"/>
    
    
    <category term="ubuntu" scheme="https://diraw.top/tags/ubuntu/"/>
    
    <category term="wsl" scheme="https://diraw.top/tags/wsl/"/>
    
  </entry>
  
  <entry>
    <title>使用Tailscale对多台服务器进行内部组网并进行流量转发</title>
    <link href="https://diraw.top/2025/10/14/CS/www/11/"/>
    <id>https://diraw.top/2025/10/14/CS/www/11/</id>
    <published>2025-10-14T11:04:00.000Z</published>
    <updated>2025-10-25T12:29:37.529Z</updated>
    
    
    <summary type="html">Tailscale底层使用WireGuard协议，性能优秀，延迟低，且配置简单</summary>
    
    
    
    <category term="计算机" scheme="https://diraw.top/categories/%E8%AE%A1%E7%AE%97%E6%9C%BA/"/>
    
    
    <category term="服务器" scheme="https://diraw.top/tags/%E6%9C%8D%E5%8A%A1%E5%99%A8/"/>
    
  </entry>
  
  <entry>
    <title>在debian服务器上搭建syncthing中转</title>
    <link href="https://diraw.top/2025/10/06/CS/www/10/"/>
    <id>https://diraw.top/2025/10/06/CS/www/10/</id>
    <published>2025-10-06T10:43:00.000Z</published>
    <updated>2025-10-14T13:19:54.276Z</updated>
    
    
    <summary type="html">推荐一款免费、开源、去中心化、跨平台的文件同步程序，可以在多台计算机之间安全地同步文件</summary>
    
    
    
    <category term="计算机" scheme="https://diraw.top/categories/%E8%AE%A1%E7%AE%97%E6%9C%BA/"/>
    
    
    <category term="debian" scheme="https://diraw.top/tags/debian/"/>
    
    <category term="服务器" scheme="https://diraw.top/tags/%E6%9C%8D%E5%8A%A1%E5%99%A8/"/>
    
  </entry>
  
  <entry>
    <title>使用diskpart格式化u盘</title>
    <link href="https://diraw.top/2025/10/06/CS/Windows/8/"/>
    <id>https://diraw.top/2025/10/06/CS/Windows/8/</id>
    <published>2025-10-06T08:00:00.000Z</published>
    <updated>2025-10-06T08:21:34.374Z</updated>
    
    
    <summary type="html">u盘之前拿去刷启动盘了，之后直接在文件资源管理器里面格式化不了，有写保护，只好用diskpart来处理</summary>
    
    
    
    <category term="计算机" scheme="https://diraw.top/categories/%E8%AE%A1%E7%AE%97%E6%9C%BA/"/>
    
    
    <category term="windows" scheme="https://diraw.top/tags/windows/"/>
    
  </entry>
  
  <entry>
    <title>在ubuntu/debian上安装neovim，并分享个人配置文件</title>
    <link href="https://diraw.top/2025/10/05/CS/Linux/8/"/>
    <id>https://diraw.top/2025/10/05/CS/Linux/8/</id>
    <published>2025-10-05T09:17:00.000Z</published>
    <updated>2025-10-05T12:27:31.662Z</updated>
    
    
    <summary type="html">从vim切换到nvim了，最后发现vim的速度还更快些……</summary>
    
    
    
    <category term="计算机" scheme="https://diraw.top/categories/%E8%AE%A1%E7%AE%97%E6%9C%BA/"/>
    
    
    <category term="linux" scheme="https://diraw.top/tags/linux/"/>
    
    <category term="ubuntu" scheme="https://diraw.top/tags/ubuntu/"/>
    
    <category term="debian" scheme="https://diraw.top/tags/debian/"/>
    
  </entry>
  
</feed>
