51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

Github

linux 标准定向输出> >> 2> 2>>作用

linux 标准定向输出> >> 2> 2>>作用

厉飞雨 阅读(43) 评论(0) 赞(5)

\> 标准定向输出 \>\> 标准定向 追加 2\> 标准错误输出 [2\>\>](https://51tbox.com/ "View all posts in 2>>") 标准错误输出 定时任务中-命令或脚本结果(正确及错误)定向到黑洞(\>/dev/null 2\>\&1)或追加...

linux yum源配置-epel-阿里源

linux yum源配置-epel-阿里源

厉飞雨 阅读(43) 评论(0) 赞(4)

今天介绍一下centos[yum源](https://51tbox.com/ "View all posts in yum源")配置,我们知道 [yum](https://51tbox.com/ "View all posts in yum")仓库,就是类似我们手机上的软件商店。 我们linux 需要的一些软件或者工具,需要去yum仓库...

linux 安装使用 netcat (待完善)

linux 安装使用 netcat (待完善)

厉飞雨 阅读(40) 评论(0) 赞(2)

https://my.oschina.net/u/4295888/blog/3340261 yum install [netcat](https://51tbox.com/ "View all posts in netcat") 需要 epel 扩展仓库的支持 ![](http://static.51tbox.com/static/2024-08-29...

linux修改网卡名称详细步骤

linux修改网卡名称详细步骤

厉飞雨 阅读(48) 评论(0) 赞(5)

#命令行设置[网卡](https://51tbox.com/ "View all posts in 网卡")名称规则 cd /etc/sysconfig/network-scripts/ #修改网卡配置文件 mv ifcfg-ens33 ifcfg-https://51tbox.com/ sed -i "s#ens33...

linux systemctl命令详解

linux systemctl命令详解

厉飞雨 阅读(43) 评论(0) 赞(3)

[systemctl](https://51tbox.com/ "View all posts in systemctl") 的6个命令 stop 停止 start 启动 restart 重启 status 查看状态 enable 开机自动运行此服务 disable 开机禁止运行此服务 ![](http://static.51tbox...

linux 应用对应的端口(常见的端口)

linux 应用对应的端口(常见的端口)

厉飞雨 阅读(38) 评论(0) 赞(3)

![](http://static.51tbox.com/static/2024-08-29/col/5a5fc5bcb7ad736c257ae0f3be003dcd/39f1915ad50b404bab777e16f2cef09d.png.jpg) FTP 21 明文协议,文件传输协议,基于TCP TFTP 69 简单文件传输协议,基于UDP SSH 22 安全外壳协议...

linux nslookup 命令详解 -bind-utils

linux nslookup 命令详解 -bind-utils

厉飞雨 阅读(52) 评论(0) 赞(3)

[nslookup](https://51tbox.com/ "View all posts in nslookup") (全称 name server lookup) nslookup 用于查询DNS的记录,查询域名解析是否正常,在网络故障时用来诊断网络问题 安装: https://51tbox.com/ -y install https:/...

linux bg 命令

linux bg 命令

厉飞雨 阅读(44) 评论(0) 赞(3)

1.命令简介 ====== [bg](https://51tbox.com/ "View all posts in bg")(backgroud)恢复被挂起的作业放到后台重新执行。 提示:程序正在前台运行,可以使用 Ctrl + Z 发送 SIGSTOP 信号把程序暂停,Ctrl + C 发送 SIGINT 信号默认终止程序。 2.命令格式 =====...