Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

trickled.conf(5) [debian man page]

TRICKLED.CONF(5)					      BSD File Formats Manual						  TRICKLED.CONF(5)

NAME
trickled.conf -- format of the configuration file used by trickled(8). DESCRIPTION
The configuration file format is quite simple. Sections are delimited by square brackets: [Section] And options within brackets sections are simple key value pairs: Option = Value OPTIONS
Per-application customizable variables are specified within sections with section names matching the application name. The options are: Priority Sets the priority of the application, see trickled(8) for details. Time-Smoothing Sets the time smoothing parameter of the application, see trickled(8) for an details. Length-Smoothing Sets the length smoothing parameter of the application, see trickled(8) for details. EXAMPLES
[ssh] Priority = 1 Time-Smoothing = 0.1 Length-Smoothing = 2 [ftp] Priority = 8 Time-Smoothing = 5 Length-Smoothing = 20 SEE ALSO
trickle(1), syslog(3), netintro(4) AUTHORS
trickled.conf has been developed by Marius Aamodt Eriksen <marius@monkey.org>. BSD
March 3, 2003 BSD

Check Out this Related Man Page

idmapd.conf(5)                                                BSD File Formats Manual                                               idmapd.conf(5)

NAME
idmapd.conf -- configuration file for idmapd, the NFSv4 ID <-> Name Mapper SYNOPSIS
Configuration file for idmapd, the NFSv4 ID <-> Name Mapper DESCRIPTION
The idmapd.conf configuration file has two sections, initiated by the strings [General] and [Mapping]. Each section may contain lines of the form variable = value The variables allowed in the General section are Verbosity, Pipefs-Directory, and Domain, whose values have the same effect as the arguments to the -v, -p, and -d commandline options, respectively. The variables allowed in the Mapping section are Nobody-User and Nobody-Group, which have the same effect as the -U and -G commandline options. EXAMPLES
An example /etc/idmapd.conf file: [General] Verbosity = 0 Pipefs-Directory = /var/lib/nfs/rpc_pipefs Domain = localdomain [Mapping] Nobody-User = nobody Nobody-Group = nobody SEE ALSO
idmapd(8) AUTHORS
The idmapd software has been developed by Marius Aamodt Eriksen <marius@citi.umich.edu>. BSD July 16, 2003 BSD
Man Page

8 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

square brackets

I would like to substitute a phrase which contains square brackets. change TO how? Thanks (2 Replies)
Discussion started by: gilead29
2 Replies

2. Programming

mutlithreading question

i'm planning to write a simple application that utilizes multithreading. any suggestions on what application i can use? thanks. (5 Replies)
Discussion started by: kelogs1347
5 Replies

3. Shell Programming and Scripting

validate input

the user inputs names that have to be inside square brackets I want to check if the user puts the brackets and if not ask him to re-enter the names (9 Replies)
Discussion started by: DDoS
9 Replies

4. Programming

how to make application run fast

I do some try on one application to know how to fasten a application root@localhost:/tmpfs> ./pbzip2 -p2 -f -k libc5.cvs.tar Average Time:22.578 Min Time:22.542 Max Time:22.594 First: I need to say my setting: using tmpfs: mount -t tmpfs -o size=200m,nr_inodes=10k,mode=777 tmpfs /tmpfs ... (2 Replies)
Discussion started by: yanglei_fage
2 Replies

5. UNIX for Dummies Questions & Answers

Test command - Two square brackets

Hello, Can someone please explain to me the following line, ] && break I do not understand why two test square brackets are used. Thanks, Shantanu ---------- Post updated at 03:38 PM ---------- Previous update was at 03:35 PM ---------- And, also why there's a $ before (echo $c |... (5 Replies)
Discussion started by: Shan_u2005
5 Replies

6. Shell Programming and Scripting

Escaping square brackets when defining a Csh list

Hi All, I was trying to define a Csh list where one string item contains square brackets, I escaped them as follows in order not to get "No match" error: set LIST = {a,b\,c,d} foreach ITEM ($LIST) echo $ITEM end In this case foreach gives "No match" error, which makes sense.... (7 Replies)
Discussion started by: mohy
7 Replies

7. UNIX for Dummies Questions & Answers

"Smoothing" the data

Hi! Is there a way to use awk to "smooth" a set of data? That is, doing what the "SMOOTH" function in IDL does (SMOOTH) ? Thanks! (24 Replies)
Discussion started by: cosmologist
24 Replies

8. Homework & Coursework Questions

Sed, matching nested brackets and deleting

1. The problem statement, all variables and given/known data: I have to write a script using sed, which delete everything between curly brackets and the brackets themself. The brackets might be nested. The input-file is: aaa { bbb ccc { ddd eee } fff { ... (2 Replies)
Discussion started by: FuzzyGnome
2 Replies