在MAC上用parallels desktop安装Ubuntu 17.10系统,本来觉得会和安装CentOS一样方便谁知道,我用的是secureCRT进行远程链接!出现了问多问题!
问题一:Refuse Connction
这里是配置文件出了差错!
具体可以参考该博文:http://blog.csdn.net/hailin0716/article/details/17582421
1、安装SSH服务。
输入:sudo apt-get install openssh-server
2、启动SSH
输入:sudo /etc/init.d/ssh start
3、配置文件ssh_config
输入:gedit /etc/ssh/ssh_config
去掉 PasswordAuthenitcation, Port 22 ,Protocol 2,1这三行前的注释#
注: ubuntu12.04里没有permitrootlogin之类的东西
5、重启一下系统
问题二:Password Authentication Failed,Please verify that the username and password are correct.
sshd_config文件出了问题!
参考博文:http://www.linuxidc.com/Linux/2015-03/114579.htm
解决办法
1、在虚拟机终端使用root帐号登录,编辑/etc/ssh/sshd_config文件
vi /etc/ssh/sshd_config
2、找到Authentication配置部分,将PermitRootLogin without-password修改为PermitRootLogin yes,然后保存。
# Authentication:
LoginGraceTime 120
#PermitRootLogin without-password
PermitRootLogin yes
StrictModes yes
说明:sshd_config是ssh的配置文件,其中有一个选项 PermitRootLogin 用来配置是否允许root用户登录,默认的without-password表示不允许使用密码进行全登录认证,yes则是允许root登录。
3、重启ssh服务,既可以通过SercureCRT正常连接服务器
service ssh restart
问题三:Ubuntu 17.10 sudo apt-get / apt install 不能用
参考博文:http://www.linuxidc.com/Linux/2014-06/103437.htm
我用的是执行这条命令:
sudo dpkg --configure -a
问题四:SecureCRT 开启高亮
参考博文:http://blog.csdn.net/u013704227/article/details/53678428?utm_source=itdadao&utm_medium=referral
以此设置:
Options -> Session Options -> Emulation (Terminal)
其中Terminal选择 【ANSI】,勾选【ANSI Color】和【Use color schema】
然后就配置成功了!
最后感谢感谢师兄,生病时候的陪伴!
这个mac的截图上不了我也是的醉了!
2018一切安好!