How to find the help in Linux


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers How to find the help in Linux
# 1  
Old 12-09-2005
How to find the help in Linux

The command 'man' can display the usage of command, is there any other command that can show the help in Linux?

Thk a lot
# 2  
Old 12-09-2005
info

info will display longer tutorials about some utilties. Most of the basic commands like cat, cd, are in there as well.

FWIW - if you know some MS-DOS commands, several are based on unix, so you can do basic things just with that knowledge.
# 3  
Old 12-12-2005
The system can't find 'info' when i type .
# 4  
Old 12-13-2005
www.tldp.org

The Linux Documentation Project - Contains a wealth of guides and howtos.

There is a mirror of this website (even though it will be out of date) bundled with many distros and a load of documentation can usually be found under /usr/share/doc

Cheers
ZB
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Linux find help

I am trying to find "php.ini". So I do the command: find / "php.ini" 2>/dev/null It is giving me thousands of files that do not contain "php.ini". What am I doing wrong? (4 Replies)
Discussion started by: cokedude
4 Replies

2. Linux

How to Find out if an HP/Linux uses SAN or not?

Is there a command I can run on my HP /LINUX to see if uses SAN? This command work son AIX ls -al /DEV/rdsk however it does not work on HP Linux. Please let me know? Thanks (4 Replies)
Discussion started by: mrn6430
4 Replies

3. Red Hat

How to find Linux os series?

hai how to find linux os series (3 Replies)
Discussion started by: vinayd
3 Replies

4. Linux

help in find command in linux

I am trying to find pictures which contains a specific word in the file name. For example any .JPG files that contains "lm" at the beginning or at the middle or at the end of the file name. find / -iname "*.jpg" | ...what should go after the pipe? regards, Moaathe (2 Replies)
Discussion started by: kidwai
2 Replies

5. Red Hat

How to find VMware info from Linux?

Hi, I have two questions about Linux with VMware: (1) How to tell if the system is real or VMware virtual from a Linux platform without root privilege? (root can use 'dmidecode | grep -i vmware). The command 'dmesg | grep -i vmware' run by everyone is not always working for this purpose. (2)... (2 Replies)
Discussion started by: aixlover
2 Replies

6. UNIX for Dummies Questions & Answers

How to find the partition types in linux

How do we find the partition type in Linux? df -T will give me the mounted partition types like ufs, ext3 etc. How do I find out for say a newly added disk to the system? Please advise... Thanks (2 Replies)
Discussion started by: lubu
2 Replies

7. Linux

Find Page size in linux

Hi, How do i find Linux kernel page size using command ? Thanks in advance. (1 Reply)
Discussion started by: forumguest
1 Replies

8. Shell Programming and Scripting

Issue with Find command on Linux

Hi, I am issuing find command below mentioned ways but it givs different count. I don't understand the behaviour. Could any one have any clue? $ find . -mtime -5 -maxdepth 1 -exec ls -lrt {} \; | wc -l 169 $ find . -mtime -5 -maxdepth 1 | wc -l 47 $ find . -mtime -5 -maxdepth 1 | wc -l... (2 Replies)
Discussion started by: siba.s.nayak
2 Replies

9. UNIX for Advanced & Expert Users

Find in HP,AIX vs Linux

Hi Guys, Wondering if anyone can help me. I have a find command on a Linux box that works as expected: find \( -not -type d -or -not -name log -and -not -name loc -and -not -name usr -and -not -name etc -and -not -name tmp -and -not -name wrk -and -not -name changes -or -prune \) -and -not... (6 Replies)
Discussion started by: bParks
6 Replies
Login or Register to Ask a Question