虚拟机输sudo apt-get install openssh-server出现sudo: apt-get: command not found
时间: 2023-11-14 18:12:09 浏览: 162
这个错误提示表明你的虚拟机中没有安装apt-get命令,而这个命令是用于Ubuntu系统中安装软件包的。你需要先安装apt-get命令,然后再执行sudo apt-get install openssh-server命令来安装openssh-server。你可以按照以下步骤来安装apt-get命令:
1. 打开终端并输入sudo apt update命令来更新软件包列表。
2. 输入sudo apt install apt命令来安装apt-get命令。
3. 安装完成后,再次执行sudo apt-get install openssh-server命令来安装openssh-server。
相关问题
linux虚拟机输sudo apt-get install openssh-server出现sudo: apt-get: command not found
这个错误提示表明你的Linux虚拟机中没有安装apt-get命令,而这个命令是用于安装软件包的。你需要先安装apt-get命令,然后再执行sudo apt-get install openssh-server命令来安装openssh-server软件包。你可以按照以下步骤来解决这个问题:
1. 执行sudo apt update命令来更新软件包列表。
2. 执行sudo apt install apt命令来安装apt-get命令。
3. 安装openssh-server软件包,执行sudo apt-get install openssh-server或sudo apt install openssh-server命令。
在Oracle VM VirtualBox中的Linux安装openssh-server时输入sudo apt-get install openssh-server命令,但显示sudo: apt-get: command not found 怎么办
这个错误提示是因为 Ubuntu 操作系统默认的 shell 是 bash,而 apt-get 命令是 Linux 系统中用来安装和管理软件包的工具,需要在bash环境下使用。有可能是由于系统没有安装 apt-get 工具而导致该错误。建议用以下步骤检查和解决问题:
1. 确认系统支持sudo命令,运行如下命令即可:
```
sudo echo "test"
```
如果提示输入密码,则表示 sudo 命令可用,如果您输入密码后没有回应,可以按下 Ctrl+C 终止。
2. 确认系统已安装 apt-get 命令。运行如下命令:
```
which apt-get
```
如果没有输出结果,则表示系统未安装 apt-get 命令,需要通过以下命令安装 apt-get :
```
sudo apt install apt-get
```
3. 如果 apt-get 命令已经安装,并且还是遇到 apt-get: command not found 的问题,则可以尝试更新 apt-get,并执行如下命令:
```
sudo apt-get update
sudo apt-get install --reinstall apt
```
4. 如果仍然有类似问题,您可以尝试运行以下命令来更新软件包索引:
```
sudo apt-get update
```
然后再尝试输入 sudo apt-get install openssh-server 命令进行 openssh-server 安装,相信问题会得到解决。
阅读全文