'Coding/리눅스 삽질기'에 해당되는 글 5건

  1. 2009.11.04 [Linux] DSL 설치
  2. 2008.05.13 Virtual Box를 이용한 Ubuntu 설치
  3. 2005.09.21 SIGBUS
  4. 2005.06.03 Mplayer Porting 3
  5. 2005.03.26 프로그래머를 위한 vi 명령어 1
Coding/리눅스 삽질기2009. 11. 4. 01:20

용량 50M의 저용량 리눅스 Damn Small Linux를 Virtual Box로 부팅.

가볍 다는 이유로 설치 했는데, 한글이 지원 안되는걸 깜박했다. ^^;

홈페이지 : http://damnsmalllinux.org/

'Coding > 리눅스 삽질기' 카테고리의 다른 글

Virtual Box를 이용한 Ubuntu 설치  (0) 2008.05.13
SIGBUS  (0) 2005.09.21
Mplayer Porting  (3) 2005.06.03
Posted by chobocho
Coding/리눅스 삽질기2008. 5. 13. 01:06
사용자 삽입 이미지

'Coding > 리눅스 삽질기' 카테고리의 다른 글

[Linux] DSL 설치  (0) 2009.11.04
SIGBUS  (0) 2005.09.21
Mplayer Porting  (3) 2005.06.03
Posted by chobocho
Coding/리눅스 삽질기2005. 9. 21. 17:05
#include

int main (void) {
int i;

scanf ("%d", i); /* error */

return 0;
}


위 코드를 freeBSD에서 수행하면 SIGBUS 에러가 발생한다.

'Coding > 리눅스 삽질기' 카테고리의 다른 글

Virtual Box를 이용한 Ubuntu 설치  (0) 2008.05.13
Mplayer Porting  (3) 2005.06.03
프로그래머를 위한 vi 명령어  (1) 2005.03.26
Posted by chobocho
경고 : 포팅시 에러 발생시 본인과는 무관함
이로 인한 모든 책임은 사용자에게 있음...
테러금지... (삽질시 책임 못짐)


MPlayer를 EmposⅡ 보드에 포팅하기로했다.

1. cross complier를 설치한다.
(2.9.5으로도 된다.)
ftp://ftp.handheld.org
여기서 3.3.2를 다운 받는다.

2. [ mad library ]
./configure --host=arm-linux --prefix=/usr/cross/arm-liunx
make
make install


[ libogg ]
ogg.pc 파일을 열고 다음과 같이 추가해 준다.
PKG_CONFIG_PATH=/usr/lib
./configure --target=arm-linux --enable-static
make
make install


[ libvorbis ]
./configure --target=arm-linux --host=arm-linux --enable-static=/usr/lib --with-ogg=/usr/lib
make
make install


3. mplayer 1.0을 다운 받는다.


4. 다음과 같이 수행한다.

./configure --target=arm-linux --cc=arm-linux-gcc --as=arm-linux-as --enable-static --disable-win32 --disable-gui --disable-dvdread --enable-mad --enable-fbdev --disable-mencoder --disable-mpdvdkit --disable-x11 --disable-sdl --disable-libavcodec --enable-vorbis --disable-tv --enable-tremor-low --disable-libavformat


make
make install


경고 : make중 에러 발생시... 245번 라인근처에서
$(HOST_CC) 를 gcc로 바꿔준다.

'Coding > 리눅스 삽질기' 카테고리의 다른 글

Virtual Box를 이용한 Ubuntu 설치  (0) 2008.05.13
SIGBUS  (0) 2005.09.21
프로그래머를 위한 vi 명령어  (1) 2005.03.26
Posted by chobocho
Coding/리눅스 삽질기2005. 3. 26. 01:32
1. 화면 분할 하기

Ctrl + w, n : 가로로 화면을 분할 해준다.




Ctrl + w, s : 세로로 화면을 분할 해준다.



:e fileName // 파일 불러오기
Ctrl + w, w // 화면 이동

'Coding > 리눅스 삽질기' 카테고리의 다른 글

Virtual Box를 이용한 Ubuntu 설치  (0) 2008.05.13
SIGBUS  (0) 2005.09.21
Mplayer Porting  (3) 2005.06.03
Posted by chobocho