mac 软件包管理工具 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 brew install #[包名] 安装包。 brew uninstall #[包名] 卸载包。 brew search #[包名] 查询包。 brew list #列出已安装的软件。 brew update
环境变量文件存储位置 1 2 3 4 5 6 > /etc/paths (全局建议修改这个文件 ) > /etc/profile (建议不修改这个文件 ) > /etc/bashrc (一般在这个文件中添加系统级环境变量) > ~/.profile 文件为系
shell 常用命令 1 2 3 4 5 more /etc/shells # 查查有多少个shell echo $SHELL # 查看当前shell chsh -s /bin/bash # 切换到 bash chsh -s /bin/zsh # 切换到zsh chsh -s /usr/local/bin/fish #切换到fish
ssh 免密登录配置 生成公钥秘钥对 1 ssh-keygen -t rsa -b 4096 -C "telzhou618@qq.com" 在文件在 ~/.ssh 文件夹下,会生成两个文件id_rsa是私钥,id_rsa.pub是公钥。 2. 使用ssh复
安装最新 git安装在最新yum源,ius源官方:https://ius.io/setup 1 2 3 yum install \ https://repo.ius.io/ius-release-el7.rpm \ https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm 安装 git 1 2 3 yum remove git yum install -y git236 git --version ssh-gen 命