欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Centos7常用命令

程序员文章站 2022-03-11 22:31:12
...

1、nginx常用命令

 # 启动、停止、重载、查看状态命令
 [[email protected] ~]# systemctl start nginx.service
 [[email protected] ~]# systemctl stop nginx.service
 [[email protected] ~]# systemctl reload nginx.service
 [[email protected] ~]# systemctl status nginx.service

2、查找文件

  1. 1 whereis命令
 # 使用 whereis 命令
 [[email protected] ~]# whereis nginx
  1. 2 find命令
 # 使用 find 命令
 [[email protected] ~]# find / -name nginx

3、复制文件

  1. 1 复制文件
 # 复制文件:cp 文件名 复制目的地文件夹名
 [[email protected] ~]# cp cs.txt /opt/text/

  1. 2 复制文件夹
 # 复制文件夹:cp 文件夹名 复制目的地文件名
 [[email protected] ~]# cp cs /opt/text/

4、移动文件

  1. 1 移动文件
 # 移动文件:mv 文件名 移动目的地文件名
 [[email protected] ~]# mv cs.txt /opt/text/	
  1. 2 移动文件夹
 # 移动文件:mv -r 文件夹名 移动目的地文件名
 # -r 意思是循环迭代文件夹内的文件
 [[email protected] ~]# mv -r cs /opt/text/	
  1. 3 重命名文件
 # 重命名文件:mv 文件名 修改后的文件名
 # 示例:mv oldfilename newfilename (oldfilename为旧文件名,newfilename为新文件名)
 [[email protected] ~]# mv cs.txt cs01.txt