# dd if=/dev/cdrom of=/tmp/foo.iso
카테고리
- 시디에서 이미지 추출하기. 2011.04.19
- emulator 실행 2011.04.18
- linux kernel booting logo ppm 만들기 2011.04.15
- linux kernel path 사용법 2011.04.13
- android rtsp 2011.04.12
- bstr to cstring 2011.04.12
- android --help 2011.04.08
- 윈도우XP 탐색기 종료 문제.... 2011.04.07
- ACPI Compliant System Driver 2011.04.07
- VirtualBox can't operate in VMX root mode. Please disable the KVM kernel extension, recompile your kernel and reboot (VERR_VMX_IN_VMX_ROOT_MODE). 2011.04.07
시디에서 이미지 추출하기.
2011. 4. 19. 12:41
emulator 실행
2011. 4. 18. 10:10
$android list avd
Available Android Virtual Devices:
Name: AVD-2.1-HVGA
Path: /home/user/.android/avd/AVD-2.1-HVGA.avd
Target: Android 2.1-update1 (API level 7)
Skin: HVGA
Sdcard: /home/user/mydroid/sdcard.img
---------
Name: AVD-G2.1-WVGA800
Path: /home/user/.android/avd/AVD-G2.1-WVGA800.avd
Target: Google APIs (Google Inc.)
Based on Android 2.1-update1 (API level 7)
Skin: WVGA800
Sdcard: /home/user/mydroid/sdcard.img
---------
Name: AVD-2.2-HVGA
Path: /home/user/.android/avd/AVD-2.2-HVGA.avd
Target: Android 2.2 (API level 8)
Skin: HVGA
Sdcard: /home/user/mydroid/sdcard.img
---------
Name: AVD-1.6
Path: /home/user/.android/avd/AVD-1.6.avd
Target: Android 1.6 (API level 4)
Skin: HVGA
Sdcard: /home/user/mydroid/sdcard.img
---------
Name: AVD-1.5-HVGA
Path: /home/user/.android/avd/AVD-1.5-HVGA.avd
Target: Android 1.5 (API level 3)
Skin: HVGA
Sdcard: /home/user/mydroid/sdcard.img
Name 중에 실행하고자 하는 것 골라서
$emulator -avd AVD-2.1-HVGA &
linux kernel booting logo ppm 만들기
2011. 4. 15. 15:37
참고 링크...
http://forum.falinux.com/zbxe/?document_srl=461805
ppm 만들기 요약
sudo apt-get install netpbm
http://forum.falinux.com/zbxe/?document_srl=461805
ppm 만들기 요약
sudo apt-get install netpbm
1. $pngtopnm source.png | pnmtoplainpnm > source.ppm
2. $pnmquant -fs 223 source.ppm > source_256.ppm
2. $pnmquant -fs 223 source.ppm > source_256.ppm
3. $pnmnoraw source_256.ppm > source_logo.ppm
끝.
끝.
linux kernel path 사용법
2011. 4. 13. 16:23
patch -p0 -i file.path
android rtsp
2011. 4. 12. 17:37
Media player class
http://developer.android.com/reference/android/media/MediaPlayer.html
http://developer.android.com/reference/android/media/MediaPlayer.html
bstr to cstring
2011. 4. 12. 15:45
BSTR sUrl;
CHAR* pbstr;
CHAR* pbstr;
USES_CONVERSION; //convert를 위한 매크로
pbstr=OLE2A(sUrl); //bstr을 char로 convert
CString s(pbstr);
AfxMessageBox(s);
android --help
2011. 4. 8. 16:01
$ android --help
Usage:
android [global options] action [action options]
Global options:
-v --verbose Verbose mode: errors, warnings and informational messages are printed.
-h --help Help on a specific command.
-s --silent Silent mode: only errors are printed out.
Valid actions are composed of a verb and an optional direct object:
- list : Lists existing targets or virtual devices.
- list avd : Lists existing Android Virtual Devices.
- list target : Lists existing targets.
- create avd : Creates a new Android Virtual Device.
- move avd : Moves or renames an Android Virtual Device.
- delete avd : Deletes an Android Virtual Device.
- update avd : Updates an Android Virtual Device to match the folders of a new SDK.
- create project : Creates a new Android project.
- update project : Updates an Android project (must already have an AndroidManifest.xml).
- create test-project : Creates a new Android project for a test package.
- update test-project : Updates the Android project for a test package (must already have an AndroidManifest.xml).
- create lib-project : Creates a new Android library project.
- update lib-project : Updates an Android library project (must already have an AndroidManifest.xml).
- update adb : Updates adb to support the USB devices declared in the SDK add-ons.
- update sdk : Updates the SDK by suggesting new platforms to install if available.
윈도우XP 탐색기 종료 문제....
2011. 4. 7. 14:01
explorer down
활성화 regsvr32 /u shmedia.dll
비활성 regsvr32 shmedia.dll
어디선가 주워 들은 내용인데....기억이 안남..죄송
어디선가 주워 들은 내용인데....기억이 안남..죄송
ACPI Compliant System Driver
2011. 4. 7. 13:47
ACPI Compliant System Driver
VirtualBox can't operate in VMX root mode. Please disable the KVM kernel extension, recompile your kernel and reboot (VERR_VMX_IN_VMX_ROOT_MODE).
2011. 4. 7. 09:54
$sudo modprobe -r kvm-intel