Centos 6, iPad가 충전될 수 있도록 설정하기

1. 먼저 libusb-1.0.0.tar.gz 소스를 다운받고 컴파일하여 설치한다. http://sourceforge.net/projects/libusb/files/libusb-1.0/libusb-1.0.0/ 위의 주소로 가서 다운 받으면 된다. $ .configure $ make; make install 모두 설치가 끝나면 git로 다음을 다운받는다. 2. git clone https://github.com/mkorenkov/ipad_charge.git 역시 make, make install 설치과정. [webterror@localhost Downloads]$ tar xvfj libusb-1.0.0.tar.bz2 libusb-1.0.0/ libusb-1.0.0/config.guess libusb-1.0.0/ChangeLog libusb-1.0.0/configure.ac libusb-1.0.0/libusb-1.0.pc.in libusb-1.0.0/README libusb-1.0.0/Makefile.am libusb-1.0.0/ltmain.sh libusb-1.0.0/PORTING libusb-1.0.0/Makefile.in libusb-1.0.0/doc/ libusb-1.0.0/doc/Makefile.am libusb-1.0.0/doc/Makefile.in libusb-1.0.0/doc/doxygen.cfg.in libusb-1.0.0/config.sub […]

.vimrc 파일 tab 기능 쓰기위한 설정

set nocompatible set autoindent set cindent set smartindent set wrap set nowrapscan set nobackup set visualbell set ruler set shiftwidth=4 set fileencoding=utf-8 set tenc=utf-8 set hlsearch set ignorecase set tabstop=4 set lbr set incsearch set backspace=eol,start,indent set history=1000 set background=dark set nobackup set nowritebackup set noswapfile set laststatus=2 map <C-J> :tabp<CR> map <C-K> :tabn<CR> map […]

CentOS 6.3 설치과정 기록

MSI U270 노트북에 윈도우가 설치되어 있는 관계로 USB 16기가 스틱에 CentOS를 설치하였다. 이유는 Eclipse를 설치하여 Django 개발환경을 맞춰보고 싶기 때문이다. USB 에 우분투를 설치하여 사용해보고 싶었으나, 우분투에서는 노트북이라면 필히 CDROM이 필요하다. USB로 부팅하여 USB에 우분투를 설치하려고 하면 계속해서 에러를 뿜어댔다. 결국 포기하고 CentOS로 돌아왔다. 현재까지는 아무런 문제없이 잘 돌리고 있는 중이다. USB로 부팅하여 사용하면 프리징 […]