
- Kali Linux Tutorial
- Kali Linux - Home
- Installation & Configuration
- Information Gathering Tools
- Vulnerability Analyses Tools
- Kali Linux - Wireless Attacks
- Website Penetration Testing
- Kali Linux - Exploitation Tools
- Kali Linux - Forensics Tools
- Kali Linux - Social Engineering
- Kali Linux - Stressing Tools
- Kali Linux - Sniffing & Spoofing
- Kali Linux - Password Cracking Tools
- Kali Linux - Maintaining Access
- Kali Linux - Reverse Engineering
- Kali Linux - Reporting Tools
- Kali Linux Useful Resources
- Kali Linux - Quick Guide
- Kali Linux - Useful Resources
- Kali Linux - Discussion
How to know what the ‘errno’ means in Linux?
Errno is a value that you get when the command you run returns the value of the call indicating an error. There is a header file that defines the integer variable errno, which is set by the system calls and some library function in the event of an error to let the developer know what’s wrong.
In simple terms, the “errnos” are symptoms of operating system errors. Generally produced by failed operating system calls.
In UNIX, the errnos are defined in upper case letters.
Example
EPERM ENOENT ESRCH EINTR EIO ENXIO
In the above examples, some formatted errnos are mentioned that have different values and meaning attached to them.
While ‘errno’ is present on most Linux based systems, you can still download the tool with the help of the commands shown below.
For Ubuntu/Fedora
sudo apt-get install errno
For CentOS
yum install errno
Once we have the errno tool installed we can list out all the errno symbols and their meanings attached with them with the help of the command shown below −
errno -l
Output
1 EPERM Operation not permitted 2 ENOENT No such file or directory 3 ESRCH No such process 4 EINTR Interrupted system call 5 EIO Input/output error 6 ENXIO No such device or address 7 E2BIG Argument list too long 8 ENOEXEC Exec format error 9 EBADF Bad file descriptor 10 ECHILD No child processes
It should be noted that there are more than 130 entries in the above output, I just listed out the top 10.
As we can see we have the description attached to each errno and with the help of the above output we can easily determine what the ‘errno’ actually means.
Another simpler way is to simply print the numbered errno, instead of printing the entire table.
Command
errno 2
Output
No such file or directory
- Related Articles
- Standard errno system symbols in Python
- Crucial Linux ls Commands to Know
- All You Need To Know About Processes in Linux
- What does /* in MySQL means?
- What is the Bisecting K-Means?
- How to create the boxplots in base R ordered by means?
- How to find the column means by factor levels in R?
- 3 Useful Hacks Every Linux User Must Know
- What does buffer flush means in C++ ?
- What is K-means clustering?
- What does indirectly proportional means?
- What does elliptical orbit means?
- The Great Resignation What It Means for Employers
- How does the k-means algorithm work?
- Yeast Infections in Men: What to Know
