Dataset Viewer
Auto-converted to Parquet Duplicate
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...
End of preview. Expand in Data Studio

The data set is extracted from Linux/UNIX system programming training. Extracted the manuals for linux cmds.

from datasets import load_dataset

downloaded_dataset = load_dataset("tripathysagar/man_text")

display(downloaded_dataset)
Downloads last month
12