Linux

Posted 关键步就几步

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux相关的知识,希望对你有一定的参考价值。

1、查找文件夹;

搜索命令为”find“。它的格式为”find <指定目录> <指定条件> <指定动作>“;比如使用find命令搜索在根目录下的所有test文件夹所在位置,

命令格式为”find / -name  ‘test‘  -type d

2、查找文件

命令格式为”find / -name  ‘test.txt‘  -type f  

很多Linux文件是没有后缀的,如/etc/hosts的hosts就是文件,所以这个-type 指定很有用,默认不加-type 查找的就是文件夹 ,如 find / -name  ‘hosts‘ 就查不到hosts,但是加上-type f就可以查到了

 3、关闭centos防火墙

centOS 6.5关闭防火墙步骤
临时关闭命令: service iptables stop
永久关闭防火墙:chkconfig iptables off
运行完成后查看防火墙关闭状态
service iptables status

 





以上是关于Linux的主要内容,如果未能解决你的问题,请参考以下文章

LinuxLinux博客汇总

Linuxlinux命令大全

linuxlinux 安装 protobuf 2.5.0 版本

LinuxLinux使用简单密码|短密码

linuxlinux shell 判断是安装了某个软件

Linuxlinux压缩和解压缩命令大全