LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

cupsd

CUPS print server daemon

TLDR

Start CUPS daemon
$ cupsd
copy
Start in foreground
$ cupsd -f
copy
Test configuration
$ cupsd -t
copy
Use alternate config file
$ cupsd -c [/path/to/cupsd.conf]
copy

SYNOPSIS

cupsd [options]

DESCRIPTION

cupsd is the scheduler daemon for CUPS (Common Unix Printing System). It manages print queues, processes print requests, and handles printer communication.Typically started automatically by systemd or init scripts.

PARAMETERS

-f

Run in foreground.
-F
Run in foreground with no forking.
-c config
Use alternate configuration file.
-t
Test configuration and exit.
-h
Show help.

CONFIGURATION

/etc/cups/cupsd.conf

Main configuration file controlling daemon behavior, port settings, access control, and logging levels.

INSTALL

sudo apt install cups-daemon
copy
sudo dnf install cups
copy
sudo pacman -S cups
copy
sudo apk add cups
copy
sudo zypper install cups
copy
brew install cups
copy
nix profile install nixpkgs#cups
copy

CAVEATS

Normally managed by the system service manager. Direct invocation is usually only needed for debugging.

SEE ALSO

cupsctl(1), lp(1), lpstat(1)

RESOURCES

Copied to clipboard
Kai