博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
项目实战安装工具箱Busybox
阅读量:6711 次
发布时间:2019-06-25

本文共 446 字,大约阅读时间需要 1 分钟。

1.Busybox是一个集成了100多个最常用Linux命令的软件工具箱,他在单一的可执行文件中提供了精简的UNIX工具集。该工具箱中包含了常见简单实用的工具如cat、echo、grep、find、mount、telnet等。Busybox是linux系统的瑞士军刀。

2.搜索Busybox镜像

$ docker search busybox
备注:STARS数最多,OFFICIAL是"[OK]"的这个就是官方的centos镜像。

3.下载Busybox镜像

$ docker pull busybox

4.运行busybox容器,并运行 cal 命令

$ docker run -idt --name busybox1 busybox cal
$ docker logs busybox1

5.进入容器交互界面

查看容器内的挂载信息:mount

查看容器的hostname和ip配置:cat /etc/hosts
查看容器默认的DNS服务器地址:cat /etc/resolv.conf

转载地址:http://ubalo.baihongyu.com/

你可能感兴趣的文章
php的类型运算符instanceof(用于确定一个 PHP 变量是否属于某一类 class 的实例)
查看>>
VMWare Station 问题汇总
查看>>
JQuery判断input是否被禁用
查看>>
ftp、ssh
查看>>
SCSI接口和SAS接口的区别
查看>>
How to install maps and addons (.VPK)
查看>>
解决Android中的ERROR: the user data image is used by another emulator. aborting的方法
查看>>
电子书下载:Metro Revealed Building Windows 8 apps with XAML and C#.
查看>>
jQuery相册插件(开源下载)
查看>>
Azure China (12) 域名备案问题
查看>>
PKU 题目分类
查看>>
HDU What Are You Talking About
查看>>
[1443] Weiqi
查看>>
Unity3D Mecanim :Body Mask的使用、 角色Retargeting原理分析、Apply RootMotion
查看>>
MySQL技术内幕读书笔记(六)——索引与算法之全文索引
查看>>
vim 下web开发html css js插件
查看>>
使用stringstream对象简化类型转换
查看>>
QTP的那些事--ajax中的autocomplete的最终几种解决方案
查看>>
show_spce存储过程的使用
查看>>
addChildViewController ipad 中Controller的嵌套和叠加
查看>>