참고 출처 : http://www.clien.net/cs2/bbs/board.php?bo_table=lecture&wr_id=127394
출처에서 설명한 설명대로 하다 안되면 아래 첨부한 파일을 이용하거나 다른 방법을 사용해 보세요.
http://www.deb-multimedia.org/dists/stable/main/binary-i386/package/deb-multimedia-keyring
deb-multimedia-keyring_2012.05.10-dmo4_all.deb
To install a .deb file, simply double click on it, and then select Install Package
Alternatively, you can also install a .deb file by opening a terminal and typing:
sudo dpkg -i package_file.deb
http://ubuntuforums.org/showthread.php?t=1534829
https://bugs.launchpad.net/ubuntu/+source/xvidcore/+bug/500044
The following packages have unmet dependencies:libxvidcore4-dev: Depends: libxvidcore4 (= 2:1.1.2-0.1ubuntu4) but 2:1.2.2+
E: Broken packages
The package is called libxvidcore-dev, NOT libxvidcore4-dev.
// 그냥 단순하게 libxvidcore4-dev에서 4를 빼고 설치..
If you get a message like this:
Found yasm 0.x.x.xxxx Minimum version is yasm-1.0.0 If you really want to compile without asm, configure with --disable-asm.
that means that you have an old version of yasm on your system, so you should update it. The quickest way to do so is like this:
$ wget http://www.tortall.net/projects/yasm/releases/yasm-1.2.0.tar.gz $ tar xf yasm-1.2.0.tar.gz $ cd yasm-1.2.0 $ ./configure $ make # make install
참고로 글꼴 설치 방법을 간단하게 설명하자면 적당한 트루타입 글꼴(나눔고딕 등)을 다운받아서 /usr/share/fonts/truetype/ 폴더에 복사한 후 폰트캐쉬를 업데이트해주면 된다.
$ sudo cp *.ttf /usr/share/fonts/truetype/
$ sudo fc-cache -v
출처 : http://gabrielkim.tistory.com/38
AirVideoServerLinux.jar
상위 버전의 AirVideo*.jar 는 아래에서 받을 수 있는것 같으나 호환 여부는 모르겠습니다.
http://www.inmethod.com/forum/posts/list/1856.page
akf***님
2012-10-12 21:28 , Hit : 6000 , Vote : 0
[PC/모바일]
포고플러그에 에어비디오 서버 설치하기
일단 기본적인 데비안 리눅스 설치법 및 ftp, samba 설정은 comta.kr 강좌를 이용하였습니다. 다른 archlinux나 optware 사용자는 활용 못하는 방법입니다. 여러번의 삽질 끝에 알아낸 실사 가능한 설치법입니다. 다만 기본적인 하드웨어 사양이 딸리는 관계로 h.264 passthrough 가능한 mp4 파일만을 지원합니다.
한줄씩 복사해서 putty 창에다 붙여넣는 식으로 하면 됩니다.
시작점은 루트 계정 로그인 직후 root@comta:~# 입니다.
1. 기본 프로그램 설치하기 (comta 강좌에 포함이 안되는 것만)
apt-get install deb-multimedia-keyring
echo deb http://www.deb-multimedia.org squeeze main non-free >> /etc/apt/sources.list
apt-get update && apt-get upgrade
git clone git://git.videolan.org/x264.git
cd x264
./configure
checkinstall --pkgname=x264 --pkgversion "2:0.`grep X264_BUILD x264.h -m1 | cut -d' ' -f3`.`git rev-list HEAD | wc -l`+git`git rev-list HEAD -n 1 | head -c 7`" --backup=no --deldoc=yes --fstrans=no --default
tar -xjvf libav.tar.bz2
cd libav
./configure --enable-pthreads --disable-shared --enable-static --enable-gpl --enable-libx264 --enable-libmp3lame --enable-nonfree --enable-encoder=libfaac
make
cd ..
mkdir /etc/airvideo
folders = Movies:/ntfs_disk
subtitles.encoding = EUC-KR
subtitles.font = NanumGothic
subtitles.size = 130
password =
path.ffmpeg = /etc/airvideo/libav/avconv
@reboot java -jar /etc/airvideo/AirVideoServerLinux.jar /etc/airvideo/properties.conf 2&>1 /dev/null &
Nice overview.
You can also run dhclient (once off) to automatically update the /etc/resolv.conf file.
excellent! thanks this was helpful :)
thx
Just downloaded centos 6.4 and was stunned that it does not detect my onboard nic. Thank you so much :)