mknod 命令
用于创建一个设备文件,即特殊文件。
选项:
-m:创建后设备文件的访问权限;
b创建块(缓冲)特殊文件
c,u创建字符(未缓冲)特殊文件
p 创建FIFO
实例:
[root@itxuezhe ~]# mknod /dev/hello c 111 13
[root@itxuezhe ~]# ls -l /dev/hello
crw-r--r-- 1 root root 111, 13 Feb 28 19:41 /dev/hello
[root@itxuezhe ~]# mknod /dev/hello1 b 111 13
[root@itxuezhe ~]# ls -l /dev/hello1
brw-r--r-- 1 root root 111, 13 Feb 28 19:42 /dev/hello1
原文地址:https://blog.51cto.com/itxuezhe/2356395
时间: 2024-10-17 22:44:05