LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 09-08-2008, 02:13 PM   #1
kushalkoolwal
Senior Member
 
Registered: Feb 2004
Location: Middle of nowhere
Distribution: Debian Squeeze
Posts: 1,249

Rep: Reputation: 49
How to read the file as a manpage with man command?


I downloaded a program called interbench which comes with sources, executable and a man page file (interbench.8). For some reasons doing make install does not install the man pages into the system's proper location - in fact it does not install the man page at all. I was wondering if I can read the man page file called interbench.8 in a nice format just like we read man pages.

Here are the contents of interbench.8 file:
Code:
.TH interbench "8" "March 2006" "Interbench 0.30" "System Commands"
.SH NAME
interbench \-benchmark application designed to benchmark interactivity in Linux
.SH SYNOPSIS
.B interbench \fR\ [-l <int>] [-L <int>] [-t <int] [-B <int>] [-N <int>]
        [-b] [-c] [-r] [-C <int> -I <int>] [-m <comment>]
        [-w <load type>] [-x <load type>] [-W <bench>] [-X <bench>]
        [-h]
.SH OPTIONS
\fB\-l\fR     Use loops per sec (default: use saved benchmark)
.br
\fB\-L\fR     Use cpu load of with burn load (default: 4)
.br
\fB\-t\fR     Seconds to run each benchmark (default: 30)
.br
\fB\-B\fR     Nice the benchmarked thread to (default: 0)
.br
\fB\-N\fR     Nice the load thread to (default: 0)
.br
\fB\-b\fR     Benchmark loops_per_ms even if it is already known
.br
\fB\-c\fR     Output to console only (default: use console and logfile)
.br
\fB-r\fR     Perform real time scheduling benchmarks (default: non-rt)
.br
\fB\-C\fR     Use percentage cpu as a custom load (default: no custom load)
.br
\fB\-I\fR     Use microsecond intervals for custom load (needs -C as well)
.br
\fB-m\fR     Add to the log file as a separate line
.br
\fB\-w\fR     Add to the list of loads to be tested against
.br
\fB\-x\fR     Exclude from the list of loads to be tested against
.br
\fB\-W\fR     Add <bench> to the list of benchmarks to be tested
.br
\fB-X\fR     Exclude <bench> from the list of benchmarks to be tested
.br
\fB\-h\fR     Show help

If run without parameters \fBinterbench\fR will run a standard benchmark.
.SH DESCRIPTION
\fBinterbench\fR is designed to measure the effect of changes in Linux kernel design or system
configuration changes such as cpu, I/O scheduler and filesystem changes and
options. With careful benchmarking, different hardware can be compared.


.SH What does it do?

It is designed to emulate the cpu scheduling behaviour of interactive tasks and
measure their scheduling latency and jitter. It does this with the tasks on
their own and then in the presence of various background loads, both with
configurable nice levels and the benchmarked tasks can be real time.

.SH How does it work?

First it benchmarks how best to reproduce a fixed percentage of cpu usage on the
machine currently being used for the benchmark. It saves this to a file and then
uses this for all subsequent runs to keep the emulation of cpu usage constant.

It runs a real time high priority timing thread that wakes up the thread or
threads of the simulated interactive tasks and then measures the latency in the
time taken to schedule. As there is no accurate timer driven scheduling in linux
the timing thread sleeps as accurately as linux kernel supports, and latency is
considered as the time from this sleep till the simulated task gets scheduled.

Each benchmarked simulation runs as a separate process with its own threads,
and the background load (if any) also runs as a separate process.

.SH What interactive tasks are simulated and how?

.B X:
X is simulated as a thread that uses a variable amount of cpu ranging from 0 to
100%. This simulates an idle gui where a window is grabbed and then dragged
across the screen.

.B Audio:
Audio is simulated as a thread that tries to run at 50ms intervals that then
requires 5% cpu. This behaviour ignores any caching that would normally be done
by well designed audio applications, but has been seen as the interval used to
write to audio cards by a popular linux audio player. It also ignores any of the
effects of different audio drivers and audio cards. Audio is also benchmarked
running SCHED_FIFO if the real time benchmarking option is used.

.B Video:
Video is simulated as a thread that tries to receive cpu 60 times per second
and uses 40% cpu. This would be quite a demanding video playback at 60fps. Like
the audio simulator it ignores caching, drivers and video cards. As per audio,
video is benchmarked with the real time option.

.B Gaming:
The cpu usage behind gaming is not at all interactive, yet games clearly are
intended for interactive usage. This load simply uses as much cpu as it can
get. It does not return deadlines met as there are no deadlines with an
unlocked frame rate in a game. This does not accurately emulate a 3d game
which is gpu bound (limited purely by the graphics card), only a cpu bound
one.

.B Custom:
This load will allow you to specify your own combination of cpu percentage and
intervals if you have a specific workload you are interested in and know the
cpu usage and frame rate of it on the hardware you are testing.


.SH What loads are simulated?

.B None:
Otherwise idle system.

.B Video:
The video simulation thread is also used as a background load.

.B X:
The X simulation thread is used as a load.

.B Burn:
A configurable number of threads fully cpu bound (4 by default).

.B Write:
A streaming write to disk repeatedly of a file the size of physical ram.

.B Read:
Repeatedly reading a file from disk the size of physical ram (to avoid any
caching effects).

.B Compile:
Simulating a heavy 'make -j4' compilation by running Burn, Write and Read
concurrently.

.B Memload:
Simulating heavy memory and swap pressure by repeatedly accessing 110% of
available ram and moving it around and freeing it. You need to have some
swap enabled due to the nature of this load, and if it detects no swap this
load is disabled.

.B Hack:
This repeatedly runs the benchmarking program "hackbench" as 'hackbench 50'.
This is suggested as a real time load only but because of how extreme this
load is it is not unusual for an out-of-memory kill to occur which will
invalidate any data you get. For this reason it is disabled by default.

.B Custom:
The custom simulation is used as a load.


.SH What is measured and what does it mean?

1. The average scheduling latency (time to requesting cpu till actually getting it) of deadlines met during the test period.
.br
2. The scheduling jitter is represented by calculating the standard deviation of the latency
.br
3. The maximum latency seen during the test period
.br
4. Percentage of desired cpu
.br
5. Percentage of deadlines met.

This data is output to console and saved to a file which is stamped with the
kernel name and date. See sample.log.

.SH Sample:
--- Benchmarking simulated cpu of X in the presence of simulated ---
.br
Load    Latency +/- SD (ms)  Max Latency   % Desired CPU  % Deadlines Met
.br
None      0.495 +/- 0.495         45             100             96
.br
Video      11.7 +/- 11.7        1815            89.6           62.7
.br
Burn       27.9 +/- 28.1        3335            78.5             44
.br
Write      4.02 +/- 4.03         372              97           78.7
.br
Read       1.09 +/- 1.09         158            99.7             88
.br
Compile    28.8 +/- 28.8        3351            78.2           43.7
.br
Memload    2.81 +/- 2.81         187            98.7             85

What can be seen here is that never during this test run were all the so called
deadlines met by the X simulator, although all the desired cpu was achieved
under no load. In X terms this means that every bit of window movement was
drawn while moving the window, but some were delayed and there was enough time
to catch up before the next deadline. In the 'Burn' column we can see that only
44% of the deadlines were met, and only 78.5% of the desired cpu was achieved.
This means that some deadlines were so late (%deadlines met was low) that some
redraws were dropped entirely to catch up. In X terms this would translate into
jerky movement, in audio it would be a skip, and in video it would be a dropped
frame. Note that despite the massive maximum latency of >3seconds, the average
latency is still less than 30ms. This is because redraws are dropped in order
to catch up usually by these sorts of applications.


.SH What is relevant in the data?

The results pessimise quite a lot what happens in real world terms because they
ignore the reality of buffering, but this allows us to pick up subtle 
differences more readily. In terms of what would be noticed by the end user,
dropping deadlines would make noticable clicks in audio, subtle visible frame
time delays in video, and loss of "smooth" movement in X. Dropping desired cpu
would be much more noticeable with audio skips, missed video frames or jerks
in window movement under X. The magnitude of these would be best represented by
the maximum latency. When the deadlines are actually met, the average latency
represents how "smooth" it would look. Average humans' limit of perception for
jitter is in the order of 7ms. Trained audio observers might notice much less.

.SH AUTHOR
Written by Con Kolivas.

This manual page was written for the Debian system by
Julien Valroff <julien@kirya.net>.
.SH "REPORTING BUGS"
Report bugs to <kernel@kolivas.org>.
.SH COPYRIGHT
Copyright 2006 Con Kolivas <kernel@kolivas.org>

This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
.SH "SEE ALSO"
http://interbench.kolivas.org
.br
/usr/share/doc/interbench/readme.gz
.br
/usr/share/doc/interbench/readme.interactivity
 
Old 09-08-2008, 02:16 PM   #2
kushalkoolwal
Senior Member
 
Registered: Feb 2004
Location: Middle of nowhere
Distribution: Debian Squeeze
Posts: 1,249

Original Poster
Rep: Reputation: 49
Never mind I think I found out how to do that....
 
Old 11-07-2008, 01:23 PM   #3
frandy
LQ Newbie
 
Registered: May 2005
Posts: 3

Rep: Reputation: 0
How do you read a man page from a file?
 
Old 11-07-2008, 01:27 PM   #4
frandy
LQ Newbie
 
Registered: May 2005
Posts: 3

Rep: Reputation: 0
Its like this :

nroff -man foo.man | more
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Read command in bash shell file doesn't work jh111451 Linux - Software 4 07-28-2008 08:35 PM
Grep command to read a file Sherlock Programming 2 02-02-2007 04:18 AM
waht file have paths for man? man.conf? where? xcore_on Linux - Newbie 4 05-23-2006 09:38 AM
Read contents of file and execute command cosiek Programming 3 09-30-2003 11:07 AM
How to Read a Troff Man File steve65 Linux - Software 7 10-20-2002 07:35 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 09:58 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration