'2011/02/09'에 해당되는 글 2건

허니몬의 IT 이야기/리눅스 이야기, 우분투
출처 : http://www.jamesward.com/2010/10/14/install-adobe-air-on-64-bit-ubuntu-10-10

Right now Adobe AIR is only officially available for 32-bit Linux. But it does work on 64-bit Linux with the 32-bit compatibility libraries. There are several ways to install Adobe AIR on Linux. My preferred way on Ubuntu is to use the .deb package. However the .deb package distributed by Adobe can only be installed on 32-bit systems. Good news is that this can be easily fixed! To install the Adobe AIR .deb package on a 64-bit system just follow these steps:

  1. Download the Adobe AIR .deb file
  2. In a terminal window go to the directory containing the adobeair.deb file
  3. Create a tmp dir:
    mkdir tmp
  4. Extract the deb file to the tmp dir:
    dpkg-deb -x adobeair.deb tmp
    ++ dpkg-deb 명령어 설명 : http://manpages.ubuntu.com/manpages/intrepid/man1/dpkg-deb.1.html
  5. Extract the control files:
    dpkg-deb --control adobeair.deb tmp/DEBIAN
  6. Change the Architecture parameter from “i386″ to “all”:
    sed -i "s/i386/all/" tmp/DEBIAN/control
    ++ sed 명령어 설명 : http://manpages.ubuntu.com/manpages/intrepid/man1/sed.1.html
  7. Repackage the deb file:
    dpkg -b tmp adobeair_64.deb

Now you can install Adobe AIR on a 64-bit system! From the command line just do:

sudo dpkg -i adobeair_64.deb

That’s it! Let me know if you have any questions.

Ubuntu 32bit를 설치하려고 할 때, 
위의 그림에서 처럼 '오류: 잘못된 아키텍처 i386' 이라고 나올 경우 위의 내용을 활용하여 64bit에 맞춰서 패키징을 하여 실행할 수 있다. 그러나 본문의 댓글을 보면 알 수 있듯이, 위의 방법으로 했지만 안된다면, 안되는 것이다. ㅡ_-);;

 Adobe Air로 작성된 Pomodoro 프로그램을 설치해봤다. 잘 된다. 별다른 문제도 없어서 
apt-get에서도 별다른 오류 메시지 없다.
허니몬의 IT 이야기/아키텍트, 'SW건축가'를 꿈꾸다
구글이 [순간검색]이라는 것을 내놓았을 때 놀랬다. 이제 [순간검색] 기능이 안정화되어 있는 것으로 보인다. 검색된 결과들의 대부분이 해당페이지를 볼 수가 있다. 거기다가 아래 그림에서 보는 것처럼, 검색어와 같은 항목이 있는 부분에 강조표시까지 된다. 이래서... 구글 검색을 떠날 수가 없다.
구글 검색을 사용하다가 무심코 방향키(←→↑↓)를 움직이다가 검색 항목 들에서 선택항목이 생기는 것을 보고 놀랬다. ㅡ0-);;

마우스를 사용하지 않고, 키보드만으로 검색 결과 내의 이동이 가능했다. ( 탭키[Tab]와 방향키 )

내가 모르는 기능이 또 숨어있겠지만... 일단은 적어둔다. 혹시나 해서 다음이나 네이버에서 검색해봤다.

[Daum] TabIndex 이동순서


[Naver] TabIndex 이동순서



다음이나 네이버에서 탭키[Tab]를 눌렀을 때와는 다른 모습이 신비롭다.
다음이나 네이버 검색 항목에서 탭키[Tab]를 누르면 상단부터 TabIndex 걸린 항목으로 한개씩 이동할 뿐이다.
1
블로그 이미지

Email : ihoneymon@gmail.com 안녕하세요, 꿀괴물 입니다. ^^ 멋진 비행을 준비 하는 블로그 입니다. 만능형 인간이 되어 많은 이들에게 인정받고, 즐겁고 행복하게 살기를 간절히 원합니다!! 달콤살벌한 꿀괴물의 좌충우돌 파란만장한 여정을 지켜봐주세요!! ^^

허니몬