OS/Linux2014. 2. 10. 18:49

수정일자:2014/02/12


리눅스 버전 확인 

[root@localhost]# rpm -qa *-release

[root@localhost]# cat /etc/issue


커널 버전확인 

[root@localhost]# uname -r


메모리 확인

[root@localhost]# free

[root@localhost]# free -m 


디스크 확인

[root@localhost]# df 

[root@localhost]# df -hT


환경설정 확인

[root@localhost]# env


※ yum 


[root@localhost]# yum install httpd                                //인스톨

[root@localhost]# yum update httpd                              //업데이트

[root@localhost]# yum remove httpd                             // 제거

[root@localhost]# yum list installed python                    //install 여부 확인

[root@localhost]# yum list available | grep subversion   //인스톨 할수있는 버전확인

[root@localhost]# yum list search python                     //찾기


※ rpm

[root@localhost]# rpm -qa | grep httpd //설치 정보 



※ find 

find 사용법

[root@localhost]# find / -name "test*"


※ ls,ll

ls,ll 사용법

윈도우의 dir 

[root@localhost]# ls -al | grep test

[root@localhost]# ll 


 

'OS > Linux' 카테고리의 다른 글

[Centos] DNS 네임서버 설정  (0) 2014.02.20
[Centos] Subversion 설치 및 Apache 연동  (0) 2014.02.12
[Centos] yum 으로 mysql 설치  (0) 2014.02.06
[Centos] rpm 명령어  (0) 2014.02.06
[Centos] 서비스 등록 /etc/init.d/ 사용법  (0) 2014.02.06
Posted by idwook