GCIH · Question #472
By default, many Unix systems store the system logs in what format?
The correct answer is D. ASCII. Unix and Linux systems traditionally store system log files as plain text files in ASCII format, typically under /var/log/.
Question
By default, many Unix systems store the system logs in what format?
Options
- ADB2
- BODBC
- CXML
- DASCII
How the community answered
(39 responses)- A3% (1)
- B5% (2)
- C3% (1)
- D90% (35)
Why each option
Unix and Linux systems traditionally store system log files as plain text files in ASCII format, typically under /var/log/.
DB2 is a relational database management system from IBM, not a log storage format used by default on Unix systems.
ODBC (Open Database Connectivity) is an API standard for database access, not a file format for storing system logs.
XML is a structured markup format used in some application-level logging (e.g., log4j configurations), but it is not the default format for Unix system logs.
Unix-based operating systems, by default, write system logs (via syslog and similar daemons) as human-readable plain text using ASCII encoding. These files are stored in directories like /var/log/ and can be read with standard text utilities such as cat, grep, and tail without any special parsing software.
Concept tested: Default Unix/Linux system log file format
Source: https://www.man7.org/linux/man-pages/man5/syslog.conf.5.html
Topics
Community Discussion
No community discussion yet for this question.