Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- Linux
- erlang
- hadoop
- comic agile
- Spain
- management
- web
- RFID
- programming_book
- hbase
- Book review
- Book
- Italy
- Programming
- France
- Python
- agile
- essay
- QT
- Kuala Lumpur
- leadership
- ubuntu
- Java
- Malaysia
- program
- psychology
- Software Engineering
- MySQL
- django
- history
Archives
- Today
- Total
Ubuntu 10.04 64bit에 다음 클라우드 설치 본문
원문: 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
참고: 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