挂载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