开发者

What does the following command do? [closed]

Closed. This question is off-topic. It is not currently accepting answers.

Want to improve this question? Update the question so it's on-to开发者_开发知识库pic for Stack Overflow.

Closed 11 years ago.

Improve this question

What does the following command do?

mount -o remount,rw -t yaffs2 /dev/block/mtdblock3 /system

When I typed mount --help on shell I could find out -o is for options. But can not understand why the , between remount,rw.

If any one can explain the complete command please. I read the above command while I was trying to remove some BloatWare from my LG Optimus One p500 , after rooting it.


Try this on for size:

  • mount: the actual command
  • -o remount,rw: the option passed to mount (remount means dismount, and remount; rw means mount as read/write) The -o flag can take several comma separated parameters.
  • -t yaffs2: use the yaffs2 filesystem type
  • /dev/block/mtdblock3: mount the block device found at /dev/block/mtdblock3
  • /system: mount the specified block device at /system
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜