linux -bash: ipconfig: command not found
时间: 2023-12-16 07:27:17 浏览: 189
根据提供的引用内容,正确的命令应该是ifconfig而不是ipconfig。因为ipconfig是Windows系统中查看IP地址的命令,而ifconfig是Linux系统中查看IP地址的命令。因此,正确的命令应该是:
```shell
ifconfig
```
如果在执行该命令时出现“Command 'ifconfig' not found”的错误提示,可能是因为ifconfig命令没有安装。可以通过以下命令安装ifconfig:
```shell
sudo apt-get install net-tools
```
安装完成后,再次执行ifconfig命令即可查看IP地址。
相关问题
-bash: nslookup: command not found
在Linux下输入nslookup,会出现-bash: nslookup: command not found的错误提示。这是因为一些Linux系统默认没有安装nslookup命令。可以通过安装bind-utils软件包来解决这个问题。在终端中输入命令yum -y install bind-utils即可安装该软件包,安装完成后就可以使用nslookup命令查询本机域名解析情况了。
-bash: md: command not found
-bash: md: command not found 是因为在bash中使用了md命令,但是系统没有找到该命令。在Linux和Unix系统中,创建目录的命令是mkdir而不是md。所以正确的命令应该是mkdir。
如果你想在bash中创建一个新的目录,可以使用以下命令:
```
mkdir directory_name
```
其中directory_name是你想要创建的目录的名称。
阅读全文