LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - General
User Name
Password
Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.

Notices


Reply
  Search this Thread
Old 06-15-2007, 09:48 AM   #1
bneal
Member
 
Registered: Jun 2007
Location: Oklahoma City, OK
Distribution: RHEL 4; Suse 10.1, 10.2, FC6, Fedora 7
Posts: 57

Rep: Reputation: 15
HTML Man Pages


I am currently searching for Man Pages in HTML format that are available for download

I need this for my office but here are my issues
the company I work for will not allow linux boxes on the network the will also not allow me to bring documentation in on a USB key so my only option it to download them in HTML format to be viewed on a WinXP system

this is needed so that I and others can have local copies of the man pages for support purposes since the IT nazi's can/will block sites at random I do not want to rely on a specific site online so the only option is to DL a copy and store it locally

any help is greatly appriciated
 
Old 06-15-2007, 09:58 AM   #2
MensaWater
LQ Guru
 
Registered: May 2005
Location: Atlanta Georgia USA
Distribution: Redhat (RHEL), CentOS, Fedora, CoreOS, Debian, FreeBSD, HP-UX, Solaris, SCO
Posts: 7,831
Blog Entries: 15

Rep: Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669Reputation: 1669
You are doing support of Linux but aren't allowed to have Linux systems on which to work?

You need to escalate this through your management. You really can't do effective Linux support simply by using man pages. If nothing else you could setup a standalone system or network in your support area so that it doesn't touch the main network but gives you access to systems on which you can test what you're telling your clients.

To answer your question you'd need to find a "web crawler" software that would allow you to download from a given site and use it on yours. We did this a long time ago with some stuff we wanted on site but don't recall which package we used - we did put the results on Windoze XP desktops.
 
Old 06-15-2007, 10:49 AM   #3
nautilus
Member
 
Registered: Jun 2007
Location: London, Athens
Distribution: Debian, Ubuntu
Posts: 36

Rep: Reputation: 15
Try this:

http://man.he.net/

But I agree... I don't think you can be efficient in support just with html man ages...

At the worst case, if your IT department doesn't want to have linux boxes in the network (they could have just one, and everyone could ssh (putty, secure ssh) into it), they could install cygwin to your xp boxes... Your manager should do something about this!
 
Old 06-15-2007, 10:55 AM   #4
apeculiaz
LQ Newbie
 
Registered: Nov 2005
Distribution: Previously red hat,fedora,gentoo,debian; Currently,ubuntu,cygwin,mandriva
Posts: 14

Rep: Reputation: 0
Man Pages on Win XP

The first straightforward solution is: Man pages in Windows Help file format, i.e. chm format can be found at http://onnerby.se/~daniel/chm/.

Alternatively, you can install cygwin on any Windows; I've tested it on both XP and Vista RC1 and completely functional. The cygwin environment is using bash shell or X-windows based on what you choose to install. You can easily access any man pages for the linux program you've installed in it. Moreover, you can even test-run the program itself. For me, I used to run sshd, cvs server or subversion server on Windows XP using it and found it very stable.
 
Old 06-15-2007, 10:55 AM   #5
bneal
Member
 
Registered: Jun 2007
Location: Oklahoma City, OK
Distribution: RHEL 4; Suse 10.1, 10.2, FC6, Fedora 7
Posts: 57

Original Poster
Rep: Reputation: 15
I have been working on getting this fixed internally but there is a lot of red tape and hoops to jump thru
problem is I am a very small cog in a massive machine
this has been an ongoing problem for some time and the site director does not seems to be able to just go into IT and smack them in the head with a hammer or something
anyways enough ranting that's not what LQ is here for
thanks for the tips
 
Old 07-27-2007, 03:16 PM   #6
bneal
Member
 
Registered: Jun 2007
Location: Oklahoma City, OK
Distribution: RHEL 4; Suse 10.1, 10.2, FC6, Fedora 7
Posts: 57

Original Poster
Rep: Reputation: 15
just an update I was finally given permission to install RHEL4 in VMware as long as it doesn't have access to the corporate network, I am allowed to utilize the proxy for net access tho
 
Old 07-27-2007, 03:27 PM   #7
trickykid
LQ Guru
 
Registered: Jan 2001
Posts: 24,149

Rep: Reputation: 269Reputation: 269Reputation: 269
man pages are built right in on LQ as well.. http://man.linuxquestions.org/
 
Old 07-28-2007, 11:31 AM   #8
tredegar
LQ 5k Club
 
Registered: May 2003
Location: London, UK
Distribution: Fedora38
Posts: 6,147

Rep: Reputation: 435Reputation: 435Reputation: 435Reputation: 435Reputation: 435
Quote:
I am currently searching for Man Pages in HTML format
Would pdf do you instead?
A very basic script, with absolutely no error checking at all:
Code:
#!/bin/bash
# Script to generate man pages as pdf files
# Usage man2pdf commandname
man -t $1 > foo.ps && ps2pdf foo.ps && rm foo.ps && mv foo.pdf $1.pdf
I like manpages as pdfs
 
Old 07-30-2007, 07:29 AM   #9
bneal
Member
 
Registered: Jun 2007
Location: Oklahoma City, OK
Distribution: RHEL 4; Suse 10.1, 10.2, FC6, Fedora 7
Posts: 57

Original Poster
Rep: Reputation: 15
I thank you for the tip

since I was finally allowed to install RHEL4 in VMware I no longer need man pages exported to a format that I can access from Windows

again I thank everyone for the tips they were very useful during my transition into this dept until I finally got the ok for VMware
 
Old 07-30-2007, 12:08 PM   #10
dwhitney67
Senior Member
 
Registered: Jun 2006
Location: Maryland
Distribution: Kubuntu, Fedora, RHEL
Posts: 1,541

Rep: Reputation: 335Reputation: 335Reputation: 335Reputation: 335
Congrats on your solution.

If however you still require another approach, you could always leave the linux system at your home and access it remotely from your office using an SSH-client.
 
  


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 On
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
C++ man pages Guest1234 Linux - Newbie 2 06-29-2008 09:12 AM
LQ man pages simcox1 LQ Suggestions & Feedback 1 08-06-2006 09:25 AM
C++ man pages Guest1234 Ubuntu 0 05-11-2005 02:45 AM
Cookie Sharing Between CGI generated HTML pages and standard HTML pages rkwhited Linux - Newbie 5 08-15-2004 07:39 AM
man pages haobaba1 Linux - General 4 07-30-2003 02:09 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - General

All times are GMT -5. The time now is 05:37 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