原因:raw.githubusercontent.com 无法访问
- 通过该地址,查看可以访问的IP地址 site.ip138.com
- 设置hosts
sudo vi /etc/hosts
例如填入如下内容:
182.43.124.6 raw.githubusercontent.com
原因:raw.githubusercontent.com 无法访问
sudo vi /etc/hosts
例如填入如下内容:
182.43.124.6 raw.githubusercontent.com
mac catalina 通过homebrew 安装 openssl 失败,被嫌弃系统太老,make test 测试不通过
I manually installed openssl@3 with the following commands
注意:brew安装软件时,看他下载的是什么版本,就手动下载什么版本
下载地址:
https://www.openssl.org/source/openssl-3.3.0.tar.gz
进入解压的目录,执行命令
sudo rm -rf /usr/local/{bin/{node,npm},lib/node_modules/npm,lib/node,share/man/*/node.*}
brew update
brew install node@16
MacOS某些应用在卸载后,会有图标残留在启动台,无法删除,应用也无法打开,看着很膈应人。本文记录一下常规的残留文件清理和真正的图标清理。
该步骤不是清理残留图标的,仅仅是清除残留文件,不需要的可跳过该步骤。
MacOS下修改终端日期格式与Linux不同,主要原因是MacOS下的ls命令与Linux的ls程序不同,所以设置方式不一样。
编辑 .bashrc 或 .zshrc文件
vi ~/.zshrc
添加如下内容:
export TIME_STYLE= ' +%Y-%m-%d %H:%M:%S '