homebrew的安装与使用

homebrew是mac下非常不错的包管理软件,类似centos下的yum吧,下面说说他的安装及基础使用。

一、安装homebrew

二、配置homebrew

2.1 修改homebrew镜像

默认的,homebrew是使用github作为代码源,同步的时候会比较慢,所以就有了备选方案 - 使用USTC提供的homebrew镜像。具体操作可以看这篇文章《替换及重置Homebrew默认源》

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
替换brew.git:
cd "$(brew --repo)"
git remote set-url origin https://mirrors.ustc.edu.cn/brew.git
替换homebrew-core.git:
cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
git remote set-url origin https://mirrors.ustc.edu.cn/homebrew-core.git
重置brew.git:
cd "$(brew --repo)"
git remote set-url origin https://github.com/Homebrew/brew.git
重置homebrew-core.git:
cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
git remote set-url origin https://github.com/Homebrew/homebrew-core.git

三、常用homebrew工具

  • brew install inetutils: inetutils里面包含ftp工具,具体可以看一看GNU软件包列表,里面介绍了inetutils网络工具组包含了ftp,telnet,rsh,rlogin,tftp。所以,mac只要安装inetutils就可以了。