会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
傻子爸爸
博客园
首页
新随笔
联系
订阅
管理
2021年4月20日
c语言实现单链表的倒叙
摘要: bool upsidedown_list(LinkList L) { Lnode *head, *tmp, *oldhead; head = L; tmp = L->next; oldhead = L; while (tmp) { oldhead->next = tmp->next; tmp->ne
阅读全文
posted @ 2021-04-20 20:07 傻子爸爸
阅读(78)
评论(0)
推荐(0)
2020年7月17日
Centos使用nohup实现后台运行程序
摘要: nohup和&的区别& : 指在后台运行 nohup : 不挂断的运行,注意并没有后台运行的功能,,就是指,用nohup运行命令可以使命令永久的执行下去,和用户终端没有关系,例如我们断开SSH连接都不会影响他的运行,注意了nohup没有后台运行的意思;&才是后台运行 &是指在后台运行,但当用户推出(
阅读全文
posted @ 2020-07-17 23:52 傻子爸爸
阅读(3254)
评论(0)
推荐(0)
关于Centos7防火墙、端口、进程、开机自启、服务启动的常用命令
摘要: 一、防火墙相关命令 1、查看防火墙状态 : systemctl status firewalld.service 注:active是绿的running表示防火墙开启 2、关闭防火墙 :systemctl stop firewalld.service 3、开机禁用防火墙自启命令 :systemctl
阅读全文
posted @ 2020-07-17 23:13 傻子爸爸
阅读(931)
评论(0)
推荐(0)
公告