This commit is contained in:
Xiaobin.Liu 2023-07-30 19:53:31 +08:00
parent 14287c5b44
commit 5046876854
2 changed files with 220 additions and 220 deletions

View File

@ -1,220 +0,0 @@
[#]: subject: "What are Exit Codes in Linux?"
[#]: via: "https://itsfoss.com/linux-exit-codes/"
[#]: author: "Pranav Krishna https://itsfoss.com/author/pranav/"
[#]: collector: "lkxed"
[#]: translator: "lxbwolf"
[#]: reviewer: " "
[#]: publisher: " "
[#]: url: " "
What are Exit Codes in Linux?
======
An exit code or exit status tells us about the status of the last executed command. Whether the command was completed successfully or ended with an error. This is obtained after the command terminates.
**The basic ideology is that programs return the exit code `0` to indicate that it executed successfully without issues. Code `1` or anything other than 0 is considered unsuccessful.**
There are many more exit codes other than 0 and 1, which I'll cover in this article.
### Various exit codes in Linux shell
Let us take a quick look at the prominent exit codes in the Linux shell:
| Exit code | Meaning of the code |
| :- | :- |
| `0` | Command executed with no errors |
| `1` | Code for generic errors |
| `2` | Incorrect command (or argument) usage |
| `126` | Permission denied (or) unable to execute |
| `127` | Command not found, or PATH error |
| `128+n` | Command terminated externally by passing signals, or it encountered a fatal error |
| `130` | Termination by Ctrl+C or SIGINT (_termination code 2 or keyboard interrupt_) |
| `143` | Termination by SIGTERM (_default termination_) |
| `255/*` | Exit code exceeded the range 0-255, hence wrapped up |
> 📋 The termination signals like `130` (SIGINT or `^C`) and `143` (SIGTERM) are prominent, which are just `128+n` signals with `n` standing for the termination code.
Now that you are briefly familiar with the exit codes let's see about their usage.
### Retrieving the exit code
The exit code of the previously executed command is stored in the [special variable][1] `$?`. You can retrieve the exit status by running:
```
echo $?
```
This will be used in all our demonstrations to retrieve the exit code.
Note that the _exit_ command supports carrying the same exit code of the previous command executed.
### Exit code 0
Exit code `0` means that the command is executed without errors. This is ideally the best case for the completion of commands.
For example, let us run a basic command like this
```
neofetch
echo $?
```
![][2]
This exit code `0` means that the particular command was executed successfully, nothing more or less. Let us demonstrate some more examples.
You may try [killing a process][3]; it will also return the code `0`.
```
pkill lxappearance
```
![][4]
Viewing a file's contents will also return an exit code 0, which implies **only** that the 'cat' command executed successfully.
### Exit code 1
Exit code `1` is also a common one. It generally means the command terminated with a generic error.
For example, using the [package manager][5] without sudo permissions results in code 1. In Arch Linux, if I try this:
```
pacman -Sy
```
It will give me exist code as 1 meaning the last command resulted in error.
![exit code 1 (impermissible operation resulted in this code)][6]
> 📋 If you try this in Ubuntu-based distros (`apt update`without sudo), you get 100 as an error code for running 'apt' without permissions. This is not a standardized error code, but one specific to apt.
While this is a general understanding, we can also interpret this as "operation impermissible".
Operations like dividing by zero also result in code 1.
![Division by zero results in code 1][7]
### Exit code 2
This exit code is given out when the command executed has a syntax error. Misusing the arguments of commands also results in this error.
It generally suggests that the command could not execute due to incorrect usage.
For example, I added two hyphens to an option that's supposed to have one hyphen. Code 2 was given out.
```
grep --z file.txt
```
![Invalid argument resulted in exit code 2][8]
When permission is denied, like accessing the /root folder, you get error code 2.
![Permission denied gives out code 2][9]
### Exit code 126
126 is a peculiar exit code since it is used to indicate a command or script was not executed due to a permission error.
This error can be found when you try executing a shell script without giving execution permissions.
![][10]
Note that this exit code appears only for the '_execution_' of scripts/commands without sufficient permissions, which is different from a generic Permission Denied error.
So, on't confuse it with the previous example you saw with exit code 2. There, ls command ran and the permission issue came with the directory it was trying to execute. Here, the permission issues came from the script itself.
### Exit code 127
This is another common one. Exit code 127 refers to "[command not found][11]". It usually occurs when there's a typo in the command executed or the required executable is not in the $PATH variable.
For example, I often see this error when I try executing a script without its path.
![Script executed without the path gives "command not found" or code 127][12]
Or when the executable file you're trying to run, is not listed in the `$PATH` variable. You can rectify this by [adding the parent directory to the PATH variable][13].
You'll also get this exit code when you type commands that do not exist.
![Unmount is not a command, and Screenfetch is not installed, which resulted in code 127][14]
### Exit code series 128+n
When an application or command is terminated or its execution fails due to a fatal error, the adjacent code to 128 is produced (128+n), where n is the signal number.
This includes all types of termination codes, like `SIGTERM`, `SIGKILL`, etc that apply to the value 'n' here.
#### Code 130 or SIGINT
`SIGINT` or **Sig**nal for Keyboard **Int**errupt is induced by interrupting the process by termination signal 2, or by Ctrl+C.
Since the termination signal is 2, we get a code 130 (128+2). Here's a video demonstrating the interrupt signal for `lxappearance`.
<video src="https:/itsfoss.com/content/media/2023/06/exit_code_128-n-SIGINT-_compressed.mp4">
#### Code 137 or SIGKILL
The `SIGKILL` termination **sig**nal that **kill**s the process instantly has a termination signal 9. This is the last method one should use while terminating an application.
The exit code thrown is 137 since the termination signal is 9 (128+9).
<video src="https://itsfoss.com/content/media/2023/06/exit_code_128-n-SIGKILL-_compressed.mp4">
#### Code 143 or SIGTERM
`SIGTERM` or **Sig**nal to **Term**inate is the default behavior when a process is killed without specifying arguments.
The termination code for SIGTERM is 15, hence this signal gets an exit code of 143 (128+15).
<video src="https://itsfoss.com/content/media/2023/06/exit_code_128-n-SIGTERM-_compressed-1.mp4">
There are other termination signals that you may not have known before; they too have their own exit codes similar to these. You can check them out here:
> 📋 Note that these signals may not appear if terminated from the same session from which the process was started. If you're reproducing these, terminate from a different shell.On a personal note, signal 128 was impossible to reproduce.
### What if the code exceeds 255?
Recent versions of Bash retain the original exit code value even beyond 255, but generally, if the code exceeds 255, then it is wrapped up.
That is, code 256 becomes '0', 257 becomes '1', 383 becomes '127', and so on and so forth. To ensure better compatibility, keep the exit codes between 0 and 255.
### Wrapping up
I hope you learned something about the exit codes in the Linux shell. Using them can come in handy for troubleshooting various issues.
If you are using these codes in a shell script, make sure you understand the meaning of each code in order to make it easier for troubleshooting.
In case you need a reference, check out the Bash series here:
That's all about the article. Feel free to let me know in the comments section if I have missed anything.
--------------------------------------------------------------------------------
via: https://itsfoss.com/linux-exit-codes/
作者:[Pranav Krishna][a]
选题:[lkxed][b]
译者:[译者ID](https://github.com/译者ID)
校对:[校对者ID](https://github.com/校对者ID)
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
[a]: https://itsfoss.com/author/pranav/
[b]: https://github.com/lkxed/
[1]: https://linuxhandbook.com:443/bash-special-variables/
[2]: https://itsfoss.com/content/images/2023/06/exit_code_0.png
[3]: https://itsfoss.com/how-to-find-the-process-id-of-a-program-and-kill-it-quick-tip/
[4]: https://itsfoss.com/content/images/2023/06/exit_code_0.gif
[5]: https://itsfoss.com/package-manager/
[6]: https://itsfoss.com/content/images/2023/06/exit_code_1.png
[7]: https://itsfoss.com/content/images/2023/06/exit_code_1-division_by_0-.png
[8]: https://itsfoss.com/content/images/2023/06/exit_status_2-misusing_arguments--1.png
[9]: https://itsfoss.com/content/images/2023/06/exit_code_2-permission_denied-.png
[10]: https://itsfoss.com/content/images/2023/06/exit_code_126.png
[11]: https://itsfoss.com/bash-command-not-found/
[12]: https://itsfoss.com/content/images/2023/06/exit_code_127.png
[13]: https://itsfoss.com/add-directory-to-path-linux/
[14]: https://itsfoss.com/content/images/2023/06/exit_code_127-command_not_found--1.png
[def]: ttps://itsfoss.com/content/media/2023/06/exit_code_128-n-SIGINT-_compressed.mp

View File

@ -0,0 +1,220 @@
[#]: subject: "What are Exit Codes in Linux?"
[#]: via: "https://itsfoss.com/linux-exit-codes/"
[#]: author: "Pranav Krishna https://itsfoss.com/author/pranav/"
[#]: collector: "lkxed"
[#]: translator: "lxbwolf"
[#]: reviewer: " "
[#]: publisher: " "
[#]: url: " "
Linux 中退出码的含义
======
退出码或退出状态可以告诉我们最后一次执行的命令的状态。在命令结束以后,我们可以知道命令是成功完成的还是以错误结束的。
**其基本思想是,程序返回退出代码 `0` 时表示执行成功,没有问题。代码 `1` 或 0 以外的任何代码都被视为不成功。**
退出码除了 0 和 1 外还有很多值,我将在本文介绍它们。
### Linux shell 中的各种退出码
我们来快速了解一下 Linux shell 中的主要退出码:
| 退出码 | 解释 |
| :- | :- |
| `0` | 命令成功执行 |
| `1` | 通用错误代码 |
| `2` | 命令(或参数)使用不当 |
| `126` | 权限被拒绝(或)无法执行 |
| `127` | 未找到命令,或 PATH 错误 |
| `128+n` | 命令被信号从外部终止,或遇到致命错误 |
| `130` | 通过 Ctrl+C 或 SIGINT 终止_终止代码 2 或键盘中断_ |
| `143` | 通过 SIGTERM 终止_默认终止_ |
| `255/*` | 退出码超过了 0-255 的范围因此重新计算译注超过255后用退出码对256取模 |
> 📋 `130`SIGINT 或 `^C`)和 `143`SIGTERM等终止信号是非常典型的它们属于 `128+n` 信号,其中 `n` 代表终止码。
在简单了解了退出码之后,我们来看看它们的用法。
### 获取退出码
前一个命令执行的退出码存储在 [特殊变量][1] `$?` 中。您可以通过运行一下命令来获取:
```
echo $?
```
我们在所有演示中都将使用它来获取退出代码。
请注意_exit_ 命令支持以与前一条命令相同的退出码退出。
### 退出码 0
退出码 `0` 表示命令执行无误,这是完成命令的理想状态。
例如,我们运行这样一条基本命令
```
neofetch
echo $?
```
![][2]
这个退出码 `0` 表示特定命令已成功执行,仅此而已。让我们再演示几个例子。
您可以尝试 [终止一个进程][3];它也会返回代码 `0`
```
pkill lxappearance
```
![][4]
查看文件内容也会返回退出码 0这**仅**意味着 `cat` 命令执行成功。
### 退出码 1
退出码 `1` 也很常见。它通常表示命令以一般错误结束。
例如,在没有 sudo 权限的情况下使用 [软件包管理器][5],就会返回代码 1。在 Arch Linux 中,如果我运行下面的命令
```
pacman -Sy
```
它会返回 1 表示上一条命令运行出错。
![exit code 1 (impermissible operation resulted in this code)][6]
> 📋 如果你在基于 Ubuntu 的发行版中尝试这样做(不使用 sudo 执行 `apt update`),运行后会得到 错误码 100表示你是在没有权限的情况下运行 `apt`。100 不是标准错误码,而是 apt 特有的错误码。
虽然这是一般的理解,但我们也可以将其解释为 "不被允许的操作"。
除以 0 等操作也会返回错误码 1。
![Division by zero results in code 1][7]
### 退出码 2
这个退出码出现在当执行的命令有语法错误时。滥用命令参数也会导致此错误。
一般来说,它表示由于使用不当,命令无法执行。
例如,我在一个本应只有一个连字符的选项上添加了两个连字符,那么此时会出现退出码 2。
```
grep --z file.txt
```
![Invalid argument resulted in exit code 2][8]
当权限被拒绝时,比如访问 /root 文件夹,就会出现错误码 2。
![Permission denied gives out code 2][9]
### 退出码 126
126 是一个特殊的退出码,它用于表示命令或脚本因权限错误而未被执行。
当你尝试执行没有执行权限的 shell 脚本时,就会出现这个错误。
![][10]
请注意,该退出码只出现在没有足够权限的脚本或命令的"_执行_"中,这与一般的**权限被拒绝**错误不同。
因此,不要把它与你之前看到的退出码为 2 的示例混淆。在那个示例中,运行的是 ls 命令,权限问题出自它试图执行的目录。而本例中权限问题来自脚本本身。
### 退出码 127
这是另一个常见的退出码。退出码 127 指的是"[未找到命令][11]"。它通常发生在执行的命令有错别字或所需的可执行文件不在 $PATH 变量中时。
例如,当我尝试执行一个不带路径的脚本时,经常会看到这个错误。
![Script executed without the path gives "command not found" or code 127][12]
当你想运行的可执行文件不在 `$PATH` 变量中时,也会出现退出码 127。你可以通过 [在 PATH 变量中添加父目录][13] 来纠正这种情况。
当你输入不存在的命令时,也会得到这样的退出码。
![Unmount is not a command, and Screenfetch is not installed, which resulted in code 127][14]
### 退出码 128+n 系列
当应用程序或命令因致命错误而终止或执行失败时,将产生 128 系列退出码 (128+n),其中 n 为信号编号。
`n` 包括所有类型的终止代码,如 `SIGTERM`、`SIGKILL` 等。
#### 退出码 130 或 SIGINT
在通过终止信号 2 或 按下 Ctrl+C 中断进程时,会发出 `SIGINT`(键盘中断信号)。
因为终止信号是 2所以我们得到的退出码是 130 (128+2)。下面的视频演示了 `lxappearance` 的中断信号。
<video src="https:/itsfoss.com/content/media/2023/06/exit_code_128-n-SIGINT-_compressed.mp4">
#### 退出码 137 或 SIGKILL
`SIGKILL`(立即终止信号) 表示终止信号 9。这是终止应用程序时最不应该使用的方法。
因为终止信号为 9因此我们得到的退出代码为 137 (128+9)。
<video src="https://itsfoss.com/content/media/2023/06/exit_code_128-n-SIGKILL-_compressed.mp4">
#### 退出码 143 或 SIGTERM
`SIGTERM` 是进程在未指定参数的情况下被杀死时的默认行为。
SIGTERM 的终止代码为 15因此该信号的退出码为 143128+15
<video src="https://itsfoss.com/content/media/2023/06/exit_code_128-n-SIGTERM-_compressed-1.mp4">
还有一些你以前可能不知道的终止信号,它们也有自己类似的退出码。你可以在这里查看它们:
> 📋 请注意,如果从启动进程的同一会话中终止,这些信号可能不会出现。如果要重现这些信号,请从不同的 shell 终止。就个人而言,信号 128 是无法重现的。
### 当退出码超过了 255 会怎样?
最新版本的 Bash 甚至保留了超过 255 的原始退出码的值,但一般来说,如果代码超过 255就会被重新计算。
也就是说,代码 256 会变成 `0`257 会变成 `1`383 会变成 `127`,以此类推。为确保更好的兼容性,请将退出码保持在 0 至 255 之间。
### 结语
希望你对 Linux shell 中的退出码有所了解。在排查各种问题时,使用它们会非常方便。
如果你要在 shell 脚本中使用这些代码,请确保你了解每个代码的含义,以便更容易地排除故障。
如果你需要参考,请点击此处查看 Bash 系列:
这就是本文的全部内容。如有遗漏,请在评论区告诉我。
--------------------------------------------------------------------------------
via: https://itsfoss.com/linux-exit-codes/
作者:[Pranav Krishna][a]
选题:[lkxed][b]
译者:[lxbwolf](https://github.com/lxbwolf)
校对:[校对者ID](https://github.com/校对者ID)
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
[a]: https://itsfoss.com/author/pranav/
[b]: https://github.com/lkxed/
[1]: https://linuxhandbook.com:443/bash-special-variables/
[2]: https://itsfoss.com/content/images/2023/06/exit_code_0.png
[3]: https://itsfoss.com/how-to-find-the-process-id-of-a-program-and-kill-it-quick-tip/
[4]: https://itsfoss.com/content/images/2023/06/exit_code_0.gif
[5]: https://itsfoss.com/package-manager/
[6]: https://itsfoss.com/content/images/2023/06/exit_code_1.png
[7]: https://itsfoss.com/content/images/2023/06/exit_code_1-division_by_0-.png
[8]: https://itsfoss.com/content/images/2023/06/exit_status_2-misusing_arguments--1.png
[9]: https://itsfoss.com/content/images/2023/06/exit_code_2-permission_denied-.png
[10]: https://itsfoss.com/content/images/2023/06/exit_code_126.png
[11]: https://itsfoss.com/bash-command-not-found/
[12]: https://itsfoss.com/content/images/2023/06/exit_code_127.png
[13]: https://itsfoss.com/add-directory-to-path-linux/
[14]: https://itsfoss.com/content/images/2023/06/exit_code_127-command_not_found--1.png
[def]: ttps://itsfoss.com/content/media/2023/06/exit_code_128-n-SIGINT-_compressed.mp