摘要: 1.shell脚本文件权限应该有可执行权限 2.shell脚本文件应该设置文件格式为unix,在vi下面的设置方法:set ff=unix 阅读全文
posted @ 2019-06-10 09:26 一壶酒--- 阅读(408) 评论(0) 推荐(0) 编辑
摘要: 执行以下两个命令: chmod +x /etc/rc.d/rc.local #给予这个文件执行权限 systemctl enable rc-local.service #开机启动这个服务 在Centos7下,rc.local文件,开机默认是不执行的 翻译下 这个文件是为兼容性而添加的在开机过程中强烈 阅读全文
posted @ 2019-03-25 15:21 一壶酒--- 阅读(1058) 评论(0) 推荐(0) 编辑
摘要: du -h --max-depth=1 /home仅列出home目录下面所有的一级目录文件大小; 阅读全文
posted @ 2019-03-07 14:13 一壶酒--- 阅读(175) 评论(0) 推荐(0) 编辑
摘要: substr($path,0,strrpos($path,'/')); 阅读全文
posted @ 2019-02-21 15:01 一壶酒--- 阅读(985) 评论(0) 推荐(0) 编辑
摘要: find / -name "*mysql*" 阅读全文
posted @ 2019-02-12 18:18 一壶酒--- 阅读(707) 评论(0) 推荐(0) 编辑
摘要: 整理背景知识的:MECE法则; 提升沟通效果的:SCQA结构化表达; 用于策略选择的:SWOT分析; 正向演绎推理的:三段论; 用于创新思考的:加减乘除排列组合; 阅读全文
posted @ 2019-02-12 14:53 一壶酒--- 阅读(163) 评论(0) 推荐(0) 编辑
摘要: kill -9 $(lsof -i:端口号 -t) 阅读全文
posted @ 2019-01-23 16:04 一壶酒--- 阅读(492) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2019-01-23 16:00 一壶酒--- 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 一、下载最新版本 OpenSSH wget https://openbsd.hk/pub/OpenBSD/OpenSSH/portable/openssh-7.8p1.tar.gz 目前最新版本是7.8 二、编译安装 OpenSSH # tar xzvf openssh-7.8p1.tar.gz # 阅读全文
posted @ 2019-01-23 14:11 一壶酒--- 阅读(2471) 评论(0) 推荐(0) 编辑
摘要: 首先,对方电脑要打开服务:sudo apt-get install openssh-server 然后,scp -r xiaoming (对方用户名)@host(对方ip地址):/path(要copy的文件路径) /mypath(我要存放的路径) 例子:scp -r root@10.101.232. 阅读全文
posted @ 2019-01-17 14:46 一壶酒--- 阅读(2364) 评论(0) 推荐(0) 编辑