whoru

学习、分享、交流、沉淀

推荐直接使用一键切换脚本:一键切换brew国内镜像源

1. 基本镜像 formula

1.1. 替换

1
2
3
4
5
6
7
# 参见官网:https://mirror.tuna.tsinghua.edu.cn/help/homebrew
➜ git -C "$(brew --repo)" remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git
➜ git -C "$(brew --repo homebrew/core)" remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.git
➜ git -C "$(brew --repo homebrew/cask)" remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-cask.git

# 更新
➜ brew update

1.2. 还原

1
2
3
4
5
➜  git -C "$(brew --repo)" remote set-url origin https://github.com/Homebrew/brew.git
➜ git -C "$(brew --repo homebrew/core)" remote set-url origin https://github.com/Homebrew/homebrew-core.git
➜ git -C "$(brew --repo homebrew/cask)" remote set-url origin https://github.com/Homebrew/homebrew-cask.git

➜ brew update

2. 二进制预编译包 bottles

1
2
3
4
# 参见官网:https://mirrors.tuna.tsinghua.edu.cn/help/homebrew-bottles
# 如果你使用的不是 zsh,则替换 .zshrc 为 .bash_profile 或对应的文件
echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.tuna.tsinghua.edu.cn/homebrew-bottles' >> ~/.zshrc
source ~/.zshrc

Tmux 就是会话与窗口的“解绑”工具:

  1. 它允许在单个窗口中,同时访问多个会话。这对于同时运行多个命令行程序很有用。

  2. 它可以让新窗口”接入”已经存在的会话。

  3. 它允许每个会话有多个连接窗口,因此可以多人实时共享会话。

  4. 它还支持窗口任意的垂直和水平拆分。

类似的终端复用器还有 GNU Screen。Tmux 与它功能相似,但是更易用,也更强大。

本文只介绍基本配置和使用,关于 tmux 的更多内容,可参考:

阅读全文 »