Programming16 Perl 링크 모음 2시간 반만에 펄 익히기 - http://qntm.org/files/perl/perl_kr.html 2014. 5. 8. Eclipse 테마 설정하기 1. 이클립스 실행. 2. 상단의 메뉴에서 Help -> Eclipse Marketplace 클릭. 3. Search 에서 "Eclipse Color theme" 검색. 4. install 버튼 클릭하고 설치후에 재부팅하면 끝. 2011. 7. 8. ubuntu 상에서 네트워크 문제 ubuntu 에 처음 설치시나, 업데이트를 한경우에, 간혹 네트워크에 대한 드라이버가 제대로 동작을 안하거나, 지워진? 경우가 발생한다.아래의 장치에서 주로 문제가 발생했는데, 해결법은 간단하게 , 해당 드라이버를 다시 설치해주면 된다. Realtek Semiconductor CO., Ltd. RTL8111/8168B PCI Express Gigabit Ethernet controller (rev 06) First, remove the r8169 module from the linux kernel. # rmmod r8169 Download the official realtek driver from here Unpack the download and install the driver as per the r.. 2011. 1. 10. find명령어과 grep명령어를 이용하여 파일안의 문자열 찾기 find명령과 grep명령을 이용하여 파일안의 문자열 찾기 1. 설명 find명령어는 파일을 찾는 명령어이고, grep명령어는 파일안에서 특정 문자열을 찾는 명령어이다. 때문에 find명령어와 grep명령어를 적절하기 조함하여 사용하면, 특정한 조건의 파일들 안에서 특정한 문자열을 찾을 수 있다. 2. 활용 (1)find의 -exec 옵션을 이용하는 방법 find / -type f -exec grep string {} \ ; 2>/dev/null (2)find와 파이프(|) xargs명령을 이용하는 방법 find / -type 2>/dev/null | xargs grep string (3) find와 grep를 이용하는 방법 grep string `find . -type f` (find 구문을 감싸고 있.. 2010. 12. 23. synchronized synchronized(clientVector); 라고 코드를 작성하면, clientVector 의 변수를 다른곳에서 사용하지 못하게, 하는 역할을 한다. Mutex와 비슷한 개념인듯 함. 2010. 12. 21. Unparsed aapt error(s)! Check the console for output. 에러 해결하기 Eclipse 에러에서 위와 같은 메시지가 떴을경우 메뉴 Project -> clean 을 클릭하면 된다. 2010. 6. 5. 이전 1 2 3 다음