Centos 7 및 이상 일상 명령 집합

1. nginx 상용 명령
 #   、  、  、      
 [root@dzjs-app1 ~]# systemctl start nginx.service
 [root@dzjs-app1 ~]# systemctl stop nginx.service
 [root@dzjs-app1 ~]# systemctl reload nginx.service
 [root@dzjs-app1 ~]# systemctl status nginx.service

2. 파일 찾기
  • 1 whereis 명령
  •  #    whereis   
     [root@dzjs-app1 ~]# whereis nginx
    
  • 2 find 명령
  •  #    find   
     [root@dzjs-app1 ~]# find / -name nginx
    

    3. 파일 복사
  • 1 파일 복사
  •  #     :cp              
     [root@dzjs-app1 ~]# cp cs.txt /opt/text/
    
    
  • 2 폴 더 복사
  •  #      :cp              
     [root@dzjs-app1 ~]# cp cs /opt/text/
    

    4. 파일 이동
  • 1 이동 파일
  •  #     :mv             
     [root@dzjs-app1 ~]# mv cs.txt /opt/text/	
    
  • 2 폴 더 이동
  •  #     :mv -r              
     # -r               
     [root@dzjs-app1 ~]# mv -r cs /opt/text/	
    
  • 3 파일 이름 바 꾸 기
  •  #      :mv            
     #   :mv oldfilename newfilename (oldfilename     ,newfilename     )
     [root@dzjs-app1 ~]# mv cs.txt cs01.txt
    

    좋은 웹페이지 즐겨찾기