'ubuntu'에 해당되는 글 5건

  1. 2013.04.03 Cannot execute adb or fastboot
  2. 2012.12.31 Create a random MAC address with python virtinst
  3. 2012.12.28 dd 명령어의 진행상태 보기 1
  4. 2012.12.21 Remote connection with Windows
  5. 2011.02.10 apt-get update 문제 1


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:01

python의 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
Linux에서 DD 명령을 이용할 때 진행 상황이 궁금하다면 아래 명령어를 이용.
단, 우선적으로 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:22

Environment : 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
apt-get update 수행시 Ign/Err/Fail 등 전혀 업데이트가 되지 않는 경우
아래 파일을 수정해 준다.

/etc/resolv.conf 에

#google nameservers
nameserver 8.8.8.8
nameserver 8.8.4.4


그리고 사용중인 네트웍의 second nameserver 추가.


: