/dotfiles

Primary LanguageVim scriptMIT LicenseMIT

dotfiles


解决 ssh 频繁断连

在 Server 端:

# 打开
sudo vim /etc/ssh/sshd_config
# 添加
ClientAliveInterval 30
ClientAliveCountMax 6

iterm2终端: profiles -> sessions -> 勾选 When idel, send ASCII code

在 Client 端: 新建 ~/.ssh/config 文件,加入一行

ServerAliveInterval 60

SSH key authentication

 ssh-copy-id -i $HOME/.ssh/id_rsa.pub USER@192.168.1.198

docker pull images 加速

方式比较多

  1. https://docs.docker.com/registry/recipes/mirror/
  2. DaoCloud加速器 免费注册DaoCloud 账号,进入加速器页面 按照提示操作,对于MacOS 打开顶部 docker图标-->Preferences-->Daemon-->Registry mirrors 添加加速器 url,然后 restart docker img01 img02
  3. Http 代理
  4. 阿里云

删除 mac os app 的数据

rm -rf ~/Library/Cache/<app package name>
rm -rf ~/Library/Saved\ Application\ State/<app package name>
rm -rf ~/Library/Application\ Support/<app package name>