Flashnux

GNU/Linux man pages

Livre :
Expressions régulières,
Syntaxe et mise en oeuvre :

ISBN : 978-2-7460-9712-4
EAN : 9782746097124
(Editions ENI)

GNU/Linux

RedHat 6.2

(Zoot)

cycbuff.conf(5)


CYCBUFF.CONF

CYCBUFF.CONF

NAME
DESCRIPTION
HISTORY
SEE ALSO

NAME

cycbuff.conf − configuration file for CNFS method

DESCRIPTION

The file <pathetc in inn.conf>/cycbuff.conf is required if CNFS (Cyclic News File System) method is used. CNFS is one of storage method which can be defined at storage.conf(5).

The file consists of a series of lines; blank lines and lines beginning with a number sign (’’#’’) are ignored. There are four kinds of configuration lines: ’’cycbuffupdate’’, ’’refreshinterval’’, ’’cycbuff’’ and ’’metacycbuff.’’ The order of lines in this file is not important among the same kind of configuration line. But all ’’cycbuff’’ lines should be presented before any ’’metacycbuff’’ lines.

’’Cycbuffupdate’’ line is formatted as:

cycbuffupdate:update

’’Update’’ is how many article-stores between cycbuff header updates. This line can be omitted and the default value is ’’25.’’

’’Refreshinterval’’ line is formatted as:

refreshinterval:interval

’’Inerval’’ is what interval (seconds) between rereading cycbuff header if cycbuff is preopend. (This is in the case nnrpd(8) runs as a daemon.) This line can be omitted and the default value is ’’30.’’

’’Cycbuff’’ line is formatted as:

cycbuff:buffer_name:file_name:buffer_size

’’Buffer_name’’ is the symbolic name of the buffer. The length of this name should be within 7 letters. This name is referred at ’’metacycbuff’’ lines. ’’File_name’’ is the path to buffer file. The length of this path should be within 63 letters. ’’Buffer_size’’ is the length of buffer file in kilobytes in decimal (1KB = 1024 bytes). If the ’’file_name’’ is not a special device, the file should be buffer_size * 1024 bytes.

’’Metacycbuff’’ line is formatted as:

metacycbuff:meta_cyclic_buffer_name:buffer_names

’’Meta_cyclic_buffer_name’’ is the symbolic name of meta-cyclic buffer. This name is referred at ’’options’’ field at ’’cnfs’’ lines in storage.conf(5). ’’Buffer_names’’ is comma separated list of buffer names of ’’cycbuff.’’ These buffer names should be defined at ’’metacycbuff’’ lines. If ’’buffer_names’’ has more than one buffer names, CNFS method stores articles into each ’’cycbuff’’ in order cyclically.

Also it is necessary to set up ’’options’’ field at ’’cnfs’’ lines in storage.conf(5) to use CNFS method. That field should be one of ’’meta_cyclic_buffer_name’’ defined at ’’metacycbuff’’ lines.

To create new ’’cycbuff’’, there are two different methods for creating the cyclic buffer files.
1.
Create a big file on top of a standard filesystem.

The use "dd" to create the ’’cycbuff’’ files, such as "dd if=/dev/zero of=/path/to/cycbuff bs=32k count=N" where N is the buffer_size divided by 32.

2. Use block disk devices directly.

If your operating system will allow you to mmap() block disk devices (Solaris does, FreeBSD does not), this is the recommended method. Partition the disks to make each partition slightly larger (a few MB larger) than the intended size of each cycbuff. It is not recommend to use the block device files already located in ’’/dev.’’ Instead, use "mknod" to create a new set of block device files. In order to do this, do an "ls -l" of the /dev/dsk partition and then a subsequent "ls -l" of the destination of the symbolic link under /devices. The major and minor device numbers are in the fifth and sixth columns (right before the date) respectively. This information should be fed to "mknod" to make a "block-type special file" (b). Here is a short script that accomplishes this when fed the /dev/dsk/ partition name:

#!/bin/sh
disk=$1
link=’ls -l /dev/dsk/$disk | awk ’{print $11}’’
major=’ls -l /dev/dsk/$link | awk ’{print $5}’ | tr -d ,’
minor=’ls -l /dev/dsk/$link | awk ’{print $6}’
mkdir /cycbuff
mknod /cycbuff/$disk b $major $minor

The created device files themselves consume very little space.

In either case, make certain that each cycbuff file is owned by your news user, news group, and has rw modes for the owner and group (mode 0664 or 0660).

When you first start innd and everything is configured properly, you should see messages in news.notice which look like:

Mar 1 00:00:00 kevlar innd: CNFS-sm No magic cookie found for cycbuff ONE, initializing

HISTORY

Written by Katsuhiro Kondou <kondou@nec.co.jp> for InterNetNews. This is revision 1.1.2.2, dated 1999/06/26.

SEE ALSO

inn.conf(5), storage.conf(5).



cycbuff.conf(5)