Ubuntu 16.04 LTS中没有.ssh文件,该如何解决呢?

简介: 这是因为没有安装ssh软件。1.安装。  sudo apt install openssh-server  或者  sudo apt-get install openssh-server2.启动ssh。

这是因为没有安装ssh软件。

1.安装。

  sudo apt install openssh-server  或者  sudo apt-get install openssh-server

2.启动ssh。

  sudo /etc/init.d/ssh resart 

3.确认 ssh-server 是否启动。

  ps -e | grep ssh

  如果只有 ssh-agent 那说明 ssh-server 还没有启动,需要 sudo /etc/init.d/ssh start,如果看到sshd那说明ssh-server已经启动了。

4.创建私钥,用于远程登录时的免密码登录(即:只要有一次输入密码登录成功后,下次登录时就不需要再输入密码就可以直接登录了)。

  ssh-keygen

  该步骤,会生成两个文件,id_rsa(私钥)id_rsa.pub(公钥)

操作如下图所示:

chen@ubuntu:~$ sudo apt install openssh-server
[sudo] chen 的密码: 
正在读取软件包列表... 完成
正在分析软件包的依赖关系树       
正在读取状态信息... 完成       
openssh-server 已经是最新版 (1:7.2p2-4ubuntu2.4)。
升级了 0 个软件包,新安装了 0 个软件包,要卸载 0 个软件包,有 2 个软件包未被升级。
chen@ubuntu:~$ sudo /etc/init.d/ssh restart 
[ ok ] Restarting ssh (via systemctl): ssh.service.
chen@ubuntu:~$ ps -e | grep ssh
  1884 ?        00:00:00 ssh-agent
  5936 ?        00:00:00 sshd
chen@ubuntu:~$ ssh-keygen 
Generating public/private rsa key pair.
Enter file in which to save the key (/home/chen/.ssh/id_rsa): 
Created directory '/home/chen/.ssh'.
Enter passphrase (empty for no passphrase): 
Enter same passphrase again: 
Your identification has been saved in /home/chen/.ssh/id_rsa.
Your public key has been saved in /home/chen/.ssh/id_rsa.pub.
The key fingerprint is:
SHA256:oynEdTWEUxfMmG1/c1tBFW7krVgdP+LZ2XtcRaPcgQQ chen@ubuntu
The key's randomart image is:
+---[RSA 2048]----+
|         +=E=ooB=|
|        o.oo*.*+*|
|      . .. . =.**|
|   . . .    .o*oO|
|    o   S   .o.+B|
|   .   o .     oo|
|    . o        .o|
|     .          .|
|                 |
+----[SHA256]-----+
chen@ubuntu:~$ 

 

我的GitHub地址: https://github.com/heizemingjun
我的博客园地址: http://www.cnblogs.com/chenmingjun
我的蚂蚁笔记博客地址: http://blog.leanote.com/chenmingjun
Copyright ©2018 黑泽明军
【转载文章务必保留出处和署名,谢谢!】
相关文章
|
4月前
|
Ubuntu Shell 网络安全
安装了ubuntu虚拟机后发现shell无法连接 ubuntu开启ssh连接
【8月更文挑战第23天】安装了ubuntu虚拟机后发现shell无法连接
349 6
|
13天前
|
网络协议 Ubuntu Linux
解决ssh: connect to host IP port 22: Connection timed out报错(scp传文件指定端口)
解决 `ssh: connect to host IP port 22: Connection timed out` 报错涉及检查 SSH 服务状态、防火墙配置、网络连通性和主机名解析等多个方面。通过逐步排查上述问题,并在 `scp` 命令中正确指定端口,可以有效解决连接超时的问题,确保文件传输的顺利进行。希望本文提供的解决方案能帮助您快速定位并解决该错误。
39 3
|
18天前
|
运维 网络安全
解决ssh: connect to host IP port 22: Connection timed out报错(scp传文件指定端口)
通过这些步骤和方法,您可以有效解决“ssh: connect to host IP port 22: Connection timed out”问题,并顺利使用 `scp`命令传输文件。
96 7
|
4月前
|
Ubuntu 网络安全 数据安全/隐私保护
如何在 Ubuntu 上创建一个 SSH CA 以验证主机和客户端
如何在 Ubuntu 上创建一个 SSH CA 以验证主机和客户端
92 0
|
29天前
|
Ubuntu 网络协议 关系型数据库
超聚变服务器2288H V6使用 iBMC 安装 Ubuntu Server 24.04 LTS及后续系统配置
【11月更文挑战第15天】本文档详细介绍了如何使用iBMC在超聚变服务器2288H V6上安装Ubuntu Server 24.04 LTS,包括连接iBMC管理口、登录iBMC管理界面、配置RAID、安装系统以及后续系统配置等步骤。
|
1月前
|
Ubuntu Linux 网络安全
Ubuntu 22.04 LTS有哪些新特性
Ubuntu 22.04 LTS有哪些新特性
|
2月前
|
程序员 网络安全 开发工具
读书|通过 SSH & SFTP 管理 Kindle 上的文件
这是这个系列的第三篇文章,介绍我如何通过 SSH & SFTP 管理 Kindle 上的文件。
50 3
|
2月前
|
Web App开发 Ubuntu 前端开发
【踩坑记】Ubuntu 20.04.6 LTS下编译安装gcc 4.4.0
【踩坑记】Ubuntu 20.04.6 LTS下编译安装gcc 4.4.0
|
2月前
|
网络安全
Ubuntu14.04安装ssh服务器
Ubuntu14.04安装ssh服务器
57 0
|
4月前
|
Ubuntu 开发者 Python
下一篇
DataWorks