Skip to main content

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

  1. 菜单栏点击 option
  2. 选择 Edit Default Session
  3. 找到 SSH2
  4. 找到 key exchange
  5. 选中所有以 diffie-hellman 打头的项
  6. 完成