使用keychain实现免密码登录 | | Visitors 配置 SSH 免密码登陆生成 SSH 密码12345// 生成的秘钥是有密码加密的ssh-keygen -qEnter file in which to save the key (/home/charlie/.ssh/id_rsa):Enter passphrase (empty for no p ... Read more »
更改SSH Key密码 | | Visitors 通过 ssh-keygen 生成带有密码的私钥文件,当想要更改密码,可以通过下面方式更改密码或者将密码置为空。 使用 ssh-keygen 12ssh-keygen -f id_rsa -p 使用 openssl1openssl rsa -in ~/.ssh/id_rsa -out ~/.ss ... Read more »
使用zsh作为默认shell | | Visitors 号称终极 Shell 的 Zsh 兼容 Bash,在命令补全方面有很好的体验,丰富的插件和主题可提供使用,配合 Oh-my-zsh 更加强大。 Linux 系统一般预装几种 Shell,系统默认的 Shell 是 Bash,安装前可以查看系统安装了哪些 Shell 1cat /etc/shells ... Read more »