MacOS 控制固态磁盘写入量,设置定时任务监控

M1 芯片的内存交换策略非常激进,导致 内存较小的机型 固态硬盘写入量十分恐怖,网上很多人都有类似的遭遇。

如何看待 8G 256G M1 MacBook Air 使用一个月硬盘写入 22TB+?

而固态硬盘是有擦除、写入寿命的,一般就按100次算,256G 大概就是 250TB。当然,并不是说超过这个数,硬盘就坏了,只是一般超过这个数,再坏,厂商就不包了。具体不同型号、不同厂商也会给不同的 TBW (Total Bytes Written)

查询磁盘写入量

  1. 安装磁盘工具smartmontools:
bash 复制代码
brew install smartmontools
bash 复制代码
smartctl -a disk0

Data Units Written 就是磁盘写入量,10个月左右的写入量 39 T

plaintext 复制代码
=== START OF SMART DATA SECTION ===
SMART overall-health self-assessment test result: PASSED

SMART/Health Information (NVMe Log 0x02)
Critical Warning:                   0x00
Temperature:                        34 Celsius
Available Spare:                    100%
Available Spare Threshold:          99%
Percentage Used:                    2%
Data Units Read:                    127,486,481 [65.2 TB]
Data Units Written:                 76,316,904 [39.0 TB]
Host Read Commands:                 1,790,447,762
Host Write Commands:                694,652,609
Controller Busy Time:               0
Power Cycles:                       197
Power On Hours:                     934
Unsafe Shutdowns:                   8
Media and Data Integrity Errors:    0
Error Information Log Entries:      0

设置定时任务监控磁盘写入量

写一个 python 脚本 smart-daily.py,放在合适的位置,log 的目录,自己看着改。

chmod+x smart-daily.py 添加执行权限。第一行不能删,否则不能直接 smart-daily.py 执行。

python 复制代码
#!/usr/bin/env python
import os
import time
import re

command_result = os.popen("smartctl -a disk0").read()
lines = command_result.splitlines()

for line in lines:
    if line.find("Data Units Written") != -1:
        # print(line)
        start_index = re.search(r"\d", line).start()
        line = line[start_index:]
        with open('DataWritten.log', mode='a', encoding='utf-8') as f:
            f.write(time.strftime("%Y-%m-%d %H:%M:%S: ",
                    time.localtime()) + line + "\n")

定时任务的设置参考:mac 定时执行python脚本

如何减少磁盘写入量?

根本的办法是加钱买更大内存,此外,以下几种方法

注意保护

实测一段时间,上面的方法都一般,无法根治这个问题,我也是买之前没做足功课,入手了丐版 8+256 Macbook,日常就是用用 Edge,IDEA,Pycharm,不到一年时间固态写了将近40T。

只能自己没事多留心,别同时开太多吃内存的软件,用不到的软件就 Command+Q 。

外接固态

外接一个固态硬盘,下载的东西都直接存入固态中,但对正常用户来说,这并不是磁盘写入量的罪魁祸首。

减小 WindowServer 内存占用

占用过多mac内存的WindowServer是什么

关闭虚拟内存

即使关闭了虚拟内存,也不会影响系统稳定性,因为超过阈值又会继续使用虚拟内存,其实效果并不是很好,开个 IDEA 内存就飚起来了。但关闭后就可以在没必要的情况下不去使用虚拟内存。

M1关闭虚拟内存(交换内存 swap memory) 防止SSD磨损

关闭 Spotlight 索引

https://www.v2ex.com/t/874851

但直接关闭索引对正常使用太影响了,比较折中的办法是设置一个 crontab 定时任务,每天允许 Spotlight 索引一个小时。

Disable spotlight indexing on macOS to heavily speed up Virtual Instances.
# massively increase virtualized macOS by disabling spotlight.
sudo mdutil -i off -a

# since you can't use spotlight to find apps, you can renable with
# sudo mdutil -i on -a
相关推荐
清风细雨_林木木3 小时前
Mac 清理缓存,提高内存空间
macos·缓存
Macdo_cn3 小时前
Screen Wonders for Mac v3.3.1 3D屏保应用 支持M、Intel芯片
macos·音视频
秋窗719 小时前
Mac下Python版本管理,适用于pyenv不起作用的情况
开发语言·python·macos
獨枭1 天前
如何在 macOS 上配置 MySQL 环境变量
数据库·mysql·macos
清风细雨_林木木1 天前
解决 Mac 只显示文件大小,不显示目录大小
macos
9144062321 天前
xcode打包导出ipa
ide·macos·xcode
天荒地老笑话么2 天前
Mac安装配置Tomcat 8
java·macos·tomcat
自娱自乐222 天前
mac下使用webstorm监听less文件自动生成wxss文件
macos·less·webstorm
一只往上爬的蜗牛2 天前
【DeepSeek】Mac m1电脑部署DeepSeek
macos·deepseek
小羊在奋斗2 天前
【Linux】认识协议、Mac/IP地址和端口号、网络字节序、socket套接字
linux·网络·macos