centos7中ioctl: command not found
时间: 2023-09-03 16:12:05 浏览: 75
linux下ioctl函数
`ioctl` 是一个系统调用程序,可以在 C 语言中使用,而不是一个独立的命令。如果你想在命令行中使用 `ioctl` 命令,可以使用 `hdparm` 或者 `sg3_utils` 工具。
如果你想在 C 语言程序中使用 `ioctl`,需要包含 `<sys/ioctl.h>` 头文件,并且链接 `-lioctl` 库。
如果你确定需要使用 `ioctl` 命令,可以通过以下命令安装 `sg3_utils`:
```
sudo yum install sg3_utils
```
安装完成后,就可以使用 `sg_raw` 命令发送 SCSI 命令了。
阅读全文