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
SW2014. 2. 10. 13:52

수정일자:


버전관리 :

가장 많이 사용되는 프로그램 Subversion,CVS,GIT 이있다.


cvs : 


subversion : http://subversion.apache.org/  CVS 대안으로 사용

Centos subversion 설치 


git : 


버전관리 프로그램 비교 http://en.wikipedia.org/wiki/Comparison_of_revision_control_software

'SW' 카테고리의 다른 글

[SVN] centos7 + apache2.2+svn1.7 연동  (0) 2018.12.27
[SVN]centos7+svn(subversion1.7.4)  (0) 2018.12.12
[SVN] 구조 활용법  (0) 2014.02.20
Posted by idwook
WEB2014. 2. 10. 12:14

############################# 서버 및 WAS #################################################

apache                  http://apache.org/

 tomcat                   http://tomcat.apache.org  

    

################## broswer #################################################

 firefox                http://www.firefox.com           

                         http://getfirebug.com  

                         https://developer.mozilla.org/ko/ 커뮤니티 

                         http://forums.mozilla.or.kr/ 포럼 

 safari                http://support.apple.com/kb/DL1531  

 opera                http://www.opera.com/download/  

 chrome              http://chrome.google.com  

    

##################### spec ################################################################ 

                            http://www.w3schools.com/ 공부 

html                       http://validator.w3.org/ 마크업 조사 

                            http://jigsaw.w3.org/css-validator/ css 조사 

 javascript              http://kangax.github.com/es5-compat-table/ ECMAScrit5 지원 여부 

 html5                    http://www.w3.org/tr/html5  

                            http://www.w3.org/TR/websockets/ WebSodkets 

                            http://html5test.com/ 브라우져의 html5 호환성 테스트 

                            http://mobilehtml5.org/ 모발브라우져의 html5 호환성 테스트 

                            http://caniuse.com/ 브라우져별 특정 기능 지원 여부 

                            http://htmlfive.co.kr/html5/xe/index.php 커뮤니티 

 dom                     http://www.w3.org/dom  

    

############################ javascript library ########################################### 

  jquery        http://jquery.com  

                  http://api.jquery.com/category/selectors/  

                  http://api.jquery.com/category/manipulation  

http://api.jquery.com/category/traversing/  

                  http://api.jquery.com/category/events/  

                  http://api.jquery.com/category/effects/  

                  http://api.jquery.com/category/ajax/  

 jqueryui      http://jqueryui.com/download  

 dojo           http://dojotoolkit.org/api/  

 prototype    http://api.prototypejs.org  

 ExtJs   

 gwt   

    

############################### 기타 library ################################################### 

 json http://www.json.org json2.js 

 jsonp  

 jstl   

 dwr http://directwebremoting.org/dwr/documentation/index.html  

    

############################## Server-side Javascript ######################################### 

 node.js http://nodejs.org  

    

 

'WEB' 카테고리의 다른 글

[WEB] Ajax에 대해서...  (0) 2014.02.10
Posted by idwook