ACCT(5) - File Formats Manual # ACCT(5) - File Formats Manual
NAME # acct - execution accounting file
SYNOPSIS # #include <sys/acct.h>
DESCRIPTION # The kernel maintains the following acct information structure for all processes. If a process terminates or misbehaves in specific ways, and accounting is enabled, the kernel calls the acct(2) function call to prepare and append the record to the accounting file.
/* * Accounting structures; these use a comp_t type which is a 3 bits base 8 * exponent, 13 bit fraction floating point number.
...
BPF(4) - Device Drivers Manual # BPF(4) - Device Drivers Manual
NAME # bpf - Berkeley Packet Filter
SYNOPSIS # pseudo-device bpfilter
DESCRIPTION # The Berkeley Packet Filter provides a raw interface to data link layers in a protocol-independent fashion. All packets on the network, even those destined for other hosts, are accessible through this mechanism.
The packet filter appears as a character special device, /dev/bpf. After opening the device, the file descriptor must be bound to a specific network interface with the BIOCSETIF ioctl(2).
...
FUSER(1) - General Commands Manual # FUSER(1) - General Commands Manual
NAME # fuser - identify process IDs holding specific files open
SYNOPSIS # fuser [-cfku] [-M core] [-N system] [-s signal] file …
DESCRIPTION # The fuser utility writes to standard output the process IDs of processes running on the local system that have one or more of the named files open. If file is a mounted block device, the output will show all processes having files opened on that file system.
...
NOHUP(1) - General Commands Manual # NOHUP(1) - General Commands Manual
NAME # nohup - invoke a command immune to hangups
SYNOPSIS # nohup utility [arg …]
DESCRIPTION # The nohup command allows the specified utility to be protected from termination if the user should become logged out (for example, due to a modem line or TCP/IP connection being dropped). To do this, nohup sets the SIGHUP signal(3) (“terminal line hangup”) to be ignored, then executes utility along with any arguments.
...
RBOOTD(8) - System Manager’s Manual # RBOOTD(8) - System Manager’s Manual
NAME # rbootd - HP remote boot server
SYNOPSIS # rbootd [-ad] [-i interface] [config_file]
DESCRIPTION # The rbootd utility services boot requests from Hewlett-Packard workstations over a local area network. All boot files must reside in the boot file directory; further, if a client supplies path information in its boot request, it will be silently stripped away before processing.
...
TIMEOUT(1) - General Commands Manual # TIMEOUT(1) - General Commands Manual
NAME # timeout - run a command with a time limit
SYNOPSIS # timeout [-fp] [-k time] [-s signal] duration command [arg …]
DESCRIPTION # The timeout utility executes command and kills it if it is still running after the specified duration. If duration is 0, the timeout is disabled.
The options are as follows:
-f, –foreground
Do not propagate the timeout signal to children processes.
...