Unix and Linux Discussions Tagged with services |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
1 |
2,595 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
2,154 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
2,805 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
16,257 |
Debian |
|
|
|
1 |
1,627 |
Solaris |
|
|
|
1 |
3,711 |
SCO |
|
|
|
2 |
1,965 |
UNIX for Advanced & Expert Users |
|
|
|
3 |
6,757 |
Ubuntu |
|
|
|
5 |
21,607 |
Shell Programming and Scripting |
|
|
|
0 |
1,485 |
Complex Event Processing RSS News |
|
|
|
0 |
794 |
Software Releases - RSS News |
|
|
|
2 |
6,518 |
Solaris |
|
|
|
0 |
736 |
Software Releases - RSS News |
|
|
|
0 |
738 |
Software Releases - RSS News |
|
|
|
0 |
1,783 |
Solaris BigAdmin RSS |
|
|
|
0 |
749 |
Software Releases - RSS News |
|
|
|
1 |
8,728 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
1,087 |
Solaris BigAdmin RSS |
|
|
|
0 |
1,316 |
Complex Event Processing RSS News |
|
|
|
8 |
8,647 |
Solaris |
|
|
|
0 |
747 |
Software Releases - RSS News |
|
|
|
0 |
2,106 |
UNIX and Linux RSS News |
|
|
|
0 |
1,264 |
Complex Event Processing RSS News |
|
|
|
0 |
1,193 |
Complex Event Processing RSS News |
|
|
|
0 |
1,316 |
Oracle Updates (RSS) |
|
|
|
0 |
2,149 |
HP Server News and Podcasts RSS |
|
|
|
0 |
4,219 |
IT Security RSS |
|
|
|
0 |
810 |
Software Releases - RSS News |
|
|
|
0 |
1,474 |
Oracle Updates (RSS) |
|
|
|
0 |
640 |
Software Releases - RSS News |
|
|
|
0 |
693 |
Software Releases - RSS News |
|
|
|
0 |
1,052 |
UNIX and Linux RSS News |
|
|
|
0 |
731 |
Software Releases - RSS News |
|
|
|
0 |
1,243 |
Security Advisories (RSS) |
|
|
|
0 |
1,032 |
UNIX and Linux RSS News |
|
|
|
0 |
3,254 |
Windows & DOS: Issues & Discussions |
|
|
|
1 |
3,698 |
Windows & DOS: Issues & Discussions |
|
|
|
6 |
35,100 |
Solaris |
|
|
|
3 |
3,762 |
Solaris |
|
|
|
0 |
743 |
Software Releases - RSS News |
SERVICES_MKDB(8) BSD System Manager's Manual SERVICES_MKDB(8)
NAME
services_mkdb -- generate the services databases
SYNOPSIS
services_mkdb [-qv] [-o database] [-V style] [file]
services_mkdb -u [file]
DESCRIPTION
services_mkdb creates a db(3) database for the specified file. If no file is specified, then /etc/services is used. The database is
installed into /var/db/services.cdb for CDB format and into /var/db/services.db for DB format (see -V). The file must be in the correct for-
mat (see services(5)).
The options are as follows:
-o database
Put the output databases in the named file.
-q Don't warn about duplicate services. This is the default behavior.
-u Print the services file to stdout, omitting duplicate entries and comments.
-V Create a specific version of the database style. style can be cdb to request the CDB format (default) or db to request the DB for-
mat. The DB format is useful for compatibility with old statically linked binaries.
-v Warn about duplicate services.
The databases are used by the C library services routines (see getservent(3)).
services_mkdb exits zero on success, non-zero on failure.
FILES
/var/db/services.db The current services database.
/var/db/services.db.tmp A temporary file.
/etc/services The current services file.
SEE ALSO
db(3), getservent(3), services(5)
BUGS
Because services_mkdb guarantees not to install a partial destination file it must build a temporary file in the same file system and if suc-
cessful use rename(2) to install over the destination file.
If services_mkdb fails it will leave the previous version of the destination file intact.
BSD
May 5, 2010 BSD