<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[大热的3090风冷改造方案 大幅降温稳定AI大脑]]></title><description><![CDATA[<p dir="auto">我用的微星 魔龙 3090 用过的都懂 核心80度以上 热点100度以上 显存100度 都是太正常的温度了<br />
第一版改造方案<br />
<img src="https://upload.lcz.me/uploads/a16a55ca-f6c4-417a-9713-707fa89a3a19.jpg" alt="76f89d16549e22828721a353655f1e64.jpg" class=" img-fluid img-markdown" /><br />
导热贴 贴在显卡背面 辅助背面显存散热 ，测试下来几乎没有效果 ，导热贴的面积太小 制约了导热效率</p>
<p dir="auto">第二版改造方案<br />
<img src="https://upload.lcz.me/uploads/eb24c794-511f-4757-b4ca-8784e70b56a6.jpg" alt="2a20b65d772306a44c88151ce2dcd300.jpg" class=" img-fluid img-markdown" /><br />
<img src="https://upload.lcz.me/uploads/ee44d6c8-e06f-4168-bc23-0ae990e0d577.jpg" alt="aed96ed948b44b8cda869ec34775b73d.jpg" class=" img-fluid img-markdown" /><br />
<img src="https://upload.lcz.me/uploads/1163120b-923c-418c-ad23-01eab18f8f4c.jpg" alt="86c5ec7f83a07be8e89c04c104ad91cd.jpg" class=" img-fluid img-markdown" /><br />
改用导热膏直接堆在显卡背板上，大幅度提升了散热效率，显存温度可以降低18度 ，只有84度，但是核心温度还是无法被压制 导致核心降频，热点温度还在100度徘徊。</p>
<p dir="auto">第三版改造方案<br />
<img src="https://upload.lcz.me/uploads/60f0528f-efa6-4554-bb5d-42805095d7d9.jpg" alt="3719d220ef929c8f190fa39c34f8b32a.jpg" class=" img-fluid img-markdown" /><br />
<img src="https://upload.lcz.me/uploads/80dcc334-8a1a-4d9b-b3e2-8411ca0c2f69.jpg" alt="0cbb366de15c27ca66f7b03fc82f32b0.jpg" class=" img-fluid img-markdown" /><br />
<img src="https://upload.lcz.me/uploads/2ae75897-bd4f-40a6-9017-dfd7070c7c0b.jpg" alt="cf567490045bf15b0c17e6beaa7c41ab.jpg" class=" img-fluid img-markdown" /><br />
拆掉原装风扇和外壳，正面利用9CM暴力风扇进行强制散热，背面利用14CM风扇对背面的显存辅助散热，目前拷机30多分钟 全程不掉频，热点不到80度 ，核心和显存都在70以下 这次算是比较完美的解决了3090太热的问题 。</p>
]]></description><link>https://lcz.me/topic/704/大热的3090风冷改造方案-大幅降温稳定ai大脑</link><generator>RSS for Node</generator><lastBuildDate>Wed, 01 Jul 2026 05:13:55 GMT</lastBuildDate><atom:link href="https://lcz.me/topic/704.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 26 Jun 2026 03:07:03 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to 大热的3090风冷改造方案 大幅降温稳定AI大脑 on Wed, 01 Jul 2026 04:44:18 GMT]]></title><description><![CDATA[<p dir="auto">我也是集线器，接 CPUFAN。脚本控制全部风扇。包括 CPU 风扇和机箱风扇。根据 CPU 和 GPU 温度控制风扇转速。脚本是 Gemini 写的。<br />
按温度跑。<br />
<strong>pwm集线器接cpufan接口实现gpu+cpu双温控自动化调速脚本。</strong></p>
<p dir="auto">已经将脚本路径、提权指令以及 Systemd 守护进程中的执行路径**全部严格统一为 <code>/usr/local/bin/gpu_fan_control.sh**</code>。同时，将服务名称也顺理成章地对齐为 <code>gpu-fan-control.service</code>，方便日后管理。</p>
<p dir="auto">直接复制并一次性粘贴到终端执行即可：</p>
<h3>1. 生成并赋予核心脚本权限</h3>
<pre><code class="language-bash">sudo cat &gt; /usr/local/bin/gpu_fan_control.sh &lt;&lt; 'EOF'
#!/bin/bash

# ==========================================
# CPU/GPU 双擎温度联合判定风扇控制脚本 (双向迟滞优化版)
# ==========================================

# ---------------------------------------------------------
# 【模块 1：动态硬件寻址】
# ---------------------------------------------------------
find_hwmon_by_name() {
    local name=$1
    for d in /sys/class/hwmon/hwmon*; do
        if [ -f "$d/name" ] &amp;&amp; [ "$(cat "$d/name")" = "$name" ]; then
            echo "$d"
            return 0
        fi
    done
    return 1
}

NCT_DIR=$(find_hwmon_by_name "nct6793")
if [ -z "$NCT_DIR" ]; then
    echo "$(date): FATAL ERROR - Cannot find nct6793 hwmon module." &gt;&gt; /var/log/gpu_fan.log
    exit 1
fi
PWM_PATH="${NCT_DIR}/pwm2"
PWM_EN="${PWM_PATH}_enable"

GPU_DIR=$(find_hwmon_by_name "amdgpu")
if [ -z "$GPU_DIR" ]; then
    echo "$(date): FATAL ERROR - Cannot find amdgpu hwmon module." &gt;&gt; /var/log/gpu_fan.log
    exit 1
fi
if [ -f "${GPU_DIR}/temp2_input" ]; then
    GPU_TEMP_PATH="${GPU_DIR}/temp2_input"
else
    GPU_TEMP_PATH="${GPU_DIR}/temp1_input"
fi

CPU_DIR=$(find_hwmon_by_name "coretemp")
if [ -z "$CPU_DIR" ] || [ ! -f "${CPU_DIR}/temp1_input" ]; then
    echo "$(date): FATAL ERROR - Cannot find CPU coretemp sensor." &gt;&gt; /var/log/gpu_fan.log
    exit 1
fi
CPU_TEMP_PATH="${CPU_DIR}/temp1_input"

# ---------------------------------------------------------
# 【模块 2：用户温控策略配置区】
# ---------------------------------------------------------
GPU_MIN_TEMP=50
GPU_MAX_TEMP=75
CPU_MIN_TEMP=55
CPU_MAX_TEMP=85

CRITICAL_TEMP=90
CRITICAL_PWM=255

FAN_MIN_PWM=40
FAN_MAX_PWM=200

CHECK_INTERVAL=5
PWM_DECAY_STEP=8    # 声学阻尼：降温时，单次最大允许降低的 PWM 步长。避免“转速跳水”
PWM_HYSTERESIS=5    # 迟滞死区：目标 PWM 变化绝对值 &lt;= 5 时无视变化。屏蔽 1~2℃ 的波动杂音
# ---------------------------------------------------------

LAST_PWM=-1
LOOP_COUNT=0

# ---------------------------------------------------------
# 【模块 3：安全兜底与进程退出机制】
# ---------------------------------------------------------
cleanup() {
    &lsqb;&lsqb; -f "${PWM_EN}" &rsqb;&rsqb; &amp;&amp; echo 0 &gt; "${PWM_EN}" 2&gt;/dev/null
    echo "$(date): Fan controller stopped, restore fan control to BIOS." &gt;&gt; /var/log/gpu_fan.log
    exit 0
}
trap cleanup SIGTERM SIGINT

if ! echo 1 &gt; "${PWM_EN}" 2&gt;/dev/null; then
    echo "$(date): FATAL ERROR - Open PWM enable failed, resource busy." &gt;&gt; /var/log/gpu_fan.log
    exit 1
fi

echo "$(date): Fan service start success | GPU source:${GPU_TEMP_PATH}" &gt;&gt; /var/log/gpu_fan.log

# ---------------------------------------------------------
# 【模块 4：常驻温控主循环】
# ---------------------------------------------------------
while true; do
    &lsqb;&lsqb; -f "${PWM_EN}" &rsqb;&rsqb; &amp;&amp; echo 1 &gt; "${PWM_EN}" 2&gt;/dev/null

    if [ -f "${GPU_TEMP_PATH}" ]; then
        GPU_RAW=$(cat "${GPU_TEMP_PATH}" 2&gt;/dev/null || echo 0)
        GPU_TEMP=$((GPU_RAW / 1000))
    else
        GPU_TEMP=0
    fi

    if [ -f "${CPU_TEMP_PATH}" ]; then
        CPU_RAW=$(cat "${CPU_TEMP_PATH}" 2&gt;/dev/null || echo 0)
        CPU_TEMP=$((CPU_RAW / 1000))
    else
        CPU_TEMP=0
    fi

    if [ "${CPU_TEMP}" -ge "${CRITICAL_TEMP}" ] || [ "${GPU_TEMP}" -ge "${CRITICAL_TEMP}" ]; then
        TARGET_PWM=${CRITICAL_PWM}
        DOMINANT="CRITICAL"
    else
        # [GPU 独立计算]
        if [ "${GPU_TEMP}" -le "${GPU_MIN_TEMP}" ]; then
            PWM_G=${FAN_MIN_PWM}
        elif [ "${GPU_TEMP}" -ge "${GPU_MAX_TEMP}" ]; then
            PWM_G=${FAN_MAX_PWM}
        else
            PWM_G=$(( (GPU_TEMP - GPU_MIN_TEMP) * (FAN_MAX_PWM - FAN_MIN_PWM) / (GPU_MAX_TEMP - GPU_MIN_TEMP) + FAN_MIN_PWM ))
        fi

        # [CPU 独立计算]
        if [ "${CPU_TEMP}" -le "${CPU_MIN_TEMP}" ]; then
            PWM_C=${FAN_MIN_PWM}
        elif [ "${CPU_TEMP}" -ge "${CPU_MAX_TEMP}" ]; then
            PWM_C=${FAN_MAX_PWM}
        else
            PWM_C=$(( (CPU_TEMP - CPU_MIN_TEMP) * (FAN_MAX_PWM - FAN_MIN_PWM) / (CPU_MAX_TEMP - CPU_MIN_TEMP) + FAN_MIN_PWM ))
        fi

        # [取高者原则]
        if [ "${PWM_C}" -gt "${PWM_G}" ]; then
            TARGET_PWM=${PWM_C}
            DOMINANT="CPU"
        else
            TARGET_PWM=${PWM_G}
            DOMINANT="GPU"
        fi

        # [迟滞死区过滤 Hysteresis / Deadband]
        if [ "${LAST_PWM}" -ne -1 ] &amp;&amp; [ "${DOMINANT}" != "CRITICAL" ]; then
            PWM_DIFF=$(( TARGET_PWM - LAST_PWM ))
            [ "${PWM_DIFF}" -lt 0 ] &amp;&amp; PWM_DIFF=$(( -PWM_DIFF )) # 纯净 Bash 取绝对值法
            
            # 如果变动幅度在迟滞死区内，强制锁定为上一次的转速
            if [ "${PWM_DIFF}" -le "${PWM_HYSTERESIS}" ]; then
                TARGET_PWM=${LAST_PWM}
            fi
        fi

        # [渐进降温阻尼过滤 Decay]
        if [ "${LAST_PWM}" -ne -1 ] &amp;&amp; [ "${TARGET_PWM}" -lt "${LAST_PWM}" ]; then
            CALC_DECAY=$((LAST_PWM - PWM_DECAY_STEP))
            if [ "${CALC_DECAY}" -gt "${TARGET_PWM}" ]; then
                TARGET_PWM=${CALC_DECAY}
            fi
        fi

        # [硬性边界钳位]
        ((TARGET_PWM &lt; FAN_MIN_PWM)) &amp;&amp; TARGET_PWM=${FAN_MIN_PWM}
        ((TARGET_PWM &gt; CRITICAL_PWM)) &amp;&amp; TARGET_PWM=${CRITICAL_PWM}
    fi

    # [执行硬件指令]
    if [ "${TARGET_PWM}" -ne "${LAST_PWM}" ]; then
        if echo "${TARGET_PWM}" &gt; "${PWM_PATH}" 2&gt;/dev/null; then
            LAST_PWM=${TARGET_PWM}
        else
            echo "$(date): WARN write PWM ${TARGET_PWM} failed" &gt;&gt; /var/log/gpu_fan.log
        fi
    fi

    if [ "${LOOP_COUNT}" -eq 0 ]; then
        echo "$(date '+%Y-%m-%d %H:%M:%S') | CPU:${CPU_TEMP}℃ | GPU:${GPU_TEMP}℃ | Source:${DOMINANT} | PWM:${TARGET_PWM}" &gt;&gt; /var/log/gpu_fan.log
    fi
    
    ((LOOP_COUNT=(LOOP_COUNT+1)%6))

    sleep "${CHECK_INTERVAL}"
done
EOF

sudo chmod +x /usr/local/bin/gpu_fan_control.sh

</code></pre>
<hr />
<h3>2. 生成 Systemd 守护进程与日志轮转配置</h3>
<pre><code class="language-bash"># 生成 Systemd 服务文件 (路径已精准对齐)
sudo cat &gt; /etc/systemd/system/gpu-fan-control.service &lt;&lt; 'EOF'
[Unit]
Description=NCT6793 CPU+GPU Smart Fan Controller
Requires=lm-sensors.service
After=lm-sensors.service multi-user.target

[Service]
Type=simple
ExecStart=/bin/bash /usr/local/bin/gpu_fan_control.sh
Restart=on-failure
RestartSec=3
StandardOutput=null
StandardError=journal

[Install]
WantedBy=multi-user.target
EOF

# 生成 Logrotate 日志清理规则
sudo cat &gt; /etc/logrotate.d/gpu-fan &lt;&lt; 'EOF'
/var/log/gpu_fan.log {
    daily
    rotate 7
    compress
    missingok
    copytruncate
    notifempty
}
EOF

</code></pre>
<hr />
<h3>3. 应用配置并启动服务</h3>
<h1>重载并启动全新的规范化服务</h1>
<p dir="auto">sudo systemctl daemon-reload<br />
sudo systemctl enable gpu-fan-control.service<br />
sudo systemctl restart gpu-fan-control.service<br />
sudo systemctl status gpu-fan-control.service</p>
<pre><code></code></pre>
]]></description><link>https://lcz.me/post/8940</link><guid isPermaLink="true">https://lcz.me/post/8940</guid><dc:creator><![CDATA[kenshin]]></dc:creator><pubDate>Wed, 01 Jul 2026 04:44:18 GMT</pubDate></item><item><title><![CDATA[Reply to 大热的3090风冷改造方案 大幅降温稳定AI大脑 on Wed, 01 Jul 2026 01:11:36 GMT]]></title><description><![CDATA[<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/kenshin" aria-label="Profile: kenshin">@<bdi>kenshin</bdi></a> <a href="/post/8904">说</a>:</p>
<p dir="auto">风道被打乱了。整机散热要考虑。风应该从散热片抽出。不是对着吹。</p>
</blockquote>
<p dir="auto">這個是局部風流, 只要機箱的風流方向一開始處理好就不會有問題</p>
<p dir="auto">吹出跟吹入分別不大</p>
]]></description><link>https://lcz.me/post/8928</link><guid isPermaLink="true">https://lcz.me/post/8928</guid><dc:creator><![CDATA[566656661]]></dc:creator><pubDate>Wed, 01 Jul 2026 01:11:36 GMT</pubDate></item><item><title><![CDATA[Reply to 大热的3090风冷改造方案 大幅降温稳定AI大脑 on Tue, 30 Jun 2026 15:40:06 GMT]]></title><description><![CDATA[<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/pangfat" aria-label="Profile: pangfat">@<bdi>pangfat</bdi></a> <a href="/post/8902">说</a>:</p>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/applejuice" aria-label="Profile: applejuice">@<bdi>applejuice</bdi></a> 你这是涡轮卡吧？靠得太近了，上面那个吸不到风，散热也就困难，我的PCIe间隔3-slot我都觉得太近。</p>
</blockquote>
<p dir="auto">之前插2slot nvlink 所以被逼这样</p>
<p dir="auto">但是nvlink遇到问题了<br />
寄回给 淘宝的华南金牌旗舰店，他们寄给供应商<br />
供应商说没问题<br />
但是 华南金牌旗舰店 自己测nvlink也是有问题<br />
还在扯皮</p>
<p dir="auto">如果再不回来我就要把第2张卡移下一格了</p>
]]></description><link>https://lcz.me/post/8906</link><guid isPermaLink="true">https://lcz.me/post/8906</guid><dc:creator><![CDATA[applejuice]]></dc:creator><pubDate>Tue, 30 Jun 2026 15:40:06 GMT</pubDate></item><item><title><![CDATA[Reply to 大热的3090风冷改造方案 大幅降温稳定AI大脑 on Tue, 30 Jun 2026 15:19:59 GMT]]></title><description><![CDATA[<p dir="auto">风道被打乱了。整机散热要考虑。风应该从散热片抽出。不是对着吹。另外，你们不做防尘吗？机器24小时开着。高贵的显卡很快集尘。多次拆了除尘增加风险。记得做好防尘。</p>
]]></description><link>https://lcz.me/post/8904</link><guid isPermaLink="true">https://lcz.me/post/8904</guid><dc:creator><![CDATA[kenshin]]></dc:creator><pubDate>Tue, 30 Jun 2026 15:19:59 GMT</pubDate></item><item><title><![CDATA[Reply to 大热的3090风冷改造方案 大幅降温稳定AI大脑 on Tue, 30 Jun 2026 14:46:54 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/applejuice" aria-label="Profile: applejuice">@<bdi>applejuice</bdi></a> 你这是涡轮卡吧？靠得太近了，上面那个吸不到风，散热也就困难，我的PCIe间隔3-slot我都觉得太近。</p>
]]></description><link>https://lcz.me/post/8902</link><guid isPermaLink="true">https://lcz.me/post/8902</guid><dc:creator><![CDATA[pangfat]]></dc:creator><pubDate>Tue, 30 Jun 2026 14:46:54 GMT</pubDate></item><item><title><![CDATA[Reply to 大热的3090风冷改造方案 大幅降温稳定AI大脑 on Tue, 30 Jun 2026 03:55:08 GMT]]></title><description><![CDATA[<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/mark" aria-label="Profile: mark">@<bdi>mark</bdi></a> <a href="/post/8820">说</a>:</p>
<p dir="auto">太牛了 . 加风扇的效果, 还不如 配空调, 我感觉 .</p>
</blockquote>
<p dir="auto">冷氣只是將周邊的空氣降溫, 硬件本體還是需要風扇帶來的氣流進行散熱</p>
]]></description><link>https://lcz.me/post/8823</link><guid isPermaLink="true">https://lcz.me/post/8823</guid><dc:creator><![CDATA[566656661]]></dc:creator><pubDate>Tue, 30 Jun 2026 03:55:08 GMT</pubDate></item><item><title><![CDATA[Reply to 大热的3090风冷改造方案 大幅降温稳定AI大脑 on Tue, 30 Jun 2026 03:21:30 GMT]]></title><description><![CDATA[<p dir="auto">太牛了 . 加风扇的效果, 还不如 配空调, 我感觉 .</p>
]]></description><link>https://lcz.me/post/8820</link><guid isPermaLink="true">https://lcz.me/post/8820</guid><dc:creator><![CDATA[mark]]></dc:creator><pubDate>Tue, 30 Jun 2026 03:21:30 GMT</pubDate></item><item><title><![CDATA[Reply to 大热的3090风冷改造方案 大幅降温稳定AI大脑 on Tue, 30 Jun 2026 00:49:15 GMT]]></title><description><![CDATA[<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/joker_chang" aria-label="Profile: joker_chang">@<bdi>joker_chang</bdi></a> <a href="/post/8351">说</a>:</p>
<p dir="auto">我的解决方案如下：</p>
</blockquote>
<p dir="auto">看你图片的意思，两把小风扇是往外吹风，相当于把里面的热风吸走，是这个原理吧？</p>
]]></description><link>https://lcz.me/post/8805</link><guid isPermaLink="true">https://lcz.me/post/8805</guid><dc:creator><![CDATA[张老师]]></dc:creator><pubDate>Tue, 30 Jun 2026 00:49:15 GMT</pubDate></item><item><title><![CDATA[Reply to 大热的3090风冷改造方案 大幅降温稳定AI大脑 on Mon, 29 Jun 2026 16:02:39 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/566656661" aria-label="Profile: 566656661">@<bdi>566656661</bdi></a><br />
谢谢，又学到一样东西，无意间提升处理速度，之前 170/it, 现在100/it</p>
]]></description><link>https://lcz.me/post/8791</link><guid isPermaLink="true">https://lcz.me/post/8791</guid><dc:creator><![CDATA[imbiplaza ASUS]]></dc:creator><pubDate>Mon, 29 Jun 2026 16:02:39 GMT</pubDate></item><item><title><![CDATA[Reply to 大热的3090风冷改造方案 大幅降温稳定AI大脑 on Mon, 29 Jun 2026 15:18:43 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/imbiplaza-asus" aria-label="Profile: imbiplaza-ASUS">@<bdi>imbiplaza-ASUS</bdi></a></p>
<p dir="auto">1.35其實算高了</p>
<p dir="auto">我DDR5 6400 也就是跑在1.3附近</p>
<p dir="auto">而且4條來説很難散熱, 建議用個小風扇吹著</p>
<p dir="auto">我上一間公司有試過因爲顯卡在機箱内排熱結果把内存給熱到當掉了</p>
<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/terry" aria-label="Profile: terry">@<bdi>terry</bdi></a> <a href="/post/8780">说</a>:</p>
<p dir="auto">这个内存条散热真的有用吗？会不会是反向效果</p>
</blockquote>
<p dir="auto">這個内存散熱外殼有用, 但是得必須依靠機箱風流或者CPU的風冷塔散才能發揮效果</p>
]]></description><link>https://lcz.me/post/8784</link><guid isPermaLink="true">https://lcz.me/post/8784</guid><dc:creator><![CDATA[566656661]]></dc:creator><pubDate>Mon, 29 Jun 2026 15:18:43 GMT</pubDate></item><item><title><![CDATA[Reply to 大热的3090风冷改造方案 大幅降温稳定AI大脑 on Mon, 29 Jun 2026 14:40:15 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/terry" aria-label="Profile: terry">@<bdi>terry</bdi></a><br />
暂时还没研究他的温度，不过摸起来烫手，不能超过三秒<br />
房里温度27。。。<br />
ddr4 3200, 默认电压1.35v, 主板自动电压1.21</p>
]]></description><link>https://lcz.me/post/8781</link><guid isPermaLink="true">https://lcz.me/post/8781</guid><dc:creator><![CDATA[imbiplaza ASUS]]></dc:creator><pubDate>Mon, 29 Jun 2026 14:40:15 GMT</pubDate></item><item><title><![CDATA[Reply to 大热的3090风冷改造方案 大幅降温稳定AI大脑 on Mon, 29 Jun 2026 14:33:21 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/imbiplaza-asus" aria-label="Profile: imbiplaza-ASUS">@<bdi>imbiplaza-ASUS</bdi></a> 这个内存条散热真的有用吗？会不会是反向效果？但是我买的二手条子也带这个东西，笔记本是没有的。</p>
]]></description><link>https://lcz.me/post/8780</link><guid isPermaLink="true">https://lcz.me/post/8780</guid><dc:creator><![CDATA[terry]]></dc:creator><pubDate>Mon, 29 Jun 2026 14:33:21 GMT</pubDate></item><item><title><![CDATA[Reply to 大热的3090风冷改造方案 大幅降温稳定AI大脑 on Mon, 29 Jun 2026 14:31:18 GMT]]></title><description><![CDATA[<p dir="auto">另外再买了64gb ，息机在拆装的时候，被ram烫到。。。。没想到ram可以那么热</p>
<p dir="auto"><img src="https://upload.lcz.me/uploads/38599d17-d91c-4fe7-8c14-7f77062c6bbf.jpeg" alt="WhatsApp Image 2026-06-29 at 6.06.36 PM.jpeg" class=" img-fluid img-markdown" /></p>
]]></description><link>https://lcz.me/post/8778</link><guid isPermaLink="true">https://lcz.me/post/8778</guid><dc:creator><![CDATA[imbiplaza ASUS]]></dc:creator><pubDate>Mon, 29 Jun 2026 14:31:18 GMT</pubDate></item><item><title><![CDATA[Reply to 大热的3090风冷改造方案 大幅降温稳定AI大脑 on Mon, 29 Jun 2026 01:04:47 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/williamlouis" aria-label="Profile: williamlouis">@<bdi>williamlouis</bdi></a> 我也想横着放 但是主板的散热甲，还有内存 都不允许我横过来  我也是找了半天对了半天 才把散热片怼上的</p>
]]></description><link>https://lcz.me/post/8708</link><guid isPermaLink="true">https://lcz.me/post/8708</guid><dc:creator><![CDATA[laihzang619]]></dc:creator><pubDate>Mon, 29 Jun 2026 01:04:47 GMT</pubDate></item><item><title><![CDATA[Reply to 大热的3090风冷改造方案 大幅降温稳定AI大脑 on Mon, 29 Jun 2026 00:34:36 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/johnnybegood" aria-label="Profile: johnnybegood">@<bdi>johnnybegood</bdi></a> 我的没啥噪音，我的3090Ti是多花钱买的三风扇版本</p>
<p dir="auto">毕竟机器就放在办公桌下（蹭公司的电费<img src="https://lcz.me/assets/plugins/nodebb-plugin-emoji/emoji/android/1f604.png?v=9a87c0a6150" class="not-responsive emoji emoji-android emoji--smile" style="height:23px;width:auto;vertical-align:middle" title="😄" alt="😄" />），涡轮太吵了。</p>
]]></description><link>https://lcz.me/post/8698</link><guid isPermaLink="true">https://lcz.me/post/8698</guid><dc:creator><![CDATA[joker_chang]]></dc:creator><pubDate>Mon, 29 Jun 2026 00:34:36 GMT</pubDate></item><item><title><![CDATA[Reply to 大热的3090风冷改造方案 大幅降温稳定AI大脑 on Sun, 28 Jun 2026 02:38:11 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/johnnybegood" aria-label="Profile: johnnybegood">@<bdi>johnnybegood</bdi></a> 看情况 多数人都放在独立空间</p>
]]></description><link>https://lcz.me/post/8606</link><guid isPermaLink="true">https://lcz.me/post/8606</guid><dc:creator><![CDATA[applejuice]]></dc:creator><pubDate>Sun, 28 Jun 2026 02:38:11 GMT</pubDate></item><item><title><![CDATA[Reply to 大热的3090风冷改造方案 大幅降温稳定AI大脑 on Sun, 28 Jun 2026 01:21:20 GMT]]></title><description><![CDATA[<p dir="auto">你们不怕噪音么？</p>
]]></description><link>https://lcz.me/post/8591</link><guid isPermaLink="true">https://lcz.me/post/8591</guid><dc:creator><![CDATA[johnnybegood]]></dc:creator><pubDate>Sun, 28 Jun 2026 01:21:20 GMT</pubDate></item><item><title><![CDATA[Reply to 大热的3090风冷改造方案 大幅降温稳定AI大脑 on Sat, 27 Jun 2026 08:26:49 GMT]]></title><description><![CDATA[<p dir="auto">原则上 空气不要对流。统一出气面（上方为优）。+CPU 2级排风=全部出气<br />
其他全部为进气即可。<br />
外部环境 通风即可。有空调更优，但是空调非决定性因素。</p>
]]></description><link>https://lcz.me/post/8502</link><guid isPermaLink="true">https://lcz.me/post/8502</guid><dc:creator><![CDATA[williamlouis]]></dc:creator><pubDate>Sat, 27 Jun 2026 08:26:49 GMT</pubDate></item><item><title><![CDATA[Reply to 大热的3090风冷改造方案 大幅降温稳定AI大脑 on Sat, 27 Jun 2026 13:10:44 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/joker_chang" aria-label="Profile: joker_chang">@<bdi>joker_chang</bdi></a></p>
<p dir="auto">z40? 我也用一样机箱 但是侧板装起来<br />
前面3个风扇抽风<br />
后面上面一个风扇排风<br />
里面两个风扇对准GPU</p>
<p dir="auto">但是我限制功率245w</p>
<p dir="auto">烤机5分钟<br />
gpu - 70c(fan 70%)  /74c  (fan 92%)<br />
vram - 82c/84c<br />
cpu - 47c</p>
<p dir="auto">我感觉我加了那么多风扇 cpu 收益最多<img src="https://lcz.me/assets/plugins/nodebb-plugin-emoji/emoji/android/1f606.png?v=9a87c0a6150" class="not-responsive emoji emoji-android emoji--laughing" style="height:23px;width:auto;vertical-align:middle" title=":laughing:" alt="😆" /></p>
<p dir="auto"><img src="https://upload.lcz.me/uploads/a4615b0e-4646-4c08-a1f7-d33975ab227a.jpeg" alt="7d7b0279-f31e-4928-94c2-0eed12a07e73-image.jpeg" class=" img-fluid img-markdown" /></p>
]]></description><link>https://lcz.me/post/8499</link><guid isPermaLink="true">https://lcz.me/post/8499</guid><dc:creator><![CDATA[applejuice]]></dc:creator><pubDate>Sat, 27 Jun 2026 13:10:44 GMT</pubDate></item><item><title><![CDATA[Reply to 大热的3090风冷改造方案 大幅降温稳定AI大脑 on Sat, 27 Jun 2026 08:12:18 GMT]]></title><description><![CDATA[<p dir="auto">你后加的散热片 横着放 更符合 空气流动。之后你把机箱挡板 安回去。尝试 cpu 2级引流扇就可以直接带动了。你这个暴力狂吹 不符合 散热规划。</p>
]]></description><link>https://lcz.me/post/8498</link><guid isPermaLink="true">https://lcz.me/post/8498</guid><dc:creator><![CDATA[williamlouis]]></dc:creator><pubDate>Sat, 27 Jun 2026 08:12:18 GMT</pubDate></item><item><title><![CDATA[Reply to 大热的3090风冷改造方案 大幅降温稳定AI大脑 on Fri, 26 Jun 2026 09:03:47 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/laihzang619" aria-label="Profile: laihzang619">@<bdi>laihzang619</bdi></a> 就是比较软，填充度很好，揉成球放上去都是可以的</p>
]]></description><link>https://lcz.me/post/8369</link><guid isPermaLink="true">https://lcz.me/post/8369</guid><dc:creator><![CDATA[九龙杨生]]></dc:creator><pubDate>Fri, 26 Jun 2026 09:03:47 GMT</pubDate></item><item><title><![CDATA[Reply to 大热的3090风冷改造方案 大幅降温稳定AI大脑 on Fri, 26 Jun 2026 07:10:03 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/%E4%B9%9D%E9%BE%99%E6%9D%A8%E7%94%9F" aria-label="Profile: 九龙杨生">@<bdi>九龙杨生</bdi></a> HD9000也用过太软了 已经有化了的了  感觉也就那么回事 。利民是硬 但是温度比原装垫子要好得多，就因为硬 没有化了的情况</p>
]]></description><link>https://lcz.me/post/8355</link><guid isPermaLink="true">https://lcz.me/post/8355</guid><dc:creator><![CDATA[laihzang619]]></dc:creator><pubDate>Fri, 26 Jun 2026 07:10:03 GMT</pubDate></item><item><title><![CDATA[Reply to 大热的3090风冷改造方案 大幅降温稳定AI大脑 on Fri, 26 Jun 2026 06:59:25 GMT]]></title><description><![CDATA[<p dir="auto">温度只要能压住 限制功耗干啥 限制功耗都是为了压温度用啊 反正放在机房里用</p>
]]></description><link>https://lcz.me/post/8354</link><guid isPermaLink="true">https://lcz.me/post/8354</guid><dc:creator><![CDATA[laihzang619]]></dc:creator><pubDate>Fri, 26 Jun 2026 06:59:25 GMT</pubDate></item><item><title><![CDATA[Reply to 大热的3090风冷改造方案 大幅降温稳定AI大脑 on Fri, 26 Jun 2026 06:52:31 GMT]]></title><description><![CDATA[<p dir="auto">你们都不限制功耗吗？ 不是说后面30%功耗只换来5%计算能力吗？</p>
]]></description><link>https://lcz.me/post/8353</link><guid isPermaLink="true">https://lcz.me/post/8353</guid><dc:creator><![CDATA[applejuice]]></dc:creator><pubDate>Fri, 26 Jun 2026 06:52:31 GMT</pubDate></item></channel></rss>