Ubuntu 10.04 64bit에 다음 클라우드 설치 본문

Programming

Ubuntu 10.04 64bit에 다음 클라우드 설치

halatha 2011. 8. 11. 06:43
원문: http://ubuntu.or.kr/viewtopic.php?f=9&t=16904
참고: http://fmatic.tumblr.com/post/3978818809/convert-32bit-deb-package-to-work-in-64bit-system

다음 클라우드 .deb file 다운로드후 terminal에서 다음을 실행

$ mkdir tmp
$ dpkg-deb -x daumcloud_1.0.0.105.deb tmp
$ dpkg-deb --control daumcloud_1.0.0.105.deb tmp/DEBIAN
$ sed -i "s/i386/all" tmp/DEBIAN/control
$ dpkg -b tmp daumcloud_1.0.0.105_64.deb
$ sudo dpkg -i daumcloud_1.0.0.105_64.deb

sed 명령에서 다음과 같이 오류가 발생하면 그냥 vi로 file을 열어 i386을 all로 수정해도 된다
$ sed -i "s/i386/all" "tmp/DEBIAN/control"
sed: -e expression #1, char 10: unterminated `s' command
Comments