修改用户名
https://www.imtqy.com/amp/modify-username-root.html
安装goland远程工具https://blog.csdn.net/qq_35976351/article/details/101374061
lsof -i:端口号命令行
https://blog.csdn.net/xue_hua_king/article/details/86480236
照着这个流程走基本上是对的,但是有一个小问题,我的goland一直链接不上本地,要修改
vim /etc/ssh/sshd_config
修改: #PasswordAuthentication yes 为: PasswordAuthentication yes
修改: PermitRootLogin prohibit-password 为: PermitRootLogin yes
允许root直接登录
goland配置terminal
https://www.cnblogs.com/X-knight/p/10758149.html
• 在 ${user} 这目录下创建两个文件:
• .bash_profile
• .bashrc
• 例如:【C:\Users\John】,文件内容如下:
• .bash_profile
if [ -f ~/.bashrc ]; then . ~/.bashrc; fi
• .bashrc
alias ls='ls -F --color=auto --show-control-chars' # 使用ls命令的时候加上颜色
export LC_ALL=zh_CN.UTF-8 # 设置终端打开的编码
alias ll='ls -la -F --color=auto --show-control-chars'
• 重启 terminal 即可使用 bash.exe 命令
这是避免乱码以及外观问题
网友评论