<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>saotolls Inc. - 学习笔记</title>
    <link>https://discuz.saotolls.com/forum-2-1.html</link>
    <description>Latest 20 threads of 学习笔记</description>
    <copyright>Copyright(C) saotolls Inc.</copyright>
    <generator>Discuz! Board by Comsenz Inc.</generator>
    <lastBuildDate>Tue, 14 Apr 2026 03:01:00 +0000</lastBuildDate>
    <ttl>60</ttl>
    <image>
      <url>https://discuz.saotolls.com/static/image/common/logo_88_31.gif</url>
      <title>saotolls Inc.</title>
      <link>https://discuz.saotolls.com/</link>
    </image>
    <item>
      <title>[Dell R730xd] ipmltool调节风扇转速</title>
      <link>https://discuz.saotolls.com/thread-31-1-1.html</link>
      <description><![CDATA[[md]# Dell R730xd ipml调节风扇转速

&gt; Dell官方的工具安装包仅支持Windows操作系统；

## 安装impltool工具

1. 进入Dell官网下载ipmltool工具，[下载地址](https://dl.dell.com/FOLDER06447028M/1/ipmitool-setup-1.8.18-dellemc_p001.exe)

2. 双击安装即可。

3.  ...]]></description>
      <category>学习笔记</category>
      <author>saotolls</author>
      <pubDate>Sat, 10 May 2025 07:28:13 +0000</pubDate>
    </item>
    <item>
      <title>Ubuntu上图片格式转换 PNG=&gt;JPG</title>
      <link>https://discuz.saotolls.com/thread-29-1-1.html</link>
      <description><![CDATA[[md]## 基础依赖组件的安装

在 Ubuntu 中将 PNG 格式的图片转换为 JPG 格式，可以使用 convert 命令（来自 ImageMagick 工具）。如果还没有安装 ImageMagick，可以先安装它;

```bash
sudo apt-get update
sudo apt-get install imagemagick
```


## 文件内容格式的转 ...]]></description>
      <category>学习笔记</category>
      <author>saotolls</author>
      <pubDate>Wed, 19 Mar 2025 05:53:10 +0000</pubDate>
    </item>
    <item>
      <title>Ubuntu磁盘挂载</title>
      <link>https://discuz.saotolls.com/thread-28-1-1.html</link>
      <description><![CDATA[[md]## 1. 查看新磁盘

首先， 确认系统已经识别到新磁盘。可以使用下面的命令来查看磁盘列表：

```bash
sudo fdisk -l
``` 

&gt; 此处做假设，新的磁盘是: `/dev/sdb`，此处需要根据实际情况来进行调整；

## 2. 创建新的分区

如果新磁盘还没有分区，需要创建一个新的 ...]]></description>
      <category>学习笔记</category>
      <author>saotolls</author>
      <pubDate>Wed, 19 Mar 2025 05:38:22 +0000</pubDate>
    </item>
    <item>
      <title>MTProto Proxy 搭建 [Docker版本]</title>
      <link>https://discuz.saotolls.com/thread-27-1-1.html</link>
      <description><![CDATA[]]></description>
      <category>学习笔记</category>
      <author>saotolls</author>
      <pubDate>Tue, 14 Jan 2025 05:35:04 +0000</pubDate>
    </item>
    <item>
      <title>IDEA JRebel 激活方式</title>
      <link>https://discuz.saotolls.com/thread-25-1-1.html</link>
      <description><![CDATA[]]></description>
      <category>学习笔记</category>
      <author>saotolls</author>
      <pubDate>Fri, 22 Nov 2024 03:54:21 +0000</pubDate>
    </item>
    <item>
      <title>Hysteria2节点服务搭建</title>
      <link>https://discuz.saotolls.com/thread-24-1-1.html</link>
      <description><![CDATA[]]></description>
      <category>学习笔记</category>
      <author>saotolls</author>
      <pubDate>Wed, 20 Nov 2024 03:52:44 +0000</pubDate>
    </item>
    <item>
      <title>MySQL索引基础知识</title>
      <link>https://discuz.saotolls.com/thread-22-1-1.html</link>
      <description><![CDATA[[md]# MySQL索引基础知识

**定义**

&gt; 索引存在于对应的索引文件中，索引本质就是一组排好了顺序的一组数据

**作用**

* 索引数据中进行排序时，避免再次排序
* 在索引数据中对数据行进行定位时，避免全表扫描

## 索引基本操作

查看表文件中已经存在的索引

```sql
 ...]]></description>
      <category>学习笔记</category>
      <author>saotolls</author>
      <pubDate>Sat, 07 Sep 2024 05:55:38 +0000</pubDate>
    </item>
    <item>
      <title>MySQL查询语句中七个查询命令特征</title>
      <link>https://discuz.saotolls.com/thread-21-1-1.html</link>
      <description><![CDATA[七个查询关键字
1. from
    作用：
        1）将硬盘上的表文件加载到内存中，生成一个全新的临时表；
        2）定位内存中已经存在的临时表；
    注意：
        1）在一个查询语句中，第一个执行命令永远是from；
        2）from定位的是内存中一个临时表，这 ...]]></description>
      <category>学习笔记</category>
      <author>saotolls</author>
      <pubDate>Sat, 07 Sep 2024 05:23:12 +0000</pubDate>
    </item>
    <item>
      <title>Zookeeper的部署</title>
      <link>https://discuz.saotolls.com/thread-17-1-1.html</link>
      <description><![CDATA[服务文件的下载

服务文件下载地址：https://zookeeper.apache.org/releases.html
依赖环境的安装配置JDK11的下载地址：https://www.oracle.com/cn/java/technologies/javase/jdk11-archive-downloads.html
1. 将下载好的JDK文件上传至服务器；2. 使用 tar 命令对下载的 ...]]></description>
      <category>学习笔记</category>
      <author>saotolls</author>
      <pubDate>Thu, 29 Aug 2024 14:55:45 +0000</pubDate>
    </item>
    <item>
      <title>MTProto Proxy 搭建 [基础服务版本]</title>
      <link>https://discuz.saotolls.com/thread-16-1-1.html</link>
      <description><![CDATA[]]></description>
      <category>学习笔记</category>
      <author>saotolls</author>
      <pubDate>Thu, 29 Aug 2024 13:55:30 +0000</pubDate>
    </item>
    <item>
      <title>KMS服务器部署</title>
      <link>https://discuz.saotolls.com/thread-15-1-1.html</link>
      <description><![CDATA[]]></description>
      <category>学习笔记</category>
      <author>saotolls</author>
      <pubDate>Thu, 29 Aug 2024 13:39:36 +0000</pubDate>
    </item>
    <item>
      <title>X-UI面板的搭建</title>
      <link>https://discuz.saotolls.com/thread-14-1-1.html</link>
      <description><![CDATA[]]></description>
      <category>学习笔记</category>
      <author>saotolls</author>
      <pubDate>Wed, 28 Aug 2024 01:10:58 +0000</pubDate>
    </item>
    <item>
      <title>CentOS7 YUM方式安装JDK17</title>
      <link>https://discuz.saotolls.com/thread-13-1-1.html</link>
      <description><![CDATA[JDK 17 是 Java Development Kit（Java 开发工具包）的第 17 个长期支持（LTS）版本，由 Oracle 公司于 2021 年 9 月发布。作为 Java 语言的主要发行版，JDK 17 带来了许多新特性、增强功能和优化。

但是我们在 Linux 环境下使用 yum 安装时，发现不能直接安装 JDK17， ...]]></description>
      <category>学习笔记</category>
      <author>saotolls</author>
      <pubDate>Wed, 28 Aug 2024 01:00:18 +0000</pubDate>
    </item>
    <item>
      <title>Docker配置阿里云镜像加速</title>
      <link>https://discuz.saotolls.com/thread-12-1-1.html</link>
      <description><![CDATA[]]></description>
      <category>学习笔记</category>
      <author>saotolls</author>
      <pubDate>Mon, 26 Aug 2024 01:40:17 +0000</pubDate>
    </item>
    <item>
      <title>CentOS上Docker一键安装脚本</title>
      <link>https://discuz.saotolls.com/thread-10-1-1.html</link>
      <description><![CDATA[]]></description>
      <category>学习笔记</category>
      <author>saotolls</author>
      <pubDate>Sun, 04 Aug 2024 04:37:01 +0000</pubDate>
    </item>
    <item>
      <title>在CentOS上安装Docker服务</title>
      <link>https://discuz.saotolls.com/thread-9-1-1.html</link>
      <description><![CDATA[一、前提
    当前需要安装docker服务的环境所依赖的操作系统是一个纯净的操作系统，如果不是，则需要对原来安装的有关docker服务的内容做卸载；
    卸载命令：
二、Docker服务的安装
1. 安装所依赖的服务组件
2. 配置需要使用的仓库源
2.1 官方源（目前国内无法正常访 ...]]></description>
      <category>学习笔记</category>
      <author>saotolls</author>
      <pubDate>Sun, 04 Aug 2024 04:35:15 +0000</pubDate>
    </item>
    <item>
      <title>SonarQube 审计平台的搭建</title>
      <link>https://discuz.saotolls.com/thread-5-1-1.html</link>
      <description><![CDATA[1. 下载对应所需要的服务版本；
    官网地址：Code Quality, Security &amp; Static Analysis Tool with SonarQube | Sonar (sonarsource.com)
    选择需要的版本，点击对应的“Download”按钮，即可完成对应资源文件的下载；
   

    下载完成后，将对应的资源文件上传 ...]]></description>
      <category>学习笔记</category>
      <author>saotolls</author>
      <pubDate>Wed, 31 Jul 2024 23:45:21 +0000</pubDate>
    </item>
    <item>
      <title>CentOS 7 防火墙的相关操作</title>
      <link>https://discuz.saotolls.com/thread-4-1-1.html</link>
      <description><![CDATA[1. 放行指定端口

2. 删除已放行端口

3. 查看已放行的端口列表

4. 重新加载防火墙配置

5. 查看防火墙服务状态

6. 停止防火墙

7. 开启防火墙

8. 重启防火墙

9. 移除防火墙的自启动

10. 添加防火墙的自启动



 ...]]></description>
      <category>学习笔记</category>
      <author>saotolls</author>
      <pubDate>Tue, 30 Jul 2024 12:53:11 +0000</pubDate>
    </item>
    <item>
      <title>CentOS 7 更换Yum源 (阿里源)</title>
      <link>https://discuz.saotolls.com/thread-2-1-1.html</link>
      <description><![CDATA[]]></description>
      <category>学习笔记</category>
      <author>saotolls</author>
      <pubDate>Tue, 30 Jul 2024 05:25:05 +0000</pubDate>
    </item>
  </channel>
</rss>