64비트 배포판에서 32비트 executable이 실행이 안되길래 strace로 보니 /lib/ld-linux.so.2를 찾다가 못찾아서 실행이 중단된다.
ia32-libs 깔려고보니..
ia32-libs 패키지가 없어지고 gcc-multilib meta 패키지로 대체된 듯 하다.
sudo dpkg --add-architecture i386
sudo apt-get install gcc-multilib
64비트 배포판에서 32비트 executable이 실행이 안되길래 strace로 보니 /lib/ld-linux.so.2를 찾다가 못찾아서 실행이 중단된다.
ia32-libs 깔려고보니..
ia32-libs 패키지가 없어지고 gcc-multilib meta 패키지로 대체된 듯 하다.
sudo dpkg --add-architecture i386
sudo apt-get install gcc-multilib
매번 할 때마다 그냥 그때그때 찾아서 했는데, 이제 찾는 것도 귀찮다…..
요약하면, sudo gparted 하여 우분투 설치 파티션 알아냄. 거의 ext4 파티션. 나의 경우 /dev/sda4
sudo mount /dev/sda4 /mnt
sudo mount –bind /dev /mnt/dev &&
sudo mount –bind /dev/pts /mnt/dev/pts &&
sudo mount –bind /proc /mnt/proc &&
sudo mount –bind /sys /mnt/sys
sudo chroot /mnt
grub-install /dev/sda
grub-install –recheck /dev/sda
update-grub
exit &&
sudo umount /mnt/sys &&
sudo umount /mnt/proc &&
sudo umount /mnt/dev/pts &&
sudo umount /mnt/dev &&
sudo umount /mnt
2. Default 설정 등 파일은 /etc/default/grub 에 있음. 설정 바꾼 후 update-grub 하면 그대로 설정됨.
GRUB_DEFAULT=0
#GRUB_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT=5
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT=”quiet splash”
GRUB_CMDLINE_LINUX=””
프록시를 사용하는 환경에서 https 프로토콜을 사용할 때 인증 오류가 나는 경우, ca-certificate 인증 문제일 경우가 많다. 프록시 사용에 따른 인증서를 제공한다면 이걸 시스템 전역적으로 설치해주면 해결된다. 절차는 간단하다.
$ sudo mkdir /usr/share/ca-certificates/extra
$ sudo cp foo.crt /usr/share/ca-certificates/extra/
$ sudo dpkg-reconfigure ca-certificates
하고나서 껐다켜야 잘 되던데? 왜그런거지..
출처: http://askubuntu.com/questions/73287/how-do-i-install-a-root-certificate
새로 깔면 하는 환경 변수 셋팅(~/.bashrc)
alias setcross=’export CROSS_COMPILE=”/opt/toolchains/arm-eabi-4.6/bin/arm-eabi-“‘
alias b=”. ~/bin/backdir.sh”
export USE_CCACHE=1
backdir.sh 는 [Bash] cd ../../../../.. 을 치기 귀찮을 때 유용한 스크립트에 있다
http://askubuntu.com/questions/87447/how-can-i-install-adobe-air 에 나와 있다.
옮겨 적자면…
Alternately, you can install a prebuilt .deb
There is air 2.6 (last supported Linux one) available here for both architectures (Both use 32 bit underneath but at least it works). Thanks to prusswan for pointing it out.
Make sure you have 32 bit libs it’ll need:
sudo apt-get install ia32-libs
I downloaded the AMD64 one (adobeair_2.6.0.19170_amd64.deb) and installed on my computer (am64 with Precise Pangolin 12.04)
sudo dpkg -i adobeair_2.6.0.19170_amd64.deb
Then I installed the application that needed Adobe Air in the first place and it worked.
Update for Ubuntu 13:10+,
Trying this technique, i get “Package ia32-libs-gtk is not installed”
I looked up the package and tried installing those dependencies and other related packages I can think of directly:
sudo apt-get install gtk2-engines:i386 libart-2.0-2:i386 libcairo2:i386 libcanberra-gtk0:i386 libdatrie1:i386 libgail-common:i386 libgconf2-4:i386 libgtk2.0-0:i386 liblua5.1-0:i386 libpango1.0-0:i386 libpixman-1-0:i386 libqt4-network:i386 libqt4-test:i386 libqtcore4:i386 libthai0:i386 libbonobo2-0:i386 libglade2-0:i386 libgnomecanvas2-0:i386 libidl0:i386 liborbit2:i386 libwmf0.2-7:i386 gtk2-engines-murrine:i386
But that didn’t work for either the deb or original binary.
$ cd /usr/lib/chromium-browser/plugins
$ sudo ln -s /usr/lib/jvm/java-6-sun/jre/lib/amd64/libnpjp2.so
Chromium 재시작
Proxy의 예외 리스트에 뭔가 추가하고 싶다면,
$ dconf-editor
“system” / “proxy” / “ignore-hosts” 에 기본값인 “[‘localhost’, ‘127.0.0.0/8’]” 의 대괄호 안에 추가하도록 한다.
참고 : http://askubuntu.com/questions/135089/proxy-exceptions-in-12-04-lts
fstab 설정을 위한 UUID 얻기
$ sudo blkid -o full -s UUID
http://www.stgraber.org/2012/02/24/dns-in-ubuntu-12-04/
# service resolvconf restart
프로그램이 버전업 되거나 같은 이름으로 여러 다른 프로그램을 사용하고 싶을 때 다음과 같이 이용한다.
예를 들면, 나는 p4v 가 계속 버전업될 때마다 다음과 같은 식으로 사용할 p4v 를 고른다.
사실 ln -s 와 같은 식으로 소프트 링크를 바꿔주는 것과 동일하다.