-bash: lsof: command not found
时间: 2023-11-22 20:44:42 浏览: 176
Linux -bash: ls: command not found
这是一个错误提示,可能是因为您的系统中没有安装 lsof 工具。lsof 是一个用于列出当前系统打开的文件的工具,您可以通过安装它来解决这个问题。如果您使用的是 Ubuntu 系统,可以通过以下命令安装:
```
sudo apt-get install lsof
```
如果您使用的是 CentOS 系统,可以通过以下命令安装:
```
sudo yum install lsof
```
如果您使用的是 macOS 系统,可以通过以下命令安装:
```
brew install lsof
```
阅读全文