• DevOps
    Case Study

    How we built a resilient multi-account, multi-cloud solution for a Health Tech service provider!

    READ CASESTUDY
    icon

    24/7 DevOps as a Service

    Round-the-clock DevOps for uninterrupted efficiency.

    icon

    Infrastructure as a Code

    Crafting infrastructure with ingenious code.

    icon

    CI/CD Pipeline

    Automated CI/CD pipeline for seamless deployments.

    icon

    DevSecOps

    Integrated security in continuous DevOps practices.

    icon

    Hire DevOps Engineers

    Level up your team with DevOps visionaries.

    icon

    Consulting Services

    Navigate success with expert DevOps consulting.

  • TechOps
    Case Study

    How we built a scalable Odoo solution for a Travel Tech service provider!

    READ CASESTUDY

    WEB HOSTING SUPPORT

    icon

    HelpDesk Support

    Highly skilled 24/7 HelpDesk Support

    icon

    Product Support

    Boost your product support with our expertise.

    MANAGED SERVICES

    icon

    Server Management

    Don’t let server issues slow you down. Let us manage them for you.

    icon

    Server Monitoring

    Safeguard your server health with our comprehensive monitoring solutions.

    STAFF AUGMENTATION

    icon

    Hire an Admin

    Transform your business operations with our expert administrative support.

    icon

    Hire a Team

    Augment your workforce with highly skilled professionals from our diverse talent pool.

  • CloudOps
    Case Study

    How we helped a Private Deemed University in India, save US $3500/m on hosting charges!

    READ CASESTUDY
    icon

    AWS Well Architected Review

    Round-the-clock for uninterrupted efficiency

    icon

    Optimize

    Efficient CloudOps mastery for seamless cloud management

    icon

    Manage

    Automated CI/CD pipeline for seamless deployments

    icon

    Migrate

    Upgrade the journey, Migrate & Modernize seamlessly

    icon

    Modernize

    Simplify compliance complexities with our dedicated services

    icon

    FinOps as a Service

    FinOps as a Service

  • SecOps
    Case Study

    How we built a scalable Odoo solution for TravelTech service provider!

    READ CASESTUDY
    icon

    VAPT

    Vulnerability Assessment and Penetration Testing

    icon

    Source Code Review

    Ensuring source code security ans safe practices to reduce risks

    icon

    Security Consultation

    On demand services for improving server security

    icon

    System Hardening

    Reduced vulnerability and proactive protection

    icon

    Managed SoC

    Monitors and maintains system security. Quick response on incidents.

    icon

    Compliance as a Service

    Regulatory compliance, reduced risk

  • Insights
    Case Study

    How we helped a Private Deemed University in India, save US $3,500/m on hosting charges!

    READ CASESTUDY
    icon

    Blog

    Explore our latest articles and insights

    icon

    Case Studies

    Read about our client success stories

    icon

    Flipbook

    Explore our latest Flipbook

    icon

    Events

    Join us at upcoming events and conferences

    icon

    Webinars

    Watch our educational webinar series

  • Our Story
  • Contact Us

Interested to collaborate?

Get in touch with us!

Ready to elevate your business with certified cloud expertise? Contact us today to learn how our team can help you leverage cloud technology to drive growth, streamline operations, and enhance security.

  • AWSAWS
  • Azure CloudAzure Cloud
  • Google CloudGoogle Cloud
  • Akamai CloudAkamai Cloud
  • OVHOVH
  • Digital OceanDigital Ocean
  • HetznerHetzner
  • Kubernetes Consultancy Services
  • K8s & Cloud native Solutions
  • 24/7 Infrastructure Monitoring
  • DevOps as a Service
  • Cloud CI/CD Solutions
  • White Labeled MSP Support
  • Our story
  • Life@SupportSages
  • Insights
  • Careers
  • Events
  • Contact Us

Connect with us!


LinkedInFacebookXInstagramYouTube

aws partneraws advanced partner
SupportSages

Copyright © 2008 – 2026 SupportSages Pvt Ltd. All Rights Reserved.
Privacy PolicyLegal TermsData ProtectionCookie Policy
Chapter 6 Getting help in Linux!

Chapter 6 Getting help in Linux!

Faheem P.

  • 4 min read
SupportSages Logo

Generating audio, please wait...

Linux provides help to its users to have a better experience . It helps the users in how to implement the commands, its usage, its format , its function etc. Let us see some of the Linux server basics help commands

The several helps available helps are:-

  • -h or –help
  • whatis ,makewhatis, apropos
  • man , info
  • /usr/share/doc
  • /usr/share/doc/howto/en
  • TLDP
  • GUI based help by various distros

-h or –help :-
command [options] [arguments]
commands like ls, cat, man
Significance of space

Word options and Single letter options , – and —

arguments a.k.a parameters

whatis:-

whatis searches a set of database files containing short descriptions of system commands for keywords and displays the result on the standard output. Only complete word matches are displayed. The whatis database is created using the command makewhatis. Closely related commands include apropos and man

$whatis whatis:-
whatis               (1)  – search the whatis database for complete words

apropos :- The Underutilized Linux Command!! When you dont remember the command to use.

$whatis apropos:-

apropos              (1)  – search the whatis database for strings

What is the difference between whatis and apropos

whatis searches  a set of database files containing short descriptions of system commands for keywords and displays the result on the standard  output.  Only complete word matches are displayed.

apropos searches a set of database files containing short descriptions of system commands for keywords and displays the result on the standard output.

apropos -> man -k
whatis -> man -f

Man:-
Man – manual

  • man -S 5 command or man 5 command
  • The less command is internally used to display ‘man’ pages
  • The up and down arrow and other navigation keys may be used to move around the help page
  • Pressing the ‘q’ key will ‘quit’ the page and bring up the command prompt again.

Structure of Man pages:-

NAME – Name of the command – short description which make to the whatis DB.
SYNOPSIS – Give a short overview on available program options. For functions this sections lists corresponding include files and the prototype so the programmer knows the type and number of arguments as well as the return type.
DESCRIPTION – Detailed overview of the command and the purport of each of its ‘-‘ options and other command line parameters.
OPTIONS – A description of how each option affects program behaviour.
COMMANDS – Instruction that can be given to the program while it is running
FILES – Lists configuration files, startup files, and files the program directly operates on
ENVIRONMENT – Lists all environment variables that affect your program or function
DIAGNOSTICS – Posible Error messages displayed in the program.
EXAMPLE – Example Usage of the command
BUGS and AUTHOR section – used only by brave developers
SEE ALSO – Lists related man-pages and additional documentation.

Man Sections:-

  1. – User commands – ls, bash
  2. – Library functions related to system Calls – syscall, pipe
  3. – Other Library Functions – perror, strerror, errno (libc calls)
  4. – Special Files or Devices – null, mem
  5. – File Formats – aliases, man.config
  6. – Games –
  7. – Conventions and explanations – boot, bootparam
  8. – Administration and privileged commands – mkfs, ifconfig
  9. – Kernel
  10. L – Math library functions
  11. N – tcl functions

Info :- Not all commands have info. Info has more description and don’t cover all the options for a command. Use info and man together to understand a command completely

/usr/share/doc – Documentation that comes with individual packages. It has FAQ and other details like README, LICENSE

/usr/share/doc/howto/en – Sometimes howtos will be missing. It is the TLDP howtos in most cases.

TLDP :– The Linux Documentation Project – Has documentation on all topics about Linux, you will ever mess with !!

  • General
  • Howtos
  • Linux
  • Training

‘scp’ permission issue : simple fix!

SupportSages Logo
  • Linux
logo

Buggy wget again causing issues with Fantastico – Tells you installed, but fools you

SupportSages Logo
  • cPanel
  • Linux
logo

Chapter 10 Editing files in Linux.

SupportSages Logo
  • Howtos
  • Linux
  • Training
logo

Chapter 11 Basic Shell Scripting in Linux!

SupportSages Logo
  • Linux
logo

Posts by Faheem P.

Faheem enjoys learning new technologies and loves to implement cutting edge solutions. He is one of the most active member in various technical forums and is a familiar face in various brain storming sessions. He takes great pride in being an explorer and the best thing you can be sure about in his room is the backpack!!