内容简介:linux系统dig和nslookup的安装
最近搞的CENTOS6.0最小安装后,发现很多之前用的 工具 在该版本中未有看到.下好遇到要使用nslookup,就找了一下资源,记录一下
nslookup是常用来查询本机域名解析情况的命令,但是一些 linux 系统下默认无此命令。我们可以通过安装一个包来使该命令生效,这个包中也包括dig命令。
##Ubuntu:
# sudo apt-get install dnsutils
##Debian:
# apt-get update
# apt-get install dnsutils
##Fedora / Centos:
# yum install bind-utils
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:- Kickstart批量安装系统
- 在 Power 系统上安装 PyTorch
- 使用VMware安装Permeate靶场系统实践
- Minio文件系统安装与服务化
- Yum简单安装MFS分布式文件系统
- Mac系统上安装Tomcat并方便的管理
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Introduction to Computation and Programming Using Python
John V. Guttag / The MIT Press / 2013-7 / USD 25.00
This book introduces students with little or no prior programming experience to the art of computational problem solving using Python and various Python libraries, including PyLab. It provides student......一起来看看 《Introduction to Computation and Programming Using Python》 这本书的介绍吧!