摘要: linux下挂载(mount)光盘镜像文件、移动硬盘、U盘、Windows和NFS网络共享linux是一个优秀的开放源码的操作系统,可以运行在大到巨型小到掌上型各类计算机系统上,随着 linux系统的日渐成熟和稳定以及它开放源代码特有的优越性,linux在全世界得到了越来越广泛的应用。现在许多企业的 阅读全文
posted @ 2018-09-14 17:36 香菜哥哥 阅读(221) 评论(0) 推荐(0) 编辑
摘要: if 条件then Commandelse Commandfi 别忘了这个结尾 If语句忘了结尾fitest.sh: line 14: syntax error: unexpected end of fi if 的三种条件表达式 ifcommandthenif 函数then 命令执行成功,等于返回0 阅读全文
posted @ 2018-09-14 17:29 香菜哥哥 阅读(1114) 评论(0) 推荐(0) 编辑
摘要: 开启mysql远程访问 Grant all privileges on *.* to 'root'@'%' identified by 'root'; Flush privileges; oracl锁定问题 sqlplus /nolog conn /as sysdbaalter user syste 阅读全文
posted @ 2018-09-14 11:01 香菜哥哥 阅读(171) 评论(0) 推荐(0) 编辑
摘要: Centos查看端口占用情况命令,比如查看80端口占用情况使用如下命令: lsof -i tcp:80 列出所有端口 netstat -ntlp 1、开启端口(以80端口为例) 方法一: /sbin/iptables -I INPUT -p tcp --dport 80 -j ACCEPT 写入修改 阅读全文
posted @ 2018-09-14 09:47 香菜哥哥 阅读(6379) 评论(0) 推荐(0) 编辑