All of lore.kernel.org
 help / color / mirror / Atom feed
* Kernel manual pages
@ 2006-01-27  9:26 Karel Kulhavy
  2006-01-27 14:30 ` Erik Mouw
  2006-01-27 14:31   ` sean
  0 siblings, 2 replies; 4+ messages in thread
From: Karel Kulhavy @ 2006-01-27  9:26 UTC (permalink / raw)
  To: linux-kernel

Who is responsible for writing the linux kernel manual pages?  I went to
vger.kernel.org and there is "There is much information about Linux on
the web." which points to 7 different 3rd party websites.  I searched
for "manual" and "manpage" in all 7 and didn't find any mention of
manual pages.

I also suggest the http://kernel.org/links.html to be structured
according to topic, and not according to name of the website. Because
if the user comes, he mostly needs to know information about particular
topic. This way he doesn't know which link to click to obtain the
information.

Furthermore I suggest "Manuals" section to be added to vger.kernel.org
in the style OpenBSD has:
http://openbsd.org/
http://www.openbsd.org/cgi-bin/man.cgi

CL<

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Kernel manual pages
  2006-01-27  9:26 Kernel manual pages Karel Kulhavy
@ 2006-01-27 14:30 ` Erik Mouw
  2006-04-30 14:11   ` Karel Kulhavy
  2006-01-27 14:31   ` sean
  1 sibling, 1 reply; 4+ messages in thread
From: Erik Mouw @ 2006-01-27 14:30 UTC (permalink / raw)
  To: Karel Kulhavy; +Cc: linux-kernel

On Fri, Jan 27, 2006 at 10:26:23AM +0100, Karel Kulhavy wrote:
> Who is responsible for writing the linux kernel manual pages?  I went to
> vger.kernel.org and there is "There is much information about Linux on
> the web." which points to 7 different 3rd party websites.  I searched
> for "manual" and "manpage" in all 7 and didn't find any mention of
> manual pages.

The manpage editor, which is a completely different project than the
linux kernel itself. The manual pages are usually edited by the
distributions, so use the package manager for your distribution figure
out which manpage they belong to and file a patch/bug for the pages you
(dis)like:

  dpkg -S /usr/share/man/man4/ttyS.4.gz (debian based distros)
  rpm -qf /usr/share/man/man4/ttyS.4.gz (rpm based distros)

The distribution maintainer should take care of submitting the changes
upstream.

> I also suggest the http://kernel.org/links.html to be structured
> according to topic, and not according to name of the website. Because
> if the user comes, he mostly needs to know information about particular
> topic. This way he doesn't know which link to click to obtain the
> information.

Kernel.org is for distribution of the linux kernel for use by
developers and advanced users. Joe Random User shouldn't be compiling
his kernel in the first place, so making kernel.org "user friendly"
doesn't serve any purpose. The amount of links on that particular page
also doesn't really need a structure, even Joe Random User would be
able to navigate it.

> Furthermore I suggest "Manuals" section to be added to vger.kernel.org
> in the style OpenBSD has:
> http://openbsd.org/
> http://www.openbsd.org/cgi-bin/man.cgi

Manpages are userland stuff and therefore do not belong on kernel.org.
The kernel is documented in the Documentation/ directory in the source
tree, and ultimately in the source itself.


Erik

-- 
+-- Erik Mouw -- www.harddisk-recovery.com -- +31 70 370 12 90 --
| Lab address: Delftechpark 26, 2628 XH, Delft, The Netherlands

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Kernel manual pages
@ 2006-01-27 14:31   ` sean
  0 siblings, 0 replies; 4+ messages in thread
From: sean @ 2006-01-27 14:31 UTC (permalink / raw)
  To: Karel Kulhavy; +Cc: linux-kernel

On Fri, 27 Jan 2006 10:26:23 +0100
Karel Kulhavy <clock@twibright.com> wrote:

> Who is responsible for writing the linux kernel manual pages?  I went to
> vger.kernel.org and there is "There is much information about Linux on
> the web." which points to 7 different 3rd party websites.  I searched
> for "manual" and "manpage" in all 7 and didn't find any mention of
> manual pages.
> 

Take a look in the MAINTAINERS file in the kernel source:

MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
P: Michael Kerrisk
M: mtk-manpages@gmx.net
W: ftp://ftp.kernel.org/pub/linux/docs/manpages
S: Maintained


Sean

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Kernel manual pages
  2006-01-27 14:30 ` Erik Mouw
@ 2006-04-30 14:11   ` Karel Kulhavy
  0 siblings, 0 replies; 4+ messages in thread
From: Karel Kulhavy @ 2006-04-30 14:11 UTC (permalink / raw)
  To: Erik Mouw; +Cc: linux-kernel

On Fri, Jan 27, 2006 at 03:30:52PM +0100, Erik Mouw wrote:
> On Fri, Jan 27, 2006 at 10:26:23AM +0100, Karel Kulhavy wrote:
> > Who is responsible for writing the linux kernel manual pages?  I went to
> > vger.kernel.org and there is "There is much information about Linux on
> > the web." which points to 7 different 3rd party websites.  I searched
> > for "manual" and "manpage" in all 7 and didn't find any mention of
> > manual pages.
> 
> The manpage editor, which is a completely different project than the

Is it Michael Kerrisk? If yes, why not adding a link to his page 
"these are the official Linux kernel manpages"?

> linux kernel itself. The manual pages are usually edited by the
> distributions, so use the package manager for your distribution figure
> out which manpage they belong to and file a patch/bug for the pages you
> (dis)like:
> 
>   dpkg -S /usr/share/man/man4/ttyS.4.gz (debian based distros)
>   rpm -qf /usr/share/man/man4/ttyS.4.gz (rpm based distros)
> 
> The distribution maintainer should take care of submitting the changes
> upstream.

They don't - for example Gentoo closes the bug report with "UPSTREAM"
and doesn't take care at all.

> 
> > I also suggest the http://kernel.org/links.html to be structured
> > according to topic, and not according to name of the website. Because
> > if the user comes, he mostly needs to know information about particular
> > topic. This way he doesn't know which link to click to obtain the

> information.
> 
> Kernel.org is for distribution of the linux kernel for use by
> developers and advanced users. Joe Random User shouldn't be compiling
> his kernel in the first place, so making kernel.org "user friendly"
> doesn't serve any purpose. The amount of links on that particular page

Why not? I am Joe Random User and I am compiling my kernel and the
result is usually better than if I use the tampered-with kernel from
my distribution (Gentoo).

I think there's nothing that could prevent ordinary user to use directly
the kernel, if there are clear enough instructions how to use the
kernel.

It's not difficult to make a unknowing user use a complicated system
properly. On my project http://ronja.twibright.com I managed to write a
guide according to which a totally electrically unskilled person can
build a optical wireless networking hardware and it works on the first
try. Without oscilloscope, just with a cheap multimeter.

> also doesn't really need a structure, even Joe Random User would be
> able to navigate it.

I am Joe Random User and I am getting lost in it. It's pointing to
various sources and I don't know what's official and what and what
I should read first and what last. Why not organize it better? I don't
think it would require much work.

> 
> > Furthermore I suggest "Manuals" section to be added to vger.kernel.org
> > in the style OpenBSD has:
> > http://openbsd.org/
> > http://www.openbsd.org/cgi-bin/man.cgi
> 
> Manpages are userland stuff and therefore do not belong on kernel.org.
> The kernel is documented in the Documentation/ directory in the source
> tree, and ultimately in the source itself.

The source is not documentation. From the source the reader can
incorrectly assume something about the interface that is not generally
true, but is just the case of the implementation in one version. And
then it will stop working with kernel upgrade.

Where are all the interfaces (i. e. towards userland and towards
hardware) of the kernel described? The Documentation/ directory contains
only very superficial documentation.

CL<

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2006-04-30 15:04 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-01-27  9:26 Kernel manual pages Karel Kulhavy
2006-01-27 14:30 ` Erik Mouw
2006-04-30 14:11   ` Karel Kulhavy
2006-01-27 14:31 ` sean
2006-01-27 14:31   ` sean

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.