bash: screen: command not found
时间: 2023-10-23 09:11:38 浏览: 145
Linux -bash: ls: command not found
这个错误提示表明您的系统中没有安装 screen 命令。您可以通过以下命令安装 screen:
对于 Ubuntu 系统:
```
sudo apt-get update
sudo apt-get install screen
```
对于 CentOS 系统:
```
sudo yum install screen
```
阅读全文