Build Your Own AI Assistant Part 1 - Creating the Assistant
116820 Views
Is the new Raspberry Pi AI Kit better than Google Coral?
114678 Views
Control Arduino with Python using Firmata / PyFirmata
87081 Views
How to Map with LiDAR - using a Raspberry Pi Zero 2W, RPLidar and Rviz
57314 Views
Creating a Supercomputer with a Raspberry Pi 5 Cluster and Docker Swarm!
53588 Views
Node-Red Automation, MQTT, NodeMCU & MicroPython
52067 Views
Thinkman
Podman vs Docker
MicroPython Robotics
Bottango and Isaaca
LidarBot
Snaszy NAS a 3D printed NAS for Raspberry Pi
Running K3s on Raspberry Pi
0h 36m
From Docker to Podman
0h 28m
MicroPython Robotics Projects with the Raspberry Pi Pico
0h 24m
Bottango Basics
0h 22m
Mini-Rack 3D Design Tutorial
0h 20m
Using the Raspberry Pi Pico's Built-in Temperature Sensor
Learn Linux from the basics to advanced topics.
Learn how to use a Raspberry Pi Pico
Learn MicroPython the best language for MicroControllers
Learn Docker, the leading containerization platform. Docker is used to build, ship, and run applications in a consistent and reliable manner, making it a popular choice for DevOps and cloud-native development.
Learn how to build SMARS robots, starting with the 3D Printing the model, Designing SMARS and Programming SMARS
Learn how to build robots, starting with the basics, then move on to learning Python and MicroPython for microcontrollers, finally learn how to make things with Fusion 360.
Learn Python, the most popular programming language in the world. Python is used in many different areas, including Web Development, Data Science, Machine Learning, Robotics and more.
Learn how to create robots in 3D, using Fusion 360 and FreeCAD. The models can be printed out using a 3d printer and then assembled into a physical robot.
Learn how to create Databases in Python, with SQLite3 and Redis.
KevsRobots Learning Platform
8% Percent Complete
By Kevin McAleer, 3 Minutes
As you start working with the Linux command line, you might come across commands or options you’re not familiar with. The man command is an invaluable tool that provides detailed documentation for almost every command available on the system. In this lesson, you’ll learn how to use man to access these manual pages, helping you understand and utilize commands effectively.
man
The man command, short for “manual,” provides a comprehensive reference for most commands and utilities in Linux. Each command typically has an associated manual page (or “man page”) that explains what the command does, how to use it, and what options are available.
To use the man command, simply type man followed by the name of the command you want to learn more about. For example, to read the manual page for the ls command:
ls
man ls
This will open the manual page for ls, displaying detailed information on how to use it.
Once inside a manual page, you can navigate using the following keys:
n
Most man pages follow a similar structure, typically including the following sections:
For example, in the ls man page, the OPTIONS section would describe flags like -l (long listing format) and -a (include hidden files).
-l
-a
Sometimes, you might not know the exact command but want to search for a keyword. You can do this using:
man -k search_term
This command searches the short descriptions in all the man pages for the keyword you provide and returns a list of relevant commands. For example:
man -k directory
This might return commands like mkdir, rmdir, and ls, which all relate to directories.
mkdir
rmdir
In this lesson, you learned how to use the man command to access detailed documentation for Linux commands. Understanding how to navigate and interpret man pages is crucial for mastering the command line and solving problems independently.
Try using the man command to learn more about the following commands:
man pwd
man mkdir
man chmod
Explore the options and examples provided in each man page to deepen your understanding of these commands.
< Previous Next >
You can use the arrows ← → on your keyboard to navigate between lessons.
← →