text stringlengths 17 1.35M |
|---|
# cciss
## NAME
cciss - HP Smart Array block driver
## SYNOPSIS
modprobe cciss [ cciss_allow_hpsa=1 ]
## DESCRIPTION
**Note** : This obsolete driver was removed in Linux 4.14, as it is
superseded by the hpsa(4) driver in newer kernels.
... |
# mem
## NAME
mem, kmem, port - system memory, kernel memory and system ports
## DESCRIPTION
_/dev/mem_ is a character device file that is an image of the main
memory of the computer. It may be used, for example, to examine
(and even patch) the system.
... |
# cpuid
## NAME
cpuid - x86 CPUID access device
## DESCRIPTION
CPUID provides an interface for querying information about the x86
CPU.
This device is accessed by lseek(2) or pread(2) to the appropriate
CPUID level and reading in chunks of 16 byte... |
# ram
## NAME
ram - ram disk device
## DESCRIPTION
The _ram_ device is a block device to access the ram disk in raw
mode.
It is typically created by:
mknod -m 660 /dev/ram b 1 1
chown root:disk /dev/ram
## FILES
... |
# veth
## NAME
veth - Virtual Ethernet Device
## DESCRIPTION
The **veth** devices are virtual Ethernet devices. They can act as
tunnels between network namespaces to create a bridge to a
physical network device in another namespace, but can also be used
... |
# st
## NAME
st - SCSI tape device
## SYNOPSIS
**#include <sys/mtio.h>**
**int ioctl(int** _fd_**, int** _request_ **[, (void *)**_arg3_**]);**
**int ioctl(int** _fd_**, MTIOCTOP, (struct mtop *)**_mt_cmd_**);**
**int ioctl(int** _fd_**, MTIOCGET... |
# intro
## NAME
intro - introduction to special files
## DESCRIPTION
Section 4 of the manual describes special files (devices).
## FILES
/dev/* — device files
## NOTES
**Authors and copyright conditions**
Look at the header of the manu... |
# lp
## NAME
lp - line printer devices
## SYNOPSIS
**#include <linux/lp.h>**
## CONFIGURATION
**lp**[0–2] are character devices for the parallel line printers; they
have major number 6 and minor number 0–2. The minor numbers
correspond to t... |
# fuse
## NAME
fuse - Filesystem in Userspace (FUSE) device
## SYNOPSIS
**#include <linux/fuse.h>**
## DESCRIPTION
This device is the primary interface between the FUSE filesystem
driver and a user-space process wishing to provide the filesystem
... |
# mouse
## NAME
mouse - serial mouse interface
## CONFIGURATION
Serial mice are connected to a serial RS232/V24 dialout line, see
ttyS(4) for a description.
## DESCRIPTION
**Introduction**
The pinout of the usual 9 pin plug as used for serial mi... |
# ttyS
## NAME
ttyS - serial terminal lines
## DESCRIPTION
**ttyS[0-3]** are character devices for the serial terminal lines.
They are typically created by:
mknod -m 660 /dev/ttyS0 c 4 64 # base address 0x3f8
mknod -m 660 /dev/ttyS1 ... |
# loop
## NAME
loop, loop-control - loop devices
## SYNOPSIS
#include <linux/loop.h>
## DESCRIPTION
The loop device is a block device that maps its data blocks not to
a physical device such as a hard disk or optical disk drive, but
to the bl... |
# extcap
## NAME
extcap - The external capture interface
## DESCRIPTION
The extcap (external capture) interface is a versatile plugin
interface that allows external binaries to act as capture
interfaces directly in Wireshark. It is used in scenarios, where
... |
# console_codes
## NAME
console_codes - Linux console escape and control sequences
## DESCRIPTION
The Linux console implements a large subset of the VT102 and
ECMA-48 / ISO/IEC 6429 / ANSI X3.64 terminal controls, plus
certain private-mode sequences for changing... |
# wireshark-filter
## NAME
wireshark-filter - Wireshark display filter syntax and reference
## SYNOPSIS
**wireshark**[other options] [ **-Y** "display filter expression" |
**--display-filter** "display filter expression" ]
**tshark**[other options] [ **-Y**... |
# tty
## NAME
tty - controlling terminal
## DESCRIPTION
The file _/dev/tty_ is a character file with major number 5 and
minor number 0, usually with mode 0666 and ownership root:tty. It
is a synonym for the controlling terminal of a process, if any.
... |
# null
## NAME
null, zero - data sink
## DESCRIPTION
Data written to the _/dev/null_ and _/dev/zero_ special files is
discarded.
Reads from _/dev/null_ always return end of file (i.e., read(2)
returns 0), whereas reads from _/dev/zero_ always ret... |
# random
## NAME
random, urandom - kernel random number source devices
## SYNOPSIS
#include <linux/random.h>
**int ioctl(**_fd_**, RND** _request_**,**_param_**);**
## DESCRIPTION
The character special files _/dev/random_ and _/dev/urandom_ (prese... |
# null
## NAME
null, zero - data sink
## DESCRIPTION
Data written to the _/dev/null_ and _/dev/zero_ special files is
discarded.
Reads from _/dev/null_ always return end of file (i.e., read(2)
returns 0), whereas reads from _/dev/zero_ always ret... |
# vcs
## NAME
vcs, vcsa - virtual console memory
## DESCRIPTION
_/dev/vcs0_ is a character device with major number 7 and minor
number 0, usually with mode 0644 and ownership root:tty. It
refers to the memory of the currently displayed virtual console
... |
# pts
## NAME
ptmx, pts - pseudoterminal master and slave
## DESCRIPTION
The file _/dev/ptmx_ (the pseudoterminal multiplexor device) is a
character file with major number 5 and minor number 2, usually
with mode 0666 and ownership root:root. It is used to creat... |
# full
## NAME
full - always full device
## CONFIGURATION
If your system does not have _/dev/full_ created already, it can be
created with the following commands:
mknod -m 666 /dev/full c 1 7
chown root:root /dev/full
## DESCRIPTIO... |
# pts
## NAME
ptmx, pts - pseudoterminal master and slave
## DESCRIPTION
The file _/dev/ptmx_ (the pseudoterminal multiplexor device) is a
character file with major number 5 and minor number 2, usually
with mode 0666 and ownership root:root. It is used to creat... |
# lirc
## NAME
lirc - lirc devices
## DESCRIPTION
The _/dev/lirc*_ character devices provide a low-level bidirectional
interface to infra-red (IR) remotes. Most of these devices can
receive, and some can send. When receiving or sending data, the
dri... |
# ioctl_console
## NAME
ioctl_console - ioctls for console terminal and virtual consoles
## SYNOPSIS
**#include <sys/ioctl.h>**
**int ioctl(int** _fd_**, unsigned long** _op_**, ...);**
## DESCRIPTION
The following Linux-specific ioctl(2) operatio... |
# mem
## NAME
mem, kmem, port - system memory, kernel memory and system ports
## DESCRIPTION
_/dev/mem_ is a character device file that is an image of the main
memory of the computer. It may be used, for example, to examine
(and even patch) the system.
... |
# smartpqi
## NAME
smartpqi - Microchip Smart Storage SCSI driver
## SYNOPSIS
**modprobe smartpqi**[**disable_device_id_wildcards=**{**0** |**1**}]
[**disable_heartbeat=**{**0** |**1**}]
[**disable_ctrl_shutdown=**{**0** |**1*... |
# sd
## NAME
sd - driver for SCSI disk drives
## SYNOPSIS
**#include <linux/hdreg.h> **/* for HDIO_GETGEO */
**#include <linux/fs.h> **/* for BLKGETSIZE and BLKRRPART */
## CONFIGURATION
The block device name has the following form: **... |
# random
## NAME
random, urandom - kernel random number source devices
## SYNOPSIS
#include <linux/random.h>
**int ioctl(**_fd_**, RND** _request_**,**_param_**);**
## DESCRIPTION
The character special files _/dev/random_ and _/dev/urandom_ (prese... |
# initrd
## NAME
initrd - boot loader initialized RAM disk
## CONFIGURATION
_/dev/initrd_ is a read-only block device assigned major number 1
and minor number 250. Typically _/dev/initrd_ is owned by root:disk
with mode 0400 (read access by root only). If the ... |
# md
## NAME
md - Multiple Device driver aka Linux Software RAID
## SYNOPSIS
**/dev/md** _n_
**/dev/md/**_n_
**/dev/md/** name
## DESCRIPTION
The **md** driver provides virtual devices that are created from one
or more independent... |
# wavelan
## NAME
wavelan - AT&T GIS WaveLAN ISA device driver
## SYNOPSIS
**insmod wavelan_cs.o [io=**_B,B.._**] [ irq=**_I,I.._**] [name=**_N,N.._**]**
## DESCRIPTION
_This driver is obsolete:_ it was removed in Linux 2.6.35.
**wavelan** is the ... |
# hpsa
## NAME
hpsa - HP Smart Array SCSI driver
## SYNOPSIS
modprobe hpsa [ hpsa_allow_any=1 ]
## DESCRIPTION
**hpsa** is a SCSI driver for HP Smart Array RAID controllers.
**Options**
_hpsa_allow_any=1_ : This option allows the driver to ... |
# rtc
## NAME
rtc - real-time clock
## SYNOPSIS
#include <linux/rtc.h>
**int ioctl(**_fd_**, RTC_**_request_**,**_param_**);**
## DESCRIPTION
This is the interface to drivers for real-time clocks (RTCs).
Most computers have one or ... |
# dsp56k
## NAME
dsp56k - DSP56001 interface device
## SYNOPSIS
**#include <asm/dsp56k.h>**
**ssize_t read(int** _fd_**, void ***_data_**, size_t** _length_**);**
**ssize_t write(int** _fd_**, void ***_data_**, size_t** _length_**);**
**int ... |
# msr
## NAME
msr - x86 CPU MSR access device
## DESCRIPTION
_/dev/cpu/CPUNUM/msr_ provides an interface to read and write the
model-specific registers (MSRs) of an x86 CPU. _CPUNUM_ is the
number of the CPU to access as listed in _/proc/cpuinfo_.
... |
# fd
## NAME
fd - floppy disk device
## CONFIGURATION
Floppy drives are block devices with major number 2. Typically
they are owned by root:floppy (i.e., user root, group floppy) and
have either mode 0660 (access checking via group membership) or
mod... |
# hd
## NAME
hd - MFM/IDE hard disk devices
## DESCRIPTION
The **hd*** devices are block devices to access MFM/IDE hard disk
drives in raw mode. The master drive on the primary IDE
controller (major device number 3) is **hda** ; the slave drive is **hdb**.
... |
# ttyS
## NAME
ttyS - serial terminal lines
## DESCRIPTION
**ttyS[0-3]** are character devices for the serial terminal lines.
They are typically created by:
mknod -m 660 /dev/ttyS0 c 4 64 # base address 0x3f8
mknod -m 660 /dev/ttyS1 ... |
# magic
## NAME
**magic** — file command's magic pattern file
## DESCRIPTION
This manual page documents the format of magic files as used by
the _file_(1) command, version 5.46. The _file_(1) command identifies
the type of a file using, among other tests, a tes... |
# ioctl_tty
## NAME
ioctl_tty - ioctls for terminals and serial lines
## LIBRARY
Standard C library (_libc_ , _-lc_)
## SYNOPSIS
**#include <asm/termbits.h> **/* Definition of constants */
**#include <sys/ioctl.h>**
**int ioctl(int** _... |
# loop
## NAME
loop, loop-control - loop devices
## SYNOPSIS
#include <linux/loop.h>
## DESCRIPTION
The loop device is a block device that maps its data blocks not to
a physical device such as a hard disk or optical disk drive, but
to the bl... |
# vcs
## NAME
vcs, vcsa - virtual console memory
## DESCRIPTION
_/dev/vcs0_ is a character device with major number 7 and minor
number 0, usually with mode 0644 and ownership root:tty. It
refers to the memory of the currently displayed virtual console
... |
# sk98lin
## NAME
sk98lin - Marvell/SysKonnect Gigabit Ethernet driver v6.21
## SYNOPSIS
**insmod sk98lin.o**[**Speed_A=**_i,j,..._] [**Speed_B=**_i,j,..._]
[**AutoNeg_A=**_i,j,..._] [**AutoNeg_B=**_i,j,..._] [**DupCap_A=**_i,j,..._]
[**DupCap_B=**_i,j,..._] ... |
# mem
## NAME
mem, kmem, port - system memory, kernel memory and system ports
## DESCRIPTION
_/dev/mem_ is a character device file that is an image of the main
memory of the computer. It may be used, for example, to examine
(and even patch) the system.
... |
# pam_xauth
## NAME
pam_xauth - PAM module to forward xauth keys between users
## SYNOPSIS
**pam_xauth.so**[debug] [xauthpath=_/path/to/xauth_] [systemuser=_UID_]
[targetuser=_UID_]
## DESCRIPTION
The pam_xauth PAM module is designed ... |
# cryptsetup-open
## NAME
cryptsetup-open, cryptsetup-create, cryptsetup-plainOpen,
cryptsetup-luksOpen, cryptsetup-loopaesOpen, cryptsetup-
tcryptOpen, cryptsetup-bitlkOpen, cryptsetup-fvault2Open - open an
encrypted device and create a mapping with a specified name
... |
# systemd-portabled.service
## NAME
systemd-portabled.service, systemd-portabled - Portable service
manager
## SYNOPSIS
systemd-portabled.service
/usr/lib/systemd/systemd-portabled
## DESCRIPTION
**systemd-portabled** is a system servic... |
# ip-nexthop
## NAME
ip-nexthop - nexthop object management
## SYNOPSIS
**ip**[ _ip-OPTIONS_ ] **nexthop**{ _COMMAND_ | **help**}
**ip nexthop**{ **show** | **flush**} _SELECTOR_
**ip nexthop**{ **add** | **replace**} id _ID NH_
**ip ne... |
# accton
## NAME
accton - turns process accounting on or off
## SYNOPSIS
**accton**[_OPTION_] on**|** off**|** filename
**accton**[ **-V** | **--version**] [ **-h** | **--help**]
## DESCRIPTION
**accton** _filename_ turns on process accounting.
... |
# ibprintswitch
## NAME
ibprintswitch.pl - print either the switch specified or a list of
switches from the ibnetdiscover output
## SYNOPSIS
**ibprintswitch.pl**[-R -l -C <ca_name> -P <ca_port>]
[<switch_guid|switch_name>]
## DESCRIPTION
Fas... |
# ibdatacounts
## NAME
ibdatacounts - get IB port data counters
## SYNOPSIS
**ibdatacounts**[-h] [-b] [-v] [-G] [-N | -nocolor] [-C ca_name] [-P
ca_port] [-t(imeout) timeout_ms] <lid|guid> [<port>]
## DESCRIPTION
Obtain PMA data counters from specified... |
# btreplay
## NAME
btreplay - recreate IO loads recorded by blktrace
## SYNOPSIS
**btreplay [**_options_ ] <_dev_...>
## DESCRIPTION
The _btrecord_ and _btreplay_ tools provide the ability to record and
replay IOs captured by the _blktrace_ utility. At... |
# warnquota
## NAME
warnquota - send mail to users over quota
## SYNOPSIS
**warnquota**[ **-ugsid**] [ **-F** _quotaformat_ ] [ **-q** _quotatab_ ] [ **-c**
_configfile_ ] [ **-a** _adminsfile_ ] [ _filesystem_... ]
## DESCRIPTION
**warnquota** checks... |
# systemd-timedated.service
## NAME
systemd-timedated.service, systemd-timedated - Time and date bus
mechanism
## SYNOPSIS
systemd-timedated.service
/usr/lib/systemd/systemd-timedated
## DESCRIPTION
systemd-timedated.service is a system... |
# rpmkeys
## NAME
rpmkeys - RPM Keyring
## SYNOPSIS
**rpmkeys**{**--list|--import|--erase|--delete|--checksig**}
## DESCRIPTION
The general forms of rpm(8) digital signature commands are
**rpmkeys**{**-l|--list**} [_FINGERPRINT ..._]
... |
# tc-matchall
## NAME
matchall - traffic control filter that matches every packet
## SYNOPSIS
**tc filter**... **matchall**[ **skip_sw** | **skip_hw**] [ **action** _ACTION_SPEC_
] [ **classid** _CLASSID_ ]
## DESCRIPTION
The **matchall** filte... |
# pvs
## NAME
pvs — Display information about physical volumes
## SYNOPSIS
**pvs**
[ _option_args_ ]
[ _position_args_ ]
## DESCRIPTION
pvs produces formatted output about PVs.
## USAGE
**pvs**
[ *... |
# systemd-fsck@.service
## NAME
systemd-fsck@.service, systemd-fsck-root.service, systemd-fsck-
usr.service, systemd-fsck - File system checker logic
## SYNOPSIS
systemd-fsck@.service
systemd-fsck-root.service
systemd-fsck-usr.service
... |
# ip-mroute
## NAME
ip-mroute - multicast routing cache management
## SYNOPSIS
**ip mroute show**[ [ **to**] _PREFIX_ ] [ **from** _PREFIX_ ] [ **iif** _DEVICE_ ]
[ **table** _TABLE_ID_ ]
## DESCRIPTION
**mroute** objects are multicast routing... |
# rmmod
## NAME
rmmod - Simple program to remove a module from the Linux Kernel
## SYNOPSIS
**rmmod**[_OPTIONS_] [_list of modulenames_]
## DESCRIPTION
**rmmod** is a trivial program to remove a module or a list of modules
from the kernel (when module ... |
# systemd-update-done.service
## NAME
systemd-update-done.service, systemd-update-done - Mark /etc/ and
/var/ as fully updated
## SYNOPSIS
systemd-update-done.service
/usr/lib/systemd/systemd-update-done
## DESCRIPTION
systemd-update-do... |
# pam_cifscreds
## NAME
pam_cifscreds - PAM module to manage NTLM credentials in kernel
keyring
## SYNOPSIS
Edit the PAM configuration files for the systems that you want to
automatically register NTLM credentials for, e.g.
_/etc/pam.d/login_ , and mo... |
# systemd-sysext
## NAME
systemd-sysext, systemd-sysext.service, systemd-sysext-
initrd.service, systemd-confext, systemd-confext.service, systemd-
confext-initrd.service - Activates System Extension Images
## SYNOPSIS
**systemd-sysext**[OPTIONS...] COMMAND... |
# systemd-suspend.service
## NAME
systemd-suspend.service, systemd-hibernate.service, systemd-
hybrid-sleep.service, systemd-suspend-then-hibernate.service,
systemd-sleep - System sleep state logic
## SYNOPSIS
systemd-suspend.service
systemd-h... |
# sln
## NAME
sln - create symbolic links
## SYNOPSIS
**sln** _source dest_
**sln** _filelist_
## DESCRIPTION
The **sln** program creates symbolic links. Unlike the ln(1) program,
it is statically linked. This means that if for some reason... |
# lspci
## NAME
lspci - list all PCI devices
## SYNOPSIS
**lspci**[**options**]
## DESCRIPTION
**lspci** is a utility for displaying information about PCI buses in
the system and devices connected to them.
By default, it shows a brief l... |
# sm-notify
## NAME
sm-notify - send reboot notifications to NFS peers
## SYNOPSIS
**/usr/sbin/sm-notify [-dfn] [-m** _minutes_**] [-v** _name_**] [-p** _notify-port_**]**
**[-P** _path_**]**
## DESCRIPTION
File locks are not part of persistent file sy... |
# tc-codel
## NAME
CoDel - Controlled-Delay Active Queue Management algorithm
## SYNOPSIS
**tc qdisc ... codel**[ **limit** PACKETS ] [ **target** TIME ] [ **interval**
TIME ] [ **ecn** | **noecn**] [ **ce_threshold** TIME ]
## DESCRIPTION
CoDel (prono... |
# systemd-importd.service
## NAME
systemd-importd.service, systemd-importd - VM and container image
import and export service
## SYNOPSIS
systemd-importd.service
/usr/lib/systemd/systemd-importd
## DESCRIPTION
**systemd-importd** is a s... |
# arptables-nft-save
## NAME
arptables-save — dump arptables rules to stdout (nft-based)
## SYNOPSIS
**arptables-save**[**-M** _modprobe_] [**-c**]
**arptables-save**[**-V**]
## DESCRIPTION
**arptables-save** is used to dump the contents of an ARP... |
# stap-exporter
## NAME
stap-exporter - systemtap-prometheus interoperation mechanism
## SYNOPSIS
**stap-exporter**[ _OPTIONS_ ]
## DESCRIPTION
_stap-exporter_ runs a set of systemtap scripts and relays their
procfs outputs to remote HTTP clients on de... |
# tc-skbedit
## NAME
skbedit - SKB editing action
## SYNOPSIS
**tc**... **action skbedit**[ **queue_mapping** _QUEUE_MAPPING_ ] [ **priority**
_PRIORITY_ ] [ **mark** _MARK_[**/**_MASK] ] [_ **ptype** _PTYPE_ ] [
**inheritdsfield**]
## DES... |
# route
## NAME
route - show / manipulate the IP routing table
## SYNOPSIS
**route**[**-CFvnNee**] [**-A** family |**-4** |**-6**]
**route**[**-v**] [**-A** family |**-4** |**-6**] **add**[**-net** |**-host**] _target_ [**netmask**
_Nm_] [**gw** _Gw_... |
# systemd-repart
## NAME
systemd-repart, systemd-repart.service - Automatically grow and
add partitions, and generate disk images (DDIs)
## SYNOPSIS
**systemd-repart**[OPTIONS...] [_[BLOCKDEVICE]_...]
systemd-repart.service
## DESCRIPTION
... |
# pam_systemd
## NAME
pam_systemd - Register user sessions in the systemd login manager
## SYNOPSIS
pam_systemd.so
## DESCRIPTION
**pam_systemd** registers user sessions with the systemd login manager
systemd-logind.service(8), and hence the systemd co... |
# tc-csum
## NAME
csum - checksum update action
## SYNOPSIS
**tc**... **action csum** _UPDATE_
_UPDATE_ := _TARGET_ [ _UPDATE_ ]
_TARGET_ := { **ip4h** | **icmp** | **igmp** | **tcp** | **udp** | **udplite** | **sctp** |
_SWEETS_ }
... |
# logoutd
## NAME
logoutd - enforce login time restrictions
## SYNOPSIS
**logoutd**
## DESCRIPTION
**logoutd** enforces the login time and port restrictions specified in
/etc/porttime. **logoutd** should be started from /etc/rc. The
/v... |
# slappasswd
## NAME
slappasswd - OpenLDAP password utility
## SYNOPSIS
**SBINDIR/slappasswd**[**-v**] [**-u**] [**-g** |**-s** _secret_**|-T** _file_] [**-h** _hash_]
[**-c** _salt-format_] [**-n**] [**-o** _option_[**=**_value_]]
## DESCRIPTION
**Sla... |
# systemd-veritysetup-generator
## NAME
systemd-veritysetup-generator - Unit generator for verity
protected block devices
## SYNOPSIS
/usr/lib/systemd/system-generators/systemd-veritysetup-generator
## DESCRIPTION
**systemd-veritysetup-generator** is a... |
# mapscrn
## NAME
mapscrn - load screen output mapping table
## SYNOPSIS
**mapscrn**[_options_] _mapfile_
## DESCRIPTION
The **mapscrn** command is obsolete - its function is now built-in
into setfont. However, for backwards compatibility it is still
... |
# nss-mymachines
## NAME
nss-mymachines, libnss_mymachines.so.2 - Hostname resolution for
local container instances
## SYNOPSIS
libnss_mymachines.so.2
## DESCRIPTION
**nss-mymachines** is a plug-in module for the GNU Name Service Switch
(NSS... |
# systemd-machined.service
## NAME
systemd-machined.service, systemd-machined - Virtual machine and
container registration manager
## SYNOPSIS
systemd-machined.service
/usr/lib/systemd/systemd-machined
## DESCRIPTION
**systemd-machined*... |
# rdma-link
## NAME
rdma-link - rdma link configuration
## SYNOPSIS
**rdma**[ _OPTIONS_ ] **link**{ _COMMAND_ | **help**}
_OPTIONS_ := { **-V**[_ersion_] | **-d**[_etails_] }
**rdma link show**[ _DEV/PORT_INDEX_ ]
**rdma link add NAME t... |
# mkfs.bfs
## NAME
mkfs.bfs - make an SCO bfs filesystem
## SYNOPSIS
**mkfs.bfs**[options] _device_ [_block-count_]
## DESCRIPTION
**mkfs.bfs** creates an SCO bfs filesystem on a block device (usually
a disk partition or a file accessed via the loop de... |
# pam_faillock
## NAME
pam_faillock - Module counting authentication failures during a
specified interval
## SYNOPSIS
**auth ... pam_faillock.so**{preauth|authfail|authsucc}
[conf=_/path/to/config-file_]
... |
# btrecord
## NAME
btrecord - recreate IO loads recorded by blktrace
## SYNOPSIS
**Usage:**
btrecord [ _options_ ] <_dev_...>
## DESCRIPTION
The _btrecord_ and _btreplay_ tools provide the ability to record and
replay IOs captured by th... |
# cryptsetup-status
## NAME
cryptsetup-status - report the status for a mapping
## SYNOPSIS
**cryptsetup** _status_ **[ <options>] <name>**
## DESCRIPTION
Reports the status for the mapping <name>.
**< options> **can be [--header, --disable-locks]... |
# tc-tunnel_key
## NAME
tunnel_key - Tunnel metadata manipulation
## SYNOPSIS
**tc**... **action tunnel_key**{ **unset** | _SET_ }
_SET_ := **set src_ip** _ADDRESS_ **dst_ip** _ADDRESS_ **id** _KEY_ID_ **dst_port**
_UDP_PORT_ **tos** _TOS_ **ttl** _... |
# tc-sample
## NAME
sample - packet sampling tc action
## SYNOPSIS
**tc**... **action sample rate** _RATE_ **group** _GROUP_ [ **trunc** _SIZE_ ] [ **index**
_INDEX_ ]
**tc**... **action sample index** _INDEX_
## DESCRIPTION
The... |
# systemd-fsck@.service
## NAME
systemd-fsck@.service, systemd-fsck-root.service, systemd-fsck-
usr.service, systemd-fsck - File system checker logic
## SYNOPSIS
systemd-fsck@.service
systemd-fsck-root.service
systemd-fsck-usr.service
... |
# cryptsetup-luksConvertKey
## NAME
cryptsetup-luksConvertKey - converts an existing LUKS2 keyslot to
new PBKDF parameters
## SYNOPSIS
**cryptsetup** _luksConvertKey_ **[ <options>] <device>**
## DESCRIPTION
Converts an existing LUKS2 keyslot to new PB... |
# pam_ftp
## NAME
pam_ftp - PAM module for anonymous access module
## SYNOPSIS
**pam_ftp.so**[debug] [ignore] [users=_XXX,YYY,_...]
## DESCRIPTION
pam_ftp is a PAM module which provides a pluggable anonymous ftp
mode of access.
Thi... |
# ibrouters
## NAME
IBROUTERS - show InfiniBand router nodes in topology
## SYNOPSIS
ibrouters [options] [<topology-file>]
## DESCRIPTION
ibrouters is a script which either walks the IB subnet topology or
uses an already saved topology file and extract... |
# cryptsetup
## NAME
cryptsetup - utility for configuring and managing encrypted
storage devices
## SYNOPSIS
**cryptsetup <action> [<options>] <action args>**
## DESCRIPTION
**Cryptsetup** is a utility for configuring and managing full-disk
... |
# cryptsetup-fvault2Dump
## NAME
cryptsetup-fvault2Dump - dump the header information of a FVAULT2
(FileVault2 compatible) device
## SYNOPSIS
**cryptsetup** _fvault2Dump_ **[ <options>] <device>**
## DESCRIPTION
Dump the header information of a FVAULT2... |
# tc-fq
## NAME
FQ - Fair Queue traffic policing
## SYNOPSIS
**tc qdisc ... fq**[ **limit** PACKETS ] [ **flow_limit** PACKETS ] [ **quantum**
BYTES ] [ **initial_quantum** BYTES ] [ **maxrate** RATE ] [ **buckets**
NUMBER ] [ **orphan_mask** NUMBER ] [ **pacing... |
# systemd-xdg-autostart-generator
## NAME
systemd-xdg-autostart-generator - User unit generator for XDG
autostart files
## SYNOPSIS
/usr/lib/systemd/user-generators/systemd-xdg-autostart-generator
## DESCRIPTION
systemd-xdg-autostart-generator is a gen... |
# unix_update
## NAME
unix_update - Helper binary that updates the password of a given
user
## SYNOPSIS
**unix_update**[...]
## DESCRIPTION
_unix_update_ is a helper program for the _pam_unix_ module that
updates the password of a given... |
# setkeycodes
## NAME
setkeycodes - load kernel scancode-to-keycode mapping table
entries
## SYNOPSIS
**setkeycodes**[_options_] _scancode keycode ..._
## DESCRIPTION
The _setkeycodes_ command reads its arguments two at a time, each
pair of ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.