mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
26 lines
734 B
Plaintext
26 lines
734 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# mknod
|
|
|
|
> Create block or character device special files.
|
|
> More information: <https://www.gnu.org/software/coreutils/manual/html_node/mknod-invocation.html>.
|
|
|
|
- Create a block device:
|
|
|
|
`sudo mknod {{path/to/device_file}} b {{major_device_number}} {{minor_device_number}}`
|
|
|
|
- Create a character device:
|
|
|
|
`sudo mknod {{path/to/device_file}} c {{major_device_number}} {{minor_device_number}}`
|
|
|
|
- Create a FIFO (queue) device:
|
|
|
|
`sudo mknod {{path/to/device_file}} p`
|
|
|
|
- Create a device file with default SELinux security context:
|
|
|
|
`sudo mknod {{[-Z|--context]}} {{path/to/device_file}} {{type}} {{major_device_number}} {{minor_device_number}}`
|