Linux 中的 BusyBox 是什么?如何使用它?

举报
wljslmz 发表于 2022/07/27 23:49:15 2022/07/27
【摘要】 BusyBox 现在越来越流行,特别是在 Docker 用户中,许多 Docker 镜像使用 BusyBox 为您提供最小镜像。 如果您认为 Linux 命令是理所当然的,这可能会让许多用户感到特别困惑...

BusyBox 现在越来越流行,特别是在 Docker 用户中,许多 Docker 镜像使用 BusyBox 为您提供最小镜像。

如果您认为 Linux 命令是理所当然的,这可能会让许多用户感到特别困惑,您认为 ls、mv 和其他此类命令是 Linux 的一部分,而事实是这些命令是 GNU Coreutils 软件包的一部分,并且大多数 Linux 发行版都预装了它。

GNU Coreutils几乎是各种 UNIX/Linux 命令的事实上的提供者,几乎是因为总是有替代品,而 BusyBox 就是 GNU Coreutils 的替代品之一。

什么是BusyBox?

BusyBox 是一个开源项目,它提供了大约 400 个常见 UNIX/Linux 命令的精简实现。

BusyBox 实现删除了不常见的、很少使用的命令选项,一切都小于 1 MB,这个最小的图像是它在嵌入式系统和物联网领域以及云计算世界中流行的原因。

不要看它的大小,BusyBox像经典编辑器一样具有 sed 和 awk 的范围(再次精简版),它也包含自己的 shell,它甚至包含一个可以作为 PID 1 启动的 init 命令,这意味着 BusyBox 可以配置为 Systemd、OpenRC 等的替代品。

BusyBox 是 GNU Coreutils 的绝佳替代品,特别是在操作系统的小尺寸很重要的情况下。

🗒️BusyBox 为您提供流行的 Linux 命令,如 mv、mkdir、ls 等,但它仅包含这些命令的常用选项。这种极简主义是 BusyBox 的 USP。

您没有使用 BusyBox 获得完整的 Linux 命令选项是一个问题吗?

这取决于你的需要,真的,大多数人永远不需要命令的所有选项。一些 Linux 命令有超过 50 个选项,我敢打赌,你甚至从未使用过单个 Linux 命令的所有选项。

BusyBox 减少了很少使用的选项,例如,ls 命令具有选项 G,它从长列表输出 (ls -l) 中删除组名。

现在,我认为你从来不需要这个选项,这就是为什么它在 BusyBox 的 ls 实现中不存在的原因,如果您确实需要一个不包含组名的输出,您所要做的就是为此目的使用 cut 或 awk 命令。

再举一个例子。这是来自 GNU Coreutils的mv 命令的帮助页面:

Usage: mv [OPTION]... [-T] SOURCE DEST
  or:  mv [OPTION]... SOURCE... DIRECTORY
  or:  mv [OPTION]... -t DIRECTORY SOURCE...
Rename SOURCE to DEST, or move SOURCE(s) to DIRECTORY.

Mandatory arguments to long options are mandatory for short options too.
      --backup[=CONTROL]       make a backup of each existing destination file
  -b                           like --backup but does not accept an argument
  -f, --force                  do not prompt before overwriting
  -i, --interactive            prompt before overwrite
  -n, --no-clobber             do not overwrite an existing file
If you specify more than one of -i, -f, -n, only the final one takes effect.
      --strip-trailing-slashes  remove any trailing slashes from each SOURCE
                                 argument
  -S, --suffix=SUFFIX          override the usual backup suffix
  -t, --target-directory=DIRECTORY  move all SOURCE arguments into DIRECTORY
  -T, --no-target-directory    treat DEST as a normal file
  -u, --update                 move only when the SOURCE file is newer
                                 than the destination file or when the
                                 destination file is missing
  -v, --verbose                explain what is being done
  -Z, --context                set SELinux security context of destination
                                 file to default type
      --help     display this help and exit
      --version  output version information and exit

  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25

现在,这里是 BusyBox 的 mv 命令帮助页面:

Usage: mv [-fin] SOURCE DEST
or: mv [-fin] SOURCE... DIRECTORY

Rename SOURCE to DEST, or move SOURCE(s) to DIRECTORY

	-f	Don't prompt before overwriting
	-i	Interactive, prompt before overwrite
	-n	Don't overwrite an existing file

  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

看到不同?

如何获得 BusyBox?

您可以通过多种方式获得 BusyBox。

如果您只是想在当前的 Linux 发行版上体验 BusyBox,您可以使用发行版的包管理器(如 Apt 或 DNF 或Yum )安装它。

在 Ubuntu 上,您可以使用以下命令安装 BusyBox:

sudo apt install busybox

  
 
  • 1

之后,如果要运行 BusyBox 版本的命令,则必须在其前面添加 busybox。

busybox cat sample.txt

  
 
  • 1

如果 BusyBox 未实现命令,则会引发“找不到小程序”的错误。

abhishek@LHB:~$ busybox xyz
xyz: applet not found

  
 
  • 1
  • 2

或者,您可以下载BusyBox 的 Docker 镜像并在运行的容器中体验它。

请确保您已安装 Docker,拉取官方docker镜像:

docker pull busybox

  
 
  • 1

从镜像运行一个容器并进入 BusyBox shell:

docker run -it --rm busybox

  
 
  • 1

您在此处运行的每个 Linux 命令都来自 BusyBox。您不需要明确指定它。

总之,您不需要在常规 Linux 系统上使用 BusyBox,您已经拥有来自 GNU Coreutils 的完整版本的 Linux 命令。无需安装精简版。

但是 BusyBox 在特殊领域有其用途,例如为嵌入式或物联网设备配置最小的 Linux 操作系统时。当您希望保持 Docker 映像的大小较小时也是如此。

文章来源: blog.csdn.net,作者:wljslmz,版权归原作者所有,如需转载,请联系作者。

原文链接:blog.csdn.net/weixin_43025343/article/details/123302215

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。