标签:缓冲 nod mknod -- pre ls -l root 设备 权限
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
标签:缓冲 nod mknod -- pre ls -l root 设备 权限
原文地址:https://blog.51cto.com/itxuezhe/2356395