빅 데이터 + 0 기초 + Liux 명령 (2)

2580 단어 제로 베이스
1. 과거 기록 명령 조회
history 
history | !135              135   

2. 사용자 조작 기록 삭제
root /home/xxx/.bash_history    root    xxx           
rm -rf /          
echo "" > ~ /.bash_history       

3. 사용자 / 사용자 그룹의 상용 명령 조회
root /usr/sbin/user*
     useradd      
     userdel     
 root /usr/sbin/group*
     groupadd       
     groupdel       
                。          
id xxx             
     pid       ID
     gid       ID
     groups   id

4. 이동 사용자 / 사용자 그룹
   usermod       
   usermod -a -G xxx yyy  
       xxx   yyy   
   groupmod    
   groupmod -a -g xxx yyy
        xxx   yyy     
     ,yyy     ID    xxx
   g       G    

5. 사용자 비밀번호 설정
passwd xxx
   xxx    

6. 사용자 전환
su - xxx
     xxx
**  **:su xxx        ,               root    
       ,            
      ,       
EXIT

7. 일반 사용자 가 루트 권한 을 임시로 사용
```
vi /etc/sudoer
 i 。      
[root@hadoop001 ~]# vi /etc/sudoers
## Allow root to run any commands anywhere
root    ALL=(ALL)       ALL
xxx  ALL=(root)      NOPASSWD:ALL
  esc
shift:wq!
      
su - xxx      root      

8. 파이프 문자 "|" 필터 "grep"
  :                  ,                      
ps -ef | grep XXX        
ps -ef      grep xxx      


9. 프로 세 스 포트 번호 찾기
ps -ef | grep xxx
     
ps -ef | grep “X“
       x      
 ps -ef | grep “X“ | grep -v grep 
         “grep"      
 ps -ef | grep ssh
 xxx
 ps -ef | grep xxx
      

10. 포트 번호 소개
 0.0.0.0:22   
	:::22
                
            ,         
   pid>port
   nestat -nelp | grep  ssh

10. 살 프로 세 스
kil -9 pid
kill -9 123 234 345       pid  123 234 345    

11. 팁;
       Connection refused  ,     
window   :                windows     Telnet      
	        cmd
		    ping ip
	        telnet ip port

linux : yum install telnet.x86_64
ip 127.0.0.1           

12. 검색 find
find / -name xxx
find / -name '*X*'    ,           x   
find ./ -name  '*X*'    ,           x   
      /  ,    .  
**      

13. linux telnet 설치
yum search tlent
yum instll xxx(  )

14. 명령 이 존재 하 는 지, 명령 이 어디 에 있 는 지 찾 습 니 다.
which
which ls         “ls"  
wheres ls    “ls"      

15. 명령 man
man --help    man     
yum man  

좋은 웹페이지 즐겨찾기