一些小技巧
重置 DNS 缓存
打开终端,输入如下命令来重置 DNS 缓存,适用于 macOS 10.15 至 14.x:
1
| sudo killall -HUP mDNSResponder; sudo dscacheutil -flushcache
|
重新配置 power10k
重装mac制作U盘
1 2 3 4 5
| // 查看挂载了哪些盘 ls /volumes
// 找到对应的路径 可以 tab 补全 /volumes/<U盘名>/Install\ macOS\ <对应的系统>.app/Contents/MacOS/InstallAssistant
|
清除更新标记(数字角标)
如果已经检测到更新,App Store 图标上出现红点数字,打开终端执行如下命令可以清除:
1 2 3
| defaults write com.apple.appstored.plist BadgeCount 0
Killall Dock
|
App Store 左侧的更新条目通知也会清空。
Mac电脑窗口拖动
1 2 3
| defaults write -g NSWindowShouldDragOnGesture -bool true
defaults write -g NSWindowShouldDragOnGesture -bool false
|