mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-05 13:05:59 +02:00
distccd: add page (#5912)
This commit is contained in:
parent
8f9dd1cd74
commit
c1b5d6882b
1 changed files with 24 additions and 0 deletions
24
pages/common/distccd.md
Normal file
24
pages/common/distccd.md
Normal file
|
@ -0,0 +1,24 @@
|
|||
# distccd
|
||||
|
||||
> Server daemon for the distcc distributed compiler.
|
||||
> More information: <https://distcc.github.io>.
|
||||
|
||||
- Start a daemon with the default settings:
|
||||
|
||||
`distccd --daemon`
|
||||
|
||||
- Start a daemon, accepting connections from IPv4 private network ranges:
|
||||
|
||||
`distccd --daemon --allow-private`
|
||||
|
||||
- Start a daemon, accepting connections from a specific network address or address range:
|
||||
|
||||
`distccd --daemon --allow {{ip_address|network_prefix}}`
|
||||
|
||||
- Start a daemon with a lowered priority that can run a maximum of 4 tasks at a time:
|
||||
|
||||
`distccd --daemon --jobs {{4}} --nice {{5}}`
|
||||
|
||||
- Start a daemon and register it via mDNS/DNS-SD (Zeroconf):
|
||||
|
||||
`distccd --daemon --zeroconf`
|
Loading…
Add table
Reference in a new issue