WEB开发网
开发学院手机开发Android 开发 ubuntu下挂载android sdcard的方法 阅读

ubuntu下挂载android sdcard的方法

 2010-07-01 14:55:00 来源:WEB开发网   
核心提示:挂载SDCAED1. 到SDK目录cd ~/android/tools2. 创建一个sdcard镜像 (2Gb)mksdcard 2147483648 ~/mysdcard/sdcard.img3. 挂载镜像sudo losetup /dev/loop0 ~/mysdcard/sdcard.img(source: ht

挂载SDCAED

1. 到SDK目录

cd ~/android/tools

2. 创建一个sdcard镜像 (2Gb)

mksdcard 2147483648 ~/mysdcard/sdcard.img

3. 挂载镜像

sudo losetup /dev/loop0 ~/mysdcard/sdcard.img

(source: http://www.osdev.org/osfaq2/inde ... ges%20Under%20Linux)

4. 创建一个目录, 用来挂载镜像

mkdir ~/mysdcard/sdcard

5. 挂载设备到这个镜像目录, 这样你就能直接往这个目录里面放文件了

sudo mount /dev/loop0 ~/mysdcard/sdcard

最后,在模拟器中加载这个sdcard

emulator -sdcard ~/mysdcard/sdcard.img

如果你使用eclipse, 可以修改启动配置

Run >Run Configurations>Target - Additional Emulator Comand Line Options

-sdcard ~/mysdcard/sdcard.img

操作SDCAED

adb push - copy file/dir to device

adb pull [] - copy file/dir from device

原文:http://monmonja.com/blog/2007/11/sdcard-on-google-android/

Tags:ubuntu 挂载 android

编辑录入:coldstar [复制链接] [打 印]
赞助商链接