Re: No man page for gcc

2022-03-12 Thread Roberto C . Sánchez
On Sat, Mar 12, 2022 at 10:36:57PM +0100, Steve Keller wrote: > On debian bullseye I have installed GCC but don't find any manual page. > What am I missing? > You'll need to add 'contrib' and 'non-free' to your sources and then install the gcc-doc package [0]. Regards, -Roberto [0] https://pack

No man page for gcc

2022-03-12 Thread Steve Keller
On debian bullseye I have installed GCC but don't find any manual page. What am I missing? Steve

Re: umask has no man page?

2014-11-11 Thread shawn wilson
While I like the dhelp script idea, I think man is a pure UX issue - man should generally DWIM because if I type "man foo", I don't want to jump through hoops. There times (looking at libraries and system calls and the like) that knowing the system helps. However, with >20 (IDR how many - a bunch)

Re: umask has no man page?

2014-11-11 Thread songbird
Andrei POPESCU wrote: > songbird wrote: >> are you suggesting which be altered or the >> manual page be amended to include more information >> about what to do when which fails to report any >> matching command? > > I'd rather see which(1) be more informative about built-ins. there's a lot of

Re: umask has no man page?

2014-11-11 Thread Andrei POPESCU
On Lu, 10 nov 14, 21:49:30, songbird wrote: > Andrei POPESCU wrote: > > On Lu, 03 nov 14, 13:56:36, Alexis wrote: > >> zsh, however, is more helpful: > >> > >> $ which umask > >> umask: shell built-in command > > > > Maybe a (wishlist) bug against debianutils is in order? > > is zsh providing a

Re: umask has no man page?

2014-11-10 Thread songbird
Andrei POPESCU wrote: > On Lu, 03 nov 14, 13:56:36, Alexis wrote: >>=20 >> Iain M Conochie writes: >>=20 >> > However: >> >=20 >> > $: which umask >> > $: >> >=20 >> > So umask is _not_ a program (in the sense that there is no binary >> > called umask on the system) >>=20 >> zsh, however, is more h

Re: umask has no man page?

2014-11-04 Thread Carl Fink
asked, and some of the > questions they may have raised if you'd followed the guide on how to ask > smart questions is:- > > Q. Why is there no man page for BASH built-ins? I don't need to ask this because I know the answer. In fact, I explicitly stated the answer in my

Re: umask has no man page?

2014-11-04 Thread Scott Ferguson
On 03/11/14 13:56, Alexis wrote: > > Iain M Conochie writes: > >> However: >> >> $: which umask >> $: >> >> So umask is _not_ a program (in the sense that there is no binary >> called umask on the system) > > zsh, however, is more helpful: > > $ which umask > umask: shell built-in command BAS

Re: umask has no man page?

2014-11-04 Thread Scott Ferguson
uestions they may have raised if you'd followed the guide on how to ask smart questions is:- Q. Why is there no man page for BASH built-ins? A. Because they are built-ins. There documentation is internal to the command (shell) - which has it's own man page, as per tradition (separate the

Re: umask has no man page?

2014-11-04 Thread berenger . morel
Le 03.11.2014 04:30, Joe Pfeiffer a écrit : Carl Fink writes: When I wanted the options for umask, I typed 'man umask' and got the man page for it as a C header diretive? (I'm not a C programmer, but it seemed to be for C header files and came from section 2.) This is darn confusing for a

Re: Re: umask has no man page?

2014-11-03 Thread Andrei POPESCU
On Lu, 03 nov 14, 13:56:36, Alexis wrote: > > Iain M Conochie writes: > > > However: > > > > $: which umask > > $: > > > > So umask is _not_ a program (in the sense that there is no binary > > called umask on the system) > > zsh, however, is more helpful: > > $ which umask > umask: shell buil

Re: umask has no man page?

2014-11-03 Thread Alexis
Karl E. Jorgensen writes: > Well, it *appears* that zsh is more helpful. But only because the > "which" command itself is a built-in for zsh :-) (it isn't for bash) > > So you have the opposite problem: "man which" gives you the wrong > manual page :-) (but presumably very similar) Indeed you'

Re: Re: umask has no man page?

2014-11-03 Thread Karl E. Jorgensen
Hi On Mon, Nov 03, 2014 at 01:56:36PM +1100, Alexis wrote: > > Iain M Conochie writes: > > > However: > > > > $: which umask > > $: > > > > So umask is _not_ a program (in the sense that there is no binary > > called umask on the system) > > zsh, however, is more helpful: > > $ which umask >

Re: umask has no man page?

2014-11-02 Thread Alexis
Joe Pfeiffer writes: > The underlying problem is that umask isn't a standalone command, it's a > shell builtin. So if you look at the bash manpage you can find the > (very terse) documention; of course, there's no hint anywhere that you > should do that. Just as for (looking at some other built

Re: umask has no man page?

2014-11-02 Thread Joel Rees
On Mon, Nov 3, 2014 at 11:57 AM, The Wanderer wrote: > [...] > You might be able to find something out from 'man -d umask', and > examining the resulting debugging output... it seems to indicate exactly > what file it ends up using, and what path it takes in figuring out what > file to use. Though

Re: umask has no man page?

2014-11-02 Thread Joe Pfeiffer
Carl Fink writes: > When I wanted the options for umask, I typed 'man umask' and got the man > page for it as a C header diretive? (I'm not a C programmer, but it seemed > to be for C header files and came from section 2.) > > This is darn confusing for a new user. I have been around long enough

Re: umask has no man page?

2014-11-02 Thread The Wanderer
On 11/02/2014 at 09:44 PM, Joel Rees wrote: > On Mon, Nov 3, 2014 at 12:26 AM, The Wanderer > wrote: > >> On 11/02/2014 at 10:12 AM, Joel Rees wrote: >> >>> Seems to be done, not by symlink, but in the man db. >> >> What leads you to that conclusion? >> >> AFAIK, if 'man xyz' brings up a man

Re: Re: umask has no man page?

2014-11-02 Thread Alexis
Iain M Conochie writes: > However: > > $: which umask > $: > > So umask is _not_ a program (in the sense that there is no binary > called umask on the system) zsh, however, is more helpful: $ which umask umask: shell built-in command Alexis. -- To UNSUBSCRIBE, email to debian-user-requ..

Re: umask has no man page?

2014-11-02 Thread Joel Rees
On Mon, Nov 3, 2014 at 12:26 AM, The Wanderer wrote: > On 11/02/2014 at 10:12 AM, Joel Rees wrote: > >> [...] >> Seems to be done, not by symlink, but in the man db. > > What leads you to that conclusion? > > AFAIK, if 'man xyz' brings up a man page from section 1, then there is > an xyz.1 or xyz.

Re: umask has no man page?

2014-11-02 Thread Iain M Conochie
Perhaps apropos is your friend here? :$ apropos umask pam_umask (8)- PAM module to set the file mode creation mask As I said in the original, I found it almost immediately. However, doesn't the Debian policy manual require a man page for every program? Not being a DD or DM I cannot

Re: umask has no man page?

2014-11-02 Thread Carl Fink
On Sun, Nov 02, 2014 at 03:51:25PM +, Iain M Conochie wrote: > > On 02/11/14 05:58, Carl Fink wrote: > >On Sun, 2014-11-02 at 14:17 +1100, Scott Ferguson wrote: > >>Succinct! > >> > >>man pam_umask? > >That is not a solution to the original question I asked, unless you > >alias it to man umask

Re: umask has no man page?

2014-11-02 Thread John Hasler
Joel Rees writes: > I think there was an OS back way back when, that had a "learn" > command. (As in, "I want to `learn' about .") Don't remember > which, though. Or it might have been an app. UNIX: http://itservices.usc.edu/unix/commands/learn/ -- John Hasler jhas...@newsguy.com Elmwood, WI USA

Re: umask has no man page?

2014-11-02 Thread The Wanderer
On 11/02/2014 at 10:51 AM, Iain M Conochie wrote: > On 02/11/14 05:58, Carl Fink wrote: > >> On Sun, 2014-11-02 at 14:17 +1100, Scott Ferguson wrote: >> >>> Succinct! >>> >>> man pam_umask? >> >> That is not a solution to the original question I asked, unless >> you alias it to man umask. You

Re: umask has no man page?

2014-11-02 Thread Iain M Conochie
On 02/11/14 05:58, Carl Fink wrote: On Sun, 2014-11-02 at 14:17 +1100, Scott Ferguson wrote: Succinct! man pam_umask? That is not a solution to the original question I asked, unless you alias it to man umask. You don't _type_ pam_umask. Carl Perhaps apropos is your friend here? :$ apropos

Re: umask has no man page?

2014-11-02 Thread The Wanderer
On 11/02/2014 at 10:12 AM, Joel Rees wrote: > On Sun, Nov 2, 2014 at 9:35 PM, The Wanderer > wrote: > >> On 11/02/2014 at 03:23 AM, Joel Rees wrote: >>> Hmm. What do I get when I try to do a man umask? >>> >>> BASH_BUILTINS (1) >>> >>> I wonder why. I have a memory of doing something like ins

Re: umask has no man page?

2014-11-02 Thread Joel Rees
On Sun, Nov 2, 2014 at 9:35 PM, The Wanderer wrote: > On 11/02/2014 at 03:23 AM, Joel Rees wrote: > >> 2014/11/02 11:19 "Carl Fink" : >> >>> When I wanted the options for umask, I typed 'man umask' and got >>> the man page for it as a C header diretive? (I'm not a C >>> programmer, but it seemed t

Re: umask has no man page?

2014-11-02 Thread The Wanderer
On 11/02/2014 at 03:23 AM, Joel Rees wrote: > 2014/11/02 11:19 "Carl Fink" : > >> When I wanted the options for umask, I typed 'man umask' and got >> the man page for it as a C header diretive? (I'm not a C >> programmer, but it seemed to be for C header files and came from >> section 2.) >> >>

Re: umask has no man page?

2014-11-02 Thread Joel Rees
2014/11/02 11:19 "Carl Fink" : > > When I wanted the options for umask, I typed 'man umask' and got the man > page for it as a C header diretive? (I'm not a C programmer, but it seemed > to be for C header files and came from section 2.) > > This is darn confusing for a new user. I have been around

Re: umask has no man page?

2014-11-02 Thread Sven Joachim
On 2014-11-02 04:06 +0100, The Wanderer wrote: > On 11/01/2014 at 10:18 PM, Carl Fink wrote: > >> Surely a symbolic link could be set up for umask as well as the >> others (bg, eval, fg, read, etc.)? > > One could, but I don't think I'd say it would be a good idea, and > although the Debian bash m

Re: umask has no man page?

2014-11-01 Thread Carl Fink
On Sun, 2014-11-02 at 14:17 +1100, Scott Ferguson wrote: > Succinct! > > man pam_umask? That is not a solution to the original question I asked, unless you alias it to man umask. You don't _type_ pam_umask. Carl -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject

Re: umask has no man page?

2014-11-01 Thread Scott Ferguson
On 02/11/14 13:27, John Hasler wrote: > An addition to the "See Also" section of the umask man page would > suffice. > Succinct! man pam_umask? Kind regards -- "Turns out you can't back a winner in the Gish Gallop" ~ disappointed punter -- To UNSUBSCRIBE, email to debian-user-requ...@lists

Re: umask has no man page?

2014-11-01 Thread Scott Ferguson
On 02/11/14 13:18, Carl Fink wrote: > When I wanted the options for umask, I typed 'man umask' and got the man > page for it as a C header diretive? (I'm not a C programmer, but it seemed > to be for C header files and came from section 2.) > > This is darn confusing for a new user. Agreed (also

Re: umask has no man page?

2014-11-01 Thread The Wanderer
On 11/01/2014 at 10:18 PM, Carl Fink wrote: > When I wanted the options for umask, I typed 'man umask' and got the > man page for it as a C header diretive? (I'm not a C programmer, but > it seemed to be for C header files and came from section 2.) > > This is darn confusing for a new user. I hav

Re: umask has no man page?

2014-11-01 Thread Roman Czyborra
Dear Carl Fink, my unpleasant experience so far is that our package maintainers are keener on keeping their bug closing rate appear very fast in the statistical competition than in understanding and catering to your visions of user-friendlines. Unless you mind disappointments try that path also. Y

Re: umask has no man page?

2014-11-01 Thread Carl Fink
On Sat, Nov 01, 2014 at 09:27:39PM -0500, John Hasler wrote: > An addition to the "See Also" section of the umask man page would > suffice. It isn't a general solution, though. Commands like fg just don't have man pages. The symlink idea actually served to help (and educate) the new user. -- Carl

Re: umask has no man page?

2014-11-01 Thread John Hasler
An addition to the "See Also" section of the umask man page would suffice. -- John Hasler jhas...@newsguy.com Elmwood, WI USA -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: https://lists.d

umask has no man page?

2014-11-01 Thread Carl Fink
When I wanted the options for umask, I typed 'man umask' and got the man page for it as a C header diretive? (I'm not a C programmer, but it seemed to be for C header files and came from section 2.) This is darn confusing for a new user. I have been around long enough (slink) that I quickly realiz

Re: no man pages... ??

2012-08-30 Thread songbird
Tony Baldwin wrote: ... try mandb -c as root. songbird -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/70u5h9-aii@id-306963.user.uni-berlin.de

RESOLVED: no man pages... ??

2012-08-30 Thread Tony Baldwin
On Fri, Aug 31, 2012 at 12:00:25AM -0400, Tony Baldwin wrote: > On Thu, Aug 30, 2012 at 11:56:17PM -0400, Tony Baldwin wrote: > > On Thu, Aug 30, 2012 at 09:55:10PM -0400, Tony Baldwin wrote: > > > My man pages have all disappeared... > > > > > > I did "man netstat" to look something up, and I go

Re: no man pages... ??

2012-08-30 Thread Tony Baldwin
but it was an empty page. > > > > I tried > > man ls > > man cd > > man aptitude > > etc., etc... > > > > same thing...no man pages... > > I've never, ever, in over a decade of using gnu/linux, ever lost my man > > pages. Man p

Re: no man pages... ??

2012-08-30 Thread Tony Baldwin
On Thu, Aug 30, 2012 at 09:55:10PM -0400, Tony Baldwin wrote: > My man pages have all disappeared... > > I did "man netstat" to look something up, and I got nothing... > I mean, no error, but it was an empty page. > > I tried > man ls > man cd > man aptitud

Re: no man pages... ??

2012-08-30 Thread Tony Baldwin
; >I tried > >man ls > >man cd > >man aptitude > >etc., etc... > > > >same thing...no man pages... > > If all else fails > http://manpages.debian.net/cgi-bin/man.cgi?query= > > Apologies - I'm an elderly Windoze user who predates Linus' p

Re: no man pages... ??

2012-08-30 Thread Richard Owlett
Tony Baldwin wrote: My man pages have all disappeared... I did "man netstat" to look something up, and I got nothing... I mean, no error, but it was an empty page. I tried man ls man cd man aptitude etc., etc... same thing...no man pages... I've never, ever, in over a deca

no man pages... ??

2012-08-30 Thread Tony Baldwin
My man pages have all disappeared... I did "man netstat" to look something up, and I got nothing... I mean, no error, but it was an empty page. I tried man ls man cd man aptitude etc., etc... same thing...no man pages... I've never, ever, in over a decade of using gnu/linux, e

Re: Why no man pages?

2001-10-19 Thread Ken Mead
Thanks, man-db did it. Have a good weekend all. KM - Original Message - From: "Meir Kriheli" <[EMAIL PROTECTED]> To: Sent: Friday, October 19, 2001 5:36 PM Subject: Re: Why no man pages? > On Friday 19 October 2001 22:50, Ken Mead wrote: > > Hello: > > &

Re: Why no man pages?

2001-10-19 Thread Meir Kriheli
found" > > However, I do have directories in /usr/man/...? > > If I try to apt-get install manpages I get newest version in response. If I > try to dpkg-reconfigure I get the prompt back but still no man pages. > > Thank you for your time, > > KM apt-get install man-db Des

Re: Why no man pages?

2001-10-19 Thread Greg Wiley
On Friday, October 19, 2001 1:50 PM, [EMAIL PROTECTED] wrote: > When i run the man command I get this error back: > > "bash: man: command not found" > > However, I do have directories in /usr/man/...? I had a Woody upgrade that silently removed man support from my box. apt-get install man-db d

Re: Why no man pages?

2001-10-19 Thread J.H.M. Dassen \(Ray\)
On Fri, Oct 19, 2001 at 16:50:55 -0400, Ken Mead wrote: > "bash: man: command not found" apt-get install man-db HTH, Ray -- RUMOUR Believe all you hear. Your world may not be a better one than the one the blocks live in but it'll be a sight more vivid. - The Hipcrime Vocab by Chad C

Re: Why no man pages?

2001-10-19 Thread Josh McKinney
On approximately Fri, Oct 19, 2001 at 04:50:55PM -0400, Ken Mead wrote: > Hello: > > I have yet to find a fix for this problem I am experiencing. I have a > testing box without any man pages(command)! > > When i run the man command I get this error back: > > "bash: man: command not found" > > H

RE: Why no man pages?

2001-10-19 Thread Mullins, Ron
>I have yet to find a fix for this problem I am experiencing. I have a >testing box without any man pages(command)! > >When i run the man command I get this error back: > >"bash: man: command not found" Make sure you have man-db installed: apt-get install man-db -- Those who would give up essen

Why no man pages?

2001-10-19 Thread Ken Mead
ages I get newest version in response. If I try to dpkg-reconfigure I get the prompt back but still no man pages. Thank you for your time, KM

Re: man errors when no man page available

2000-12-07 Thread Chad '^chewie' Walstrom
On Thu, Dec 07, 2000 at 09:28:55AM -0600, Robert Guthrie wrote: > Sometimes when I try to view a man page that doesn't exist (try man > nomanpage, or man foo), I get these errors: > man: warning: /usr/share/man/man1/vi.1.gz is a dangling symlink > man: can't open /usr/share/man/man1/vi.1: No su

man errors when no man page available

2000-12-07 Thread Robert Guthrie
Sometimes when I try to view a man page that doesn't exist (try man nomanpage, or man foo), I get these errors: man: warning: /usr/share/man/man1/vi.1.gz is a dangling symlink man: can't open /usr/share/man/man1/vi.1: No such file or directory man: warning: /usr/share/man/man1/vi.1.gz: bad sym

Re: debconf error (no man page)

2000-01-07 Thread Joey Hess
n do. I have added a pointer to the usersguide to the main README file to ensure that people notice it. > I also was under the impression that EVERY package in debian > has a man page (even that one that says "the program has no man page"). There is no program named "debconf&q

Re: debconf error (no man page)

2000-01-06 Thread Ryan White
for debconf to change the default dialog back to dialog (or text). The reason I had a hard time was there is no man page for debconf. I also did not find any help in doc/debconf except something that refered to dpkg-preconfigure. Which made me think to use dpkg-reconfigure debconf (this did work and

Re: No man

1997-07-04 Thread Christian Hudon
On Jul 4, Will Lowe wrote > Ok. I upgraded from 1.2 -> 1.3 the other day. Got an error saying that > "mandb" conflicted with "man", so I purged man and installed "mandb", > thinking that the latter replaced the former. Now I've got no man.

No man

1997-07-04 Thread Will Lowe
Ok. I upgraded from 1.2 -> 1.3 the other day. Got an error saying that "mandb" conflicted with "man", so I purged man and installed "mandb", thinking that the latter replaced the former. Now I've got no man. Any clues?