240 |
iOS 쉘에서 한글 디렉터리 접근 방법
|
엔신 | 19965 | | 2013-04-26 |
filezilla로 sftp로 접근할 경우 한글 디렉터리 명이 정상 표시되고 접근도 가능한데 shell로 붙어서 보면 ???????????? 으로 나타난다. filezilla로 보이는 디렉터리명이 '카'인 경우 아래와 같이 입력하면 인코딩된 값이 나온다. darkhi@ip-10-150-189-110:/...
|
239 |
WideCap을 통한 Proxy 이용
|
엔신 | 39872 | | 2013-04-20 |
|
238 |
KB카드 it 카드 듀얼페이먼트 결제 방식 선택
|
엔신 | 29716 | | 2013-04-17 |
카드 > 신용카드 > 해당카드 선택(It Play 카드) > 서비스정보 > 듀얼페이먼트 > 신청 및 변경하기 https://card.kbcard.com/CXPPPCAS0013.cms 메뉴 진짜 찾기 어렵게 만들어놨어 ㅜㅜ
|
237 |
화면 주사율 고정시켜주는 RefreshLock
|
엔신 | 29605 | | 2013-04-01 |
최근 모니터를 27인치로 바꾸면서 화면 주사율이 59로 떨어지면 화면이 깨지는 현상이 발생했다. 기존 24인치 모니터에서는 59에서도 정상적으로 잘 나왔기 때문에 별 불편없이 사용하였었는데, 어쩔 수 없이 59로 떨어질때마다 매번 60으로 올려주다가 찾아보...
|
236 |
charset configuration
|
엔신 | 15683 | | 2013-04-01 |
# charset configuration file for DistrRTgen v3.2 by Martin Westergaard (martinwj2005@gmail.com) byte = [] alpha = [ABCDEFGHIJKLMNOPQRSTUVWXYZ] alpha-space = [ABCDEFGHIJKLMNOPQRSTUVWXYZ ] alpha-numeric = [ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789]...
|
235 |
[APC3.0] AhnLab Policy Center 3.0 관련 모듈 목록
|
엔신 | 64269 | | 2013-03-21 |
마지막 업데이트 날짜 2010-01-13[수정] 1.00대상 제품]AhnLab Policy Center 3.0 SP3 AhnLab Policy Center 3.0 SP2 AhnLab Policy Center 3.0 SP1 AhnLab Policy Center 3.0 [환경]Windows 7 Windows Vista (SP2, SP1, SP 없음) Windows XP (SP3, SP2, SP1, ...
|
234 |
[VBA] 파워포인트 그림 리사이즈, 위치 고정
|
엔신 | 52079 | | 2013-02-21 |
해당 이미지 선택 후 함수 실행하면 리사이즈, 위치 이동 Sub first() ActiveWindow.Selection.ShapeRange.LockAspectRatio = msoFalse ActiveWindow.Selection.ShapeRange.Height = 193.3228 ActiveWindow.Selection.ShapeRange.Width = 337.8898 ActiveWindo...
|
233 |
thinkpad 최대절전모드 안될 때
|
엔신 | 37326 | | 2013-02-19 |
http://tpholic.com/xe/ibmboard2/780008 나온대로 k-defence 지우니까 바로 되네....
|
232 |
[VBA] 모든 시트 머리글 바꾸기
|
엔신 | 14426 | | 2013-01-22 |
Sub 머리글_바꾸기() Dim SheetNames() SheetCount = ActiveWorkbook.Sheets.Count ReDim SheetNames(1 To SheetCount) 'Sheets("목록").Select Range("A1").Select For i = 1 To SheetCount Worksheets(i).Select Application.PrintCommunication = False Wi...
|
231 |
[VBA] 엑셀 시트명 가져오기
|
엔신 | 174902 | | 2013-01-22 |
Sub 목록추출() Dim SheetNames() SheetCount = ActiveWorkbook.Sheets.Count ReDim SheetNames(1 To SheetCount) 'Sheets("목록").Select Range("A1").Select For i = 1 To SheetCount SheetNames(i) = ActiveWorkbook.Sheets(i).Name ActiveCell = ActiveWor...
|
230 |
freeware hex editor
|
엔신 | 60042 | | 2013-01-22 |
http://mh-nexus.de/en/hxd/ http://www.chmaas.handshake.de/delphi/freeware/xvi32/xvi32.htm#download hxd는 메모리 에디터 기능도 있음
|
229 |
시간 동기화(ntpdate) & 한국 시각으로 변경
|
엔신 | 52499 | | 2012-10-17 |
sudo ntpdate ntp.postech.ac.kr 안될경우 sudo ntpdate -u ntp.postech.ac.kr 한국시각으로 변경 sudo ln -sf /usr/share/zoneinfo/Asia/Seoul /etc/localtime
|
228 |
대용량 txt 파일 editor - emeditor
|
엔신 | 20257 | | 2012-07-24 |
EmEditor is now able to open even larger than 248 GB 실제로 1기가 파일 열려고 editplus 썼더니 out of memory 발생 dorumugs형이 추천해 줘서 1기가 짜리 열었는데 이정도면 굉장히 빠르고 검색 속도도 1기가 파일 연거 치고 빠르다 굳잡
|
227 |
arm tcpdump compile
|
엔신 | 24823 | | 2012-07-18 |
http://www.tcpdump.org/release/ libpcap 받고, tcpdump 받고 libpcap 컴파일 CC=arm-linux-gnueabi-gcc ac_cv_linux_vers=2 ./configure --host=arm-linux --with-pcap=linux make 하면 libpcap.so.x.x 생김 tcpdump 컴파일 CC=arm-linux-gnueabi-gcc ac_cv_...
|
226 |
arm cross Compiling
|
엔신 | 10706 | | 2012-07-18 |
apt-get install gcc-4.3-arm-linux-gnueabi
|
225 |
mipsel Cross compiling
|
엔신 | 11711 | | 2012-07-17 |
머리터지게 고민하지말고 간단하게 설치하자 필요 패키지도 같이 설치된다. # apt-get install gcc-4.3-mipsel-linux-gnu Reading package lists... Done Building dependency tree Reading state information... Done The following extra packages will be i...
|
224 |
vmware detection
[1]
|
엔신 | 11564 | | 2012-07-10 |
|
223 |
ubuntu에서 pecl_http 설치하기
|
엔신 | 15115 | | 2012-06-11 |
# sudo apt-get install php-pear php5-dev libcurl4-openssl-dev # sudo pecl install pecl_http /etc/php5/apache2/conf.d/http.ini에 추가하기 extension=http.so # sudo service apache2 restart
|
222 |
IIS의 버전을 구하는 방법
|
엔신 | 14145 | | 2012-06-11 |
6.0 이후부터 체크하면 되겠다.. VersionObtained fromOperating System1.0Included with Windows NT 3.51 SP 3 (or as a self-contained download).Windows NT Server 3.512.0Included with Windows NT Server 4.0.Windows NT Server 4.03.0Included with Win...
|
221 |
Download Detailed Bulletin Information
|
엔신 | 36612 | | 2012-06-11 |
Microsoft Security Bulletins에 가면 1998년부터 현재까지의 모든 마이크로소프트 제품의 패치 목록을 확인할 수 있다. 웹을 통해 확인할 수도 있고, 제품 전체 통합 엑셀 파일을 제공하기도 한다. 엑셀 파일에는 Date, Bulletin ID(MSxx-xxx), KB Number(KBx...
|