Scroll to navigation

SITAR(1) SITAR(1)

NAME

SITAR - System InformaTion At Runtime

SYNOPSIS

sitar|sitar.pl --all --check-consistency --find-unpacked --format=format --outfile=file|dir --help --version

Available formats: html, tex, sdocbook, yast1, yast2

DESCRIPTION

Prepare system information using perl, reading the /proc filesystem. Output is in HTML, LaTeX, simplified docbook-xml (planned: SQL) and can be converted to PostScript and PDF. Sitar is an ancient Indian instrument as well (see "HISTORY" below).

There are three files/links available:

If called without --outfile and/or without --format, all available output formats are produced below /tmp/sitar-$hostname-$date.

If called with --format and --outfile exactly this is produced. Please note, that the format yast2 needs a directory given with the parameter --outfile!

must always be called with both options: --format --outfile, but does nothing, if called without any options.

OPTIONS

Prints a short summary of options.
Prints the sitar version
This is a short key for --check-consistency --find-unpacked
This option checks the consistency of configurations-files as declared in the RPMs, by invoking rpm -Vca. It produces a file /var/lib/support/Configuration_Consistency.include, which is preserved between different sitar-runs. The list contains all names of configuration files, which are tagged as configuration files within the RPMs and were changed compared to the release shipped within the RPMs.

The following standard sitar-run includes the file /var/lib/support/Configuration_Consistency.include, as described below (section FILES) and prints out the full content of the changed files. At the moment, it is neither possible nor intended, to print only the differences to the shipped status.

Please note, that this really might need a long time (from 5-20 minutes).

Find files below /etc, that do not belong to any RPM, and for that reason should be documented. A file /var/lib/support/Find_Unpacked.include is written as "cache".

Please note, that this really might need a long time (from 5-20 minutes).

Tell SITAR, which output format to use. At the moment four formats are supported:
as an alias, also latex can be used.
produces simplified docbook-xml; the format is not named xml, because there are several (in theory: an arbitrary number) of xml flavours available.
Please note, that this format needs a directory given with the parameter --outfile!

As it is possible, to generate a AutoYAST-file with YaST itself, this option is obsolete and may be dropped in the future.

All formatted output will be stored in the file given here. Please don't forget to give the right extension here: ".html" for HTML, ".tex" for TeX or LaTeX, ".sdocbook.xml" for simplified docbook-xml, ".sel" for YaST-Selection-files.

Please note, that the format yast2 needs a directory given with this parameter!

FILES

file-lists in /var/lib/support/

From a tool called "PaDS" by Thorsten Wandersmann sitar inherited the ability, to extend the list of configuration files. To achieve that, just put a perl-snippet in the directory "/var/lib/support/"; this snippet must have the extension ".include" and may include only one perl-statement: an array-declaration for the array @files, that contains the file-names with full path, see EXAMPLES below.

See also --check-consistency and --find-unpacked above.

configuration files

sitar is able to use a configuration file, currently: /etc/sysconfig/sitar. On SUSE Linux systems, this file can be changed also using YaST's sysconfig-editor (System/Monitoring/sitar). The parameters in this file directly correspond global variables in sitar:

Type: list("","html","tex","sdocbook","yast1",yast2). Default: "". This parameter defines, which output-format to produce. The default: "" means all formats.
Type: string. Default: "". Directory for yast config files; mandatory, if SITAR_OPT_FORMAT==yast2
Type: string. Default: "". Name of the one output-file for SITAR_OPT_FORMAT=="html","tex","sdocbook","yast1"
Type: integer(0:). Default: 500000. File size limit (byte) for files to recognize; 0=no limits.
Type: list("On","Off","Auto"). Default: "Auto".

If "On", the hardcoded list of config-files is used; if "Off", the list is not used; if "Auto", and no files /var/lib/support/Configuration_Consistency.include AND /var/lib/support/Find_Unpacked.include exist, it is like "On", else like "Off"

Type: list("On","Off","Auto"). Default: "Auto".

If "On", all files below /etc/subdomain.d | /etc/apparmor.d are scanned; if "Off", the files are not scanned by default; if "Auto", and no files /var/lib/support/Configuration_Consistency.include AND /var/lib/support/Find_Unpacked.include exist, it is like "On", else like "Off"

Type: list("On","Off","Auto"). Default: "".

If "On", all files below /etc/sysconfig/ are scanned; if "Off", the files are not scanned by default; if "Auto", and no files /var/lib/support/Configuration_Consistency.include AND /var/lib/support/Find_Unpacked.include exist, it is like "On", else like "Off"

Type: yesno. Default: No. Include the many small config files below /etc/opt/gnome?
Type: yesno. Default: No. Include /etc/lvm/archive/*?

ERRORS

The program may silently fail if either the "/proc" Filesystem does not exist or the program is not startet by the "root" user.

DIAGNOSTICS

While running, stdout is redirected to the designated "outfile" file. So one will find diagnostics in this file; this (not very helpful) behaviour may change in the future.

EXAMPLES

Check configuration files and produce the full stack of output-formats:

"sitar --check-consistency"

For generating a HTML documentation type as user "root":

"sitar.pl --format=html --outfile=/tmp/$HOSTNAME.html"

For PDF type as user "root":

"sitar.pl --format=tex --outfile=/tmp/$HOSTNAME.tex"

and twice (as an ordinary user):

"pdflatex /tmp/$HOSTNAME.tex"

A typical file to include the configurations files of the application "foobar" could look like this:

 # /var/lib/support/foobar.include
 
 @files= (
        "/etc/opt/foobar/foo.conf",
        "/etc/opt/foobar/bar.conf"
        );
 # eof

AUTHOR

The SITAR project was created by Matthias G. Eckermann <mge@suse.de>; Stephan M"uller helped with Firewalling and Security issues; Janto Trappe and Waldemar Brodkorb created the Debian port; Bj"orn Jacke helped on several issues; Bernhard Thoni introduced the software raid support; Pascal Fuckerieder wrote the IPTables/Netfilter code and Andreas Rother submitted a patch for running sitar on RedHat Linux. So finally these Linux Systems are supported: SuSE Linux, Debian, RedHat.

With testing, bug-reporting, enhancements and code-contributions also helped: Uwe Hering, Jan Jensen, Falko Trojahn, Stephan Martin, Holger Dopp, Seth Arnold, Manfred Hollstein, Stefan Werden, Adam Spiers and others.

For more information on SITAR, see: http://sitar.berlios.de/

LICENSE

Copyright (C) 1999-2006 SuSE Linux, a Novell Business

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.

HISTORY

The sitar is the invention of Amir Shusru, the famous poet and singer attached to the Court of Sultan Alauddin Khilju of Delhi (1295-1315). This is the most popular instrument in Northern India. The sitar is a lute-like instrument with a long fretted neck and a resonating gourd. It is plucked by the index finger of the left hand fitted with a plectrum made of wire. Sitars generally have 6 or 7 main playing strings which run above the frets, and an additional 12 or more sympathetic strings which give the instrument a shimmering echo when played. The frets herein are movable and can be adjusted according to the scale selected to be played upon. The sitar is also called as satar and sundari.

20240226 1.0.6-