Cannot execute adb or fastboot
Development/Linux & Android 2013. 4. 3. 13:17
Even though you installed adt-bundle-sdk and jdk,
if you meet the below message after execution adb or fastboot on Ubuntu ,
bash: /home/user/android-sdk/sdk/platform-tools/adb: No such file or directory
You should install the below things,
sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386
Create a random MAC address with python virtinst
Development/Linux & Android 2012. 12. 31. 11:01python의 virtinst.util.randomMAC() 를 이용하여 임시 MAC adress를 생성할 수 있다.
먼저 libvirt를 설치,
$sudo apt-get install python-libvirt
python 명령어를 아래와 같이 수행
$python -c "import virtinst.util ; print virtinst.util.randomMAC()"
실행 중에 importerror 이 발생하면 관련된 package 를 설치해준다.
python-libvirt
virt-viwer
python-urlgrabber
Environment @ Ubuntu 12.04 LTS
dd 명령어의 진행상태 보기
Development/Linux & Android 2012. 12. 28. 16:32단, 우선적으로 pv 가 설치되어야 함.
$apt-get install pv
$dd if=/path/inputfile | pv | dd of=/path/outpufile
Remote connection with Windows
Development/Linux & Android 2012. 12. 21. 16:22Environment : Linux machine Ubuntu 11.10, Windows7
Utility : Remmina
우분투에서 Windows PC로 원격접속이 필요한 경우 remmina 를 이용하여 접속 가능.
윈도우즈에서 제공하는 원격접속 프로그램인 mstsc 와 거의 비슷하다.
#sudo apt-get install remmina
ps. 글꼴 부드럽게 하기 옵션은 반드시 선택!!
apt-get update 문제
Development/Linux & Android 2011. 2. 10. 13:33아래 파일을 수정해 준다.
/etc/resolv.conf 에
nameserver 8.8.8.8
nameserver 8.8.4.4
그리고 사용중인 네트웍의 second nameserver 추가.