목록Computer Science/Linux (3)
뭐해먹고 살지
How do I unzip multiple / many files under Linux?Q. I’ve lots of files in a directory called /disk2/images. All files are zip file format , so I am using following command: unzip *.zip Which is result into an error as follows: caution: filename not matched How do I unzip multiple / many files under Linux? A. Linux or UNIX unzip command will list, test, or extract files from a ZIP archive, common..
Linux에서 Symbolic link 거는법 매번 잊어버려서 기록해둔다 ln -s [원본경로] [심볼릭경로]
1. Cross 컴파일 환경 설정 - Cross Complier 압축 파일 구하기 ex) arm-linux-tools.tar.bz2, arm-linux-gcc-3.4.1.tar.bz2 - Cross Complier 설치 i. /usr/local 아래에 arm 디렉터리를 생성한다. ii. arm-linux-tools.tar.bz2을 /usr/local/arm에 옮기고, 압축을 해제한다. ( tar xvfj arm-linux-tools.tar.bz2 ) iii. /usr/local/arm/3.4.1/bin/arm-linux-gcc를 이용해 cross 컴파일 할 수 있다. - 환경 변수에 등록하기 . export PATH=/usr/local/arm/3.4.1/bin:$PATH . .bash_profile 등의..