文件、文件夹:
ls:列出当前目录下文件
ls -l :详细信息
-a:包括隐藏文件
rm -rf 文件名:强制删除文件
pwd;当前目录存在的位置
系统相关命令:ps aux | grep :筛选当前的进程
systemctl restart network :重启网络
vim:q!放弃保存并退出
wq:保存并退出
查找命令
find / -name httpd.conf #在根目录下查找文件httpd.conf,表示在整个硬盘查找
find /etc -name httpd.conf #在/etc目录下文件httpd.conf
find /etc -name ‘srm’ #使用通配符*(0或者任意多个)。表示在/etc目录下查找文件名中含有字符串‘srm’的文件
find . -name ‘srm*’ #表示当前目录下查找文件名开头是字符串‘srm’的文件
虚拟机安装的mongo无法远程连接:
1,注释/etc/mongo.conf 下的 bind_ip
2,停止防火墙并禁用这个服务
sudo systemctl stop firewalld.service
sudo systemctl disable firewalld.service
来源:CSDN
作者:weixin_39347470
链接:https://blog.csdn.net/weixin_39347470/article/details/103954936