MacOS环境配置及使用技巧(待续)

使用终端通过SSH连接远程服务器

  1. 打开终端,输入sudo su -,回车,输入密码,切换到root用户
  2. 输入ssh -p 端口号 服务器用户名@ip(例如: ssh -p 22 [email protected]),回车输入yes
  3. 输入服务器用户的密码,回车
  4. 成功连接

SS代理加速git clone

设置代理
git config --global http.proxy socks5://127.0.0.1:1086
git config --global https.proxy socks5://127.0.0.1:1086
git config --global http.sslVerify false

取消代理
git config --global --unset http.proxy 
git config --global --unset https.proxy

安装Homebrew

先通过上一条语句为终端通过SS代理加速git clone

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

MAC安装JDK及环境变量配置

Finder调出文件路径输入框

comand+shift+G

安装Anaconda后打开终端报错

输入命令:

cd ~
vi .bash_profile

发现是因为命令和注释之间没有空格,系统未识别出是注释

如下修改即可

重新打开终端,一切正常

强制退出应用

option + command + esc

你可能感兴趣的:(MacOS环境配置及使用技巧(待续))