macOS 查看 WiFi 密码
打开 钥匙串访问 这个应用
打开 钥匙串访问 这个应用
首先安装 lisp 解释器:
苹果系统macosx的spotligh搜索功能很便捷让我们很快可以搜出自己想要的文件,应用等。
今天在用 youtube-dl 下载一个 youtube 视频转成 mp3 的时候,报错:
ffprobe/avprobe and ffmpeg/avconv not found. Please install one
这是因为缺少视频处理的库。
brew install ffmpeg
sudo apt-get install ffmpeg
PS: 确保你的 youtube-dl 是最新的版本。
直接上脚本:
# 将默认命令设为 bash
chsh -s /bin/bash
# 将默认shell更改回Zsh:
chsh -s /bin/zsh
# 查看可以选择的 shell 列表:
cat /etc/shells
删除 macOS 下的user以后,清倒废纸篓,提示 “voicetrigger” 在使用中。
处理好后,再开启SIP服务。
今天突然发现应用报错:
MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.
这个问题是因为 AccessClient 长期不更新导致的。
闪退的原因:苹果在 macOS 12.3 中将系统中的 python2 运行库移除了,导致 AccessClient 执行时找不到 python。
由于需要测试一个很老的软件,需要在 macOS 上的 /home 目录下创建一个目录,结果报错 Operation not supported。
其实这是 macOS 的安全模块限制的。
解决方案就是关闭这个限制,方法如下:
编辑 /etc/auto_master 文件,将下面这行注释掉:
然后执行 sudo automount 命令重载一下配置即可。