MAC 遇到的问题汇总
mac 环境下安装软件,类库问题
比如安装
brew install erlang
出现:
==> Downloading https://mirrors.ustc.edu.cn/homebrew-bottles/bottles/erlang-24.2.arm64_monterey.bottle.tar.gz
curl: (22) The requested URL returned error: 404
Warning: Bottle missing, falling back to the default domain...
解决办法: 执行以下命令
brew update
说明: 由于安装包版本变动, 需要本地的源更新到最新版.
mac 环境下支持ll命令
cd
vim .bash_profile
#添加以下内容
alias ll='ls -alF'
alias la='ls -A'
alias l='ls -CF'
source .bash_profile
#重启终端自动生效
vi ~/.zshrc
#增加
source ~/.bash_profile
mac 使用SecureCRT 连接localhsot
- 菜单栏点击 option
- 选择 Edit Default Session
- 找到 SSH2
- 找到 key exchange
- 选中所有以 diffie-hellman 打头的项
- 完成