51工具盒子

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

软件使用

linux systemctl命令详解

linux systemctl命令详解

厉飞雨 阅读(44) 评论(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) 赞(4)

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

linux bg 命令

linux bg 命令

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

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

linux /etc/inittab 配置文件 table

linux /etc/inittab 配置文件 table

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

init的进程号是1(ps -aux \| less),从这一点就能看出,init进程是[系统](https://www.2cto.com/os/)所有进程的起点,[Linux](https://www.2cto.com/os/linux/)在完成核内引导以后,就开始运行init程序。 init程序需要读取配置文件[/etc/inittab](https://51tbox.c...

linux kill 命令 杀死进程

linux kill 命令 杀死进程

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

管理进程的状态 https://51tbox.com/" 命令只能由进程所有者或具有root权限的用户使用 当程序运行为进程后,如果希望停止进程,怎么办呢?那么此时我们可以使用linux的kill命令对进程发送关闭新号,当然除了kill 还有[killall](https://51tbox.com/ "View all posts in kill...

linux ps 命令 监控进程状态

linux ps 命令 监控进程状态

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

程序运行后,我们需要了解进程的运行状态, 一种是静态,一种是动态。 [ps](https://51tbox.com/ "View all posts in ps") -ef : [ps -ef 命令详解](https://51tbox.com/) -e:等价于 '-A' ,表示列出全部的进程 -f:显示全部的列(显示全字段) [2 ...