我在安卓手机里面要挂载个ext3分区.
输入这个后mount /dev/block/mmcblk0p2 /sd-ext
Usage: mount [-r] [-w] [-o options] [-t type] device directory
应该是语法错误,但是我真的不知道该怎么改,本人愚昧.求人帮我解释这个语法的意思.

解决方案 »

  1.   

    是这样的:
    mount -t ext3 -o rw  /dev/block/mmcblk0p2 /sd-ext
      

  2.   

    楼上的说不定可以用, 你的那个没有加参数当然报错了
    例如:
    mount -t vfat  orgdir  tardir
    mount -t ext3  orgdir  tardir
      

  3.   

    mount -t ext3  orgdir  tardir这就可以
      

  4.   

    mount -o remount,rw [device path]
      

  5.   

    这个是当文件夹的权限为Read-only的时候使用的!增加权限而已!