赞
踩
问题:FinalShell
SSH
连接(Linus)
超时
解决:安装openssh-server
,关闭防火墙
安装步骤:
sudo apt-get install openssh-client
sudo apt-get install openssh-service
出现问题:在ubuntu
下安装openssh-service
时一直显示 E: 无法定位软件包 openssh-service
解决:
如果你用的是redhat
,fedora
,centos
等系列linux
发行版,那么敲入以下命令:
sudo yum install sshd
# 或
sudo yum install openssh-server
如果你使用的是debian
,ubuntu
,linux mint
等系列的linux
发行版,那么敲入以下命令:
sudo apt-get install sshd
# 或
sudo apt-get install openssh-server
重新输入:sudo apt-get install openssh-service
sudo service ssh start
然后可以查看ssh服务是否开启成功。
sudo ps -e | grep ssh
然后要远程登陆,可以查看用ipconfig
查看地址,如果出现command not found
,则说明没有安装这个包。
sudo apt install net-tools
apt-get install
与apt install
的区别前者是老版的用法,后者是新版的用法。apt
与apt-get
有一些类似的命令选项,但是apt
并不能向下兼容apt-get
。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。