无限重启和刷机8%停止的救砖方法
本帖最后由 djcs175523 于 2012-3-8 15:55 编辑以前都是伸手党,第一次发帖,说不清楚的,希望大家见谅,可以PM我哈。。。
昨天晚上,刷3.05系统,可能是由于之前安装的系统太多(webos+ubuntu+cm7)分区混乱,出现了无限重启。。。蛋疼菊紧。。。吓得半死。。。不过还好之前学过一些linux和嵌入式系统的知识,折腾了半天总算是救回来了。。。
我觉得其实,只要还能长按开机键+home键15秒重启,然后迅速按住音量上进入开机模式的,都是可以救回来的,或者从某种意义上说,这样的机器还算是一个正常机器,能够加载bootloader里的程序,能够引导系统,只不过系统启动时有点小问题而已。
废话不多说了,开始讲怎么救砖(其中会涉及到一些肤浅的讲解):
1、既能弄成这样,我认为你已经是刷机了,所以我默认你的机器上有刷机环境(java运行环境+novacom+webos doctor刷机包)。
2、用winrar打开刷机包文件,例如webosdoctorp305hstnhwifi.jar,进入resources目录,你会看到webOS.tar这个文件,解压它,进入webOS这个目录,就是刚才解压出来的目录。里面有一个topaz.xml文件,很重要,描述了你的touchpad储存芯片需要达到的相关状态。用IE可以打开它,但是我建议用EDIT PLUS之类的代码编辑器,因为可以看到行号。在55-65行之间,描述了固态硬盘应该进行的分区大小,还有文件系统的格式。
3、上面两步准备好,准备工作基本上做完了。我不敢确定无限重启的原因,肯定是跟分区混乱有关。
无限重启的同学,请参照 http://www.webos-internals.org/wiki/How_To_Recover (我的浏览器JS报错了,不能发链接,砖友们自己复制下),这里面告诉了你怎样启动你的TP到可以输入命令的状态,我大概翻译一下就是,
1)把webos doctor刷机包解压出来的resources\webOS里的nova-installer-image-topaz.uImage文件拷贝到了novacom所在的文件夹,我的是C:\Program Files\Palm, Inc
2)启动CMD,WIN7可能需要管理员权限,管理员权限启动的方法是,在开始里面输入CMD以后,按下ctrl+shift+enter,然后用CD命令进入你的novacom所在的文件夹,我的是C:\Program Files\Palm, Inc然后执行
novacom boot mem:// < nova-installer-image-topaz.uImage
执行这一句之前,请确保你已经把,webos doctor刷机包解压出来的resources\webOS下的nova-installer-image-topaz.uImage文件拷贝到了novacom所在的文件夹,我的是C:\Program Files\Palm, Inc
3)重新对固态硬盘进行分区,
下面这一串命令
lvm.static vgscan --ignorelockingfailure
lvm.static vgchange -ay --ignorelockingfailure
lvm.static vgremove store
lvm.static vgscan --ignorelockingfailure
lvm.static vgchange -ay --ignorelockingfailure
lvm.static vgcreate -s 8M store /dev/mmcblk0p14
lvm.static vgscan --ignorelockingfailure
lvm.static vgchange -ay --ignorelockingfailure
lvm.static lvcreate -l 71 -i 1 -M y --major 254 --minor 0 -n root store
lvm.static lvcreate -l 8 -i 1 -M y --major 254 --minor 1 -n var store
lvm.static lvcreate -l 2 -i 1 -M y --major 254 --minor 2 -n update store
lvm.static lvcreate -l 3 -i 1 -M y --major 254 --minor 3 -n log store
lvm.static lvcreate -l 32 -i 1 -M y --major 254 --minor 4 -n mojodb store
lvm.static lvcreate -l 17 -i 1 -M y --major 254 --minor 5 -n filecache store
lvm.static lvcreate -l 3523 -i 1 -M y --major 254 --minor 6 -n media store
lvm.static lvcreate -l 64 -i 1 -M y --major 254 --minor 7 -n swap store
lvm.static vgscan --ignorelockingfailure
lvm.static vgchange -ay --ignorelockingfailure
mkdosfs -f 1 -s 64 /dev/store/media
上面是32G版本的,16G版本的,要改lvm.static lvcreate -l 3523 -i 1 -M y --major 254 --minor 6 -n media store
这一句,改3523这个数,3523*8MB=27.52GB,得到的就是32G版本的USB存储区盘容量,16G实在是无法查证是多少,所以大家还是尽量小一点,浪费点空间而已,并且我感觉刷机的时候会自动设置这个大小,所以貌似也不存在浪费问题。这个东西可小不可大。
官网WIKI上到这里就完了,但是我的做完这部以后,一刷机,呵呵,8%问题出现了。按照他的解释是,8%问题是usb存储区,格式化有问题造成的,执行
lvm.static vgscan --ignorelockingfailure
lvm.static vgchange -ay --ignorelockingfailure
mkdosfs -f 1 -s 64 /dev/store/media
即可。但是我照做了,没有任何效果。
其实,我觉得挺搞笑的,都重新分区了,划定了大小,只为USB存储区格式化了FAT文件系统“mkdosfs -f 1 -s 64 /dev/store/media”其他的都没有格式化,给谁谁都没法跑啊。刷机的后续步骤要向root分区解压入新的webos,所以肯定要出错啊。
于是乎,执行了上面的步骤的一定要重新格式化分区,具体命令如下:32G版本和16G都一样
mkfs.ext3 /dev/store/root
mkfs.ext3 /dev/store/var
mkfs.ext3 /dev/store/update
mkfs.ext3 /dev/store/log
mkfs.ext3 /dev/store/mojodb
mkfs.ext3 /dev/store/filecache
mkswap /dev/store/swap
media分区因为之前已经执行过mkdosfs -f 1 -s 64 /dev/store/media就不再格式化了。
至此,问题决绝,直接上webos doctor刷机。
8%问题的,只要执行格式化命令(如果你没执行上面的分区命令,别忘了加上mkdosfs -f 1 -s 64 /dev/store/media这句),应该就能解决。
煮机网IE8的JS兼容性有问题,我不能差表情插连接插各种,5555555。。。。
感谢分享,不过好像不要这么多命令吧[馋嘴] 学习了 谢谢LZ 楼主大侠,我的是HP VEER手机,刷机不过8%。输入命令出现如下:
root@palm-webos:/# lvm.static vgscan --ignorelockingfailure
root@palm-webos:/# lvm.static vgscan --ignorelockingfailure
Reading all physical volumes. This may take a while...
root@palm-webos:/# lvm.static vgscan --ignorelockingfailure
Reading all physical volumes. This may take a while...
/dev/mmcblk0: read failed after 0 of 4096 at 0: Input/output error
root@palm-webos:/# lvm.static vgscan --ignorelockingfailure
Reading all physical volumes. This may take a while...
/dev/mmcblk0: read failed after 0 of 4096 at 0: Input/output error
/dev/mmcblk0: read failed after 0 of 4096 at 7943946240: Input/output error
root@palm-webos:/# lvm.static vgscan --ignorelockingfailure
Reading all physical volumes. This may take a while...
/dev/mmcblk0: read failed after 0 of 4096 at 0: Input/output error
/dev/mmcblk0: read failed after 0 of 4096 at 7943946240: Input/output error
/dev/mmcblk0: read failed after 0 of 4096 at 7944003584: Input/output error
root@palm-webos:/# lvm.static vgscan --ignorelockingfailure
Reading all physical volumes. This may take a while...
/dev/mmcblk0: read failed after 0 of 4096 at 0: Input/output error
/dev/mmcblk0: read failed after 0 of 4096 at 7943946240: Input/output error
/dev/mmcblk0: read failed after 0 of 4096 at 7944003584: Input/output error
/dev/mmcblk0: read failed after 0 of 4096 at 0: Input/output error
root@palm-webos:/# lvm.static vgscan --ignorelockingfailure
Reading all physical volumes. This may take a while...
/dev/mmcblk0: read failed after 0 of 4096 at 0: Input/output error
/dev/mmcblk0: read failed after 0 of 4096 at 7943946240: Input/output error
/dev/mmcblk0: read failed after 0 of 4096 at 7944003584: Input/output error
/dev/mmcblk0: read failed after 0 of 4096 at 0: Input/output error
/dev/mmcblk0: read failed after 0 of 4096 at 4096: Input/output error
root@palm-webos:/# lvm.static vgscan --ignorelockingfailure
Reading all physical volumes. This may take a while...
/dev/mmcblk0: read failed after 0 of 4096 at 0: Input/output error
/dev/mmcblk0: read failed after 0 of 4096 at 7943946240: Input/output error
/dev/mmcblk0: read failed after 0 of 4096 at 7944003584: Input/output error
/dev/mmcblk0: read failed after 0 of 4096 at 0: Input/output error
/dev/mmcblk0: read failed after 0 of 4096 at 4096: Input/output error
/dev/mmcblk0: read failed after 0 of 4096 at 0: Input/output error
root@palm-webos:/# lvm.static vgscan --ignorelockingfailure
Reading all physical volumes. This may take a while...
/dev/mmcblk0: read failed after 0 of 4096 at 0: Input/output error
/dev/mmcblk0: read failed after 0 of 4096 at 7943946240: Input/output error
/dev/mmcblk0: read failed after 0 of 4096 at 7944003584: Input/output error
/dev/mmcblk0: read failed after 0 of 4096 at 0: Input/output error
/dev/mmcblk0: read failed after 0 of 4096 at 4096: Input/output error
/dev/mmcblk0: read failed after 0 of 4096 at 0: Input/output error
能帮忙分析下是怎么回事?有解决办法吗?先谢谢了。
我的QQ是:389046630 请问:使用doctor刷机时,在8%时重启,提示信息:doctor版本不对,是否可以使用这个办法修复? 网上各个版本的doctor都试过了。
另每次刷机失败,先前的webos3.0.2还是存在的。 好 东西 啊 留名备用 longquanno1 发表于 2012-3-10 09:31 static/image/common/back.gif
楼主大侠,我的是HP VEER手机,刷机不过8%。输入命令出现如下:
root@palm-webos:/# lvm.static vgscan --i ...
你要先找到刷机包下面那个xml,看一下你的ssd是哪一块,比如TP的是mmcblk0p14,mmcblk0p0~mmcblk0p13都是其他作用的,找到以后用“lvm.static vgremove store
”移除所有lvm卷,然后在在相应的芯片上创建LVM“lvm.static vgcreate -s 8M store /dev/mmcblk0p14”,然后再分区。 touchpad2011 发表于 2012-3-10 09:56 static/image/common/back.gif
请问:使用doctor刷机时,在8%时重启,提示信息:doctor版本不对,是否可以使用这个办法修复? 网上各个版 ...
你可以试试,反正情况不会更坏的。重新分区的话,只是东西会丢,不会影响到其他的。当然,前提是正确操作。 mark,备用,希望永远不用... [爱你]真的很感谢 昨晚刷ubuntu失败无限重启,有了这个教程才救了我的tp 你好, 我修复过程是不是有问题, lvm.static vgremove store这句我都选Y ,都提示successfully。 但是lvm.static vgcreate -s 8M store /dev/mmcblk0p14这句好像说store已经存在, 这些语言我不懂,请帮我看下,谢谢
Reading all physical volumes. This may take a while...
Reading all physical volumes. This may take a while...
Found volume group "store" using metadata type lvm2
Reading all physical volumes. This may take a while...
Found volume group "store" using metadata type lvm2
root@webos-device:/# lvm.static vgchange -ay --ignorelockingfailure
Reading all physical volumes. This may take a while...
Found volume group "store" using metadata type lvm2
root@webos-device:/# lvm.static vgchange -ay --ignorelockingfailure
8 logical volume(s) in volume group "store" now active
Reading all physical volumes. This may take a while...
Found volume group "store" using metadata type lvm2
root@webos-device:/# lvm.static vgchange -ay --ignorelockingfailure
8 logical volume(s) in volume group "store" now active
root@webos-device:/# lvm.static vgremove store
Reading all physical volumes. This may take a while...
Found volume group "store" using metadata type lvm2
root@webos-device:/# lvm.static vgchange -ay --ignorelockingfailure
8 logical volume(s) in volume group "store" now active
root@webos-device:/# lvm.static vgremove store
Do you really want to remove volume group "store" containing 8 logical volumes?
Reading all physical volumes. This may take a while...
Found volume group "store" using metadata type lvm2
root@webos-device:/# lvm.static vgchange -ay --ignorelockingfailure
8 logical volume(s) in volume group "store" now active
root@webos-device:/# lvm.static vgremove store
Do you really want to remove volume group "store" containing 8 logical volumes?
: y
Reading all physical volumes. This may take a while...
Found volume group "store" using metadata type lvm2
root@webos-device:/# lvm.static vgchange -ay --ignorelockingfailure
8 logical volume(s) in volume group "store" now active
root@webos-device:/# lvm.static vgremove store
Do you really want to remove volume group "store" containing 8 logical volumes?
: y
Do you really want to remove active logical volume "root"? : y
Reading all physical volumes. This may take a while...
Found volume group "store" using metadata type lvm2
root@webos-device:/# lvm.static vgchange -ay --ignorelockingfailure
8 logical volume(s) in volume group "store" now active
root@webos-device:/# lvm.static vgremove store
Do you really want to remove volume group "store" containing 8 logical volumes?
: y
Do you really want to remove active logical volume "root"? : y
Logical volume "root" successfully removed
Reading all physical volumes. This may take a while...
Found volume group "store" using metadata type lvm2
root@webos-device:/# lvm.static vgchange -ay --ignorelockingfailure
8 logical volume(s) in volume group "store" now active
root@webos-device:/# lvm.static vgremove store
Do you really want to remove volume group "store" containing 8 logical volumes?
: y
Do you really want to remove active logical volume "root"? : y
Logical volume "root" successfully removed
Do you really want to remove active logical volume "var"? : y
Reading all physical volumes. This may take a while...
Found volume group "store" using metadata type lvm2
root@webos-device:/# lvm.static vgchange -ay --ignorelockingfailure
8 logical volume(s) in volume group "store" now active
root@webos-device:/# lvm.static vgremove store
Do you really want to remove volume group "store" containing 8 logical volumes?
: y
Do you really want to remove active logical volume "root"? : y
Logical volume "root" successfully removed
Do you really want to remove active logical volume "var"? : y
Logical volume "var" successfully removed
Reading all physical volumes. This may take a while...
Found volume group "store" using metadata type lvm2
root@webos-device:/# lvm.static vgchange -ay --ignorelockingfailure
8 logical volume(s) in volume group "store" now active
root@webos-device:/# lvm.static vgremove store
Do you really want to remove volume group "store" containing 8 logical volumes?
: y
Do you really want to remove active logical volume "root"? : y
Logical volume "root" successfully removed
Do you really want to remove active logical volume "var"? : y
Logical volume "var" successfully removed
Do you really want to remove active logical volume "update"? : y
Reading all physical volumes. This may take a while...
Found volume group "store" using metadata type lvm2
root@webos-device:/# lvm.static vgchange -ay --ignorelockingfailure
8 logical volume(s) in volume group "store" now active
root@webos-device:/# lvm.static vgremove store
Do you really want to remove volume group "store" containing 8 logical volumes?
: y
Do you really want to remove active logical volume "root"? : y
Logical volume "root" successfully removed
Do you really want to remove active logical volume "var"? : y
Logical volume "var" successfully removed
Do you really want to remove active logical volume "update"? : y
Logical volume "update" successfully removed
Reading all physical volumes. This may take a while...
Found volume group "store" using metadata type lvm2
root@webos-device:/# lvm.static vgchange -ay --ignorelockingfailure
8 logical volume(s) in volume group "store" now active
root@webos-device:/# lvm.static vgremove store
Do you really want to remove volume group "store" containing 8 logical volumes?
: y
Do you really want to remove active logical volume "root"? : y
Logical volume "root" successfully removed
Do you really want to remove active logical volume "var"? : y
Logical volume "var" successfully removed
Do you really want to remove active logical volume "update"? : y
Logical volume "update" successfully removed
Do you really want to remove active logical volume "log"? : y
Reading all physical volumes. This may take a while...
Found volume group "store" using metadata type lvm2
root@webos-device:/# lvm.static vgchange -ay --ignorelockingfailure
8 logical volume(s) in volume group "store" now active
root@webos-device:/# lvm.static vgremove store
Do you really want to remove volume group "store" containing 8 logical volumes?
: y
Do you really want to remove active logical volume "root"? : y
Logical volume "root" successfully removed
Do you really want to remove active logical volume "var"? : y
Logical volume "var" successfully removed
Do you really want to remove active logical volume "update"? : y
Logical volume "update" successfully removed
Do you really want to remove active logical volume "log"? : y
Logical volume "log" successfully removed
Reading all physical volumes. This may take a while...
Found volume group "store" using metadata type lvm2
root@webos-device:/# lvm.static vgchange -ay --ignorelockingfailure
8 logical volume(s) in volume group "store" now active
root@webos-device:/# lvm.static vgremove store
Do you really want to remove volume group "store" containing 8 logical volumes?
: y
Do you really want to remove active logical volume "root"? : y
Logical volume "root" successfully removed
Do you really want to remove active logical volume "var"? : y
Logical volume "var" successfully removed
Do you really want to remove active logical volume "update"? : y
Logical volume "update" successfully removed
Do you really want to remove active logical volume "log"? : y
Logical volume "log" successfully removed
Do you really want to remove active logical volume "mojodb"? : y
Reading all physical volumes. This may take a while...
Found volume group "store" using metadata type lvm2
root@webos-device:/# lvm.static vgchange -ay --ignorelockingfailure
8 logical volume(s) in volume group "store" now active
root@webos-device:/# lvm.static vgremove store
Do you really want to remove volume group "store" containing 8 logical volumes?
: y
Do you really want to remove active logical volume "root"? : y
Logical volume "root" successfully removed
Do you really want to remove active logical volume "var"? : y
Logical volume "var" successfully removed
Do you really want to remove active logical volume "update"? : y
Logical volume "update" successfully removed
Do you really want to remove active logical volume "log"? : y
Logical volume "log" successfully removed
Do you really want to remove active logical volume "mojodb"? : y
Logical volume "mojodb" successfully removed
Reading all physical volumes. This may take a while...
Found volume group "store" using metadata type lvm2
root@webos-device:/# lvm.static vgchange -ay --ignorelockingfailure
8 logical volume(s) in volume group "store" now active
root@webos-device:/# lvm.static vgremove store
Do you really want to remove volume group "store" containing 8 logical volumes?
: y
Do you really want to remove active logical volume "root"? : y
Logical volume "root" successfully removed
Do you really want to remove active logical volume "var"? : y
Logical volume "var" successfully removed
Do you really want to remove active logical volume "update"? : y
Logical volume "update" successfully removed
Do you really want to remove active logical volume "log"? : y
Logical volume "log" successfully removed
Do you really want to remove active logical volume "mojodb"? : y
Logical volume "mojodb" successfully removed
Do you really want to remove active logical volume "filecache"? : y
Reading all physical volumes. This may take a while...
Found volume group "store" using metadata type lvm2
root@webos-device:/# lvm.static vgchange -ay --ignorelockingfailure
8 logical volume(s) in volume group "store" now active
root@webos-device:/# lvm.static vgremove store
Do you really want to remove volume group "store" containing 8 logical volumes?
: y
Do you really want to remove active logical volume "root"? : y
Logical volume "root" successfully removed
Do you really want to remove active logical volume "var"? : y
Logical volume "var" successfully removed
Do you really want to remove active logical volume "update"? : y
Logical volume "update" successfully removed
Do you really want to remove active logical volume "log"? : y
Logical volume "log" successfully removed
Do you really want to remove active logical volume "mojodb"? : y
Logical volume "mojodb" successfully removed
Do you really want to remove active logical volume "filecache"? : y
Logical volume "filecache" successfully removed
Reading all physical volumes. This may take a while...
Found volume group "store" using metadata type lvm2
root@webos-device:/# lvm.static vgchange -ay --ignorelockingfailure
8 logical volume(s) in volume group "store" now active
root@webos-device:/# lvm.static vgremove store
Do you really want to remove volume group "store" containing 8 logical volumes?
: y
Do you really want to remove active logical volume "root"? : y
Logical volume "root" successfully removed
Do you really want to remove active logical volume "var"? : y
Logical volume "var" successfully removed
Do you really want to remove active logical volume "update"? : y
Logical volume "update" successfully removed
Do you really want to remove active logical volume "log"? : y
Logical volume "log" successfully removed
Do you really want to remove active logical volume "mojodb"? : y
Logical volume "mojodb" successfully removed
Do you really want to remove active logical volume "filecache"? : y
Logical volume "filecache" successfully removed
Do you really want to remove active logical volume "media"? : y
Reading all physical volumes. This may take a while...
Found volume group "store" using metadata type lvm2
root@webos-device:/# lvm.static vgchange -ay --ignorelockingfailure
8 logical volume(s) in volume group "store" now active
root@webos-device:/# lvm.static vgremove store
Do you really want to remove volume group "store" containing 8 logical volumes?
: y
Do you really want to remove active logical volume "root"? : y
Logical volume "root" successfully removed
Do you really want to remove active logical volume "var"? : y
Logical volume "var" successfully removed
Do you really want to remove active logical volume "update"? : y
Logical volume "update" successfully removed
Do you really want to remove active logical volume "log"? : y
Logical volume "log" successfully removed
Do you really want to remove active logical volume "mojodb"? : y
Logical volume "mojodb" successfully removed
Do you really want to remove active logical volume "filecache"? : y
Logical volume "filecache" successfully removed
Do you really want to remove active logical volume "media"? : y
Logical volume "media" successfully removed
Reading all physical volumes. This may take a while...
Found volume group "store" using metadata type lvm2
root@webos-device:/# lvm.static vgchange -ay --ignorelockingfailure
8 logical volume(s) in volume group "store" now active
root@webos-device:/# lvm.static vgremove store
Do you really want to remove volume group "store" containing 8 logical volumes?
: y
Do you really want to remove active logical volume "root"? : y
Logical volume "root" successfully removed
Do you really want to remove active logical volume "var"? : y
Logical volume "var" successfully removed
Do you really want to remove active logical volume "update"? : y
Logical volume "update" successfully removed
Do you really want to remove active logical volume "log"? : y
Logical volume "log" successfully removed
Do you really want to remove active logical volume "mojodb"? : y
Logical volume "mojodb" successfully removed
Do you really want to remove active logical volume "filecache"? : y
Logical volume "filecache" successfully removed
Do you really want to remove active logical volume "media"? : y
Logical volume "media" successfully removed
Do you really want to remove active logical volume "swap"? : y
Reading all physical volumes. This may take a while...
Found volume group "store" using metadata type lvm2
root@webos-device:/# lvm.static vgchange -ay --ignorelockingfailure
8 logical volume(s) in volume group "store" now active
root@webos-device:/# lvm.static vgremove store
Do you really want to remove volume group "store" containing 8 logical volumes?
: y
Do you really want to remove active logical volume "root"? : y
Logical volume "root" successfully removed
Do you really want to remove active logical volume "var"? : y
Logical volume "var" successfully removed
Do you really want to remove active logical volume "update"? : y
Logical volume "update" successfully removed
Do you really want to remove active logical volume "log"? : y
Logical volume "log" successfully removed
Do you really want to remove active logical volume "mojodb"? : y
Logical volume "mojodb" successfully removed
Do you really want to remove active logical volume "filecache"? : y
Logical volume "filecache" successfully removed
Do you really want to remove active logical volume "media"? : y
Logical volume "media" successfully removed
Do you really want to remove active logical volume "swap"? : y
Logical volume "swap" successfully removed
Volume group "store" successfully removed
Volume group "store" successfully removed
root@webos-device:/# lvm.static vgscan --ignorelockingfailure
Volume group "store" successfully removed
root@webos-device:/# lvm.static vgscan --ignorelockingfailure
Reading all physical volumes. This may take a while...
Volume group "store" successfully removed
root@webos-device:/# lvm.static vgscan --ignorelockingfailure
Reading all physical volumes. This may take a while...
Found volume group "store" using metadata type lvm2
Volume group "store" successfully removed
root@webos-device:/# lvm.static vgscan --ignorelockingfailure
Reading all physical volumes. This may take a while...
Found volume group "store" using metadata type lvm2
root@webos-device:/# lvm.static vgchange -ay --ignorelockingfailure
Volume group "store" successfully removed
root@webos-device:/# lvm.static vgscan --ignorelockingfailure
Reading all physical volumes. This may take a while...
Found volume group "store" using metadata type lvm2
root@webos-device:/# lvm.static vgchange -ay --ignorelockingfailure
8 logical volume(s) in volume group "store" now active
Volume group "store" successfully removed
root@webos-device:/# lvm.static vgscan --ignorelockingfailure
Reading all physical volumes. This may take a while...
Found volume group "store" using metadata type lvm2
root@webos-device:/# lvm.static vgchange -ay --ignorelockingfailure
8 logical volume(s) in volume group "store" now active
root@webos-device:/# lvm.static vgcreate -s 8M store /dev/mmcblk0p14
Volume group "store" successfully removed
root@webos-device:/# lvm.static vgscan --ignorelockingfailure
Reading all physical volumes. This may take a while...
Found volume group "store" using metadata type lvm2
root@webos-device:/# lvm.static vgchange -ay --ignorelockingfailure
8 logical volume(s) in volume group "store" now active
root@webos-device:/# lvm.static vgcreate -s 8M store /dev/mmcblk0p14
/dev/store: already exists in filesystem
Volume group "store" successfully removed
root@webos-device:/# lvm.static vgscan --ignorelockingfailure
Reading all physical volumes. This may take a while...
Found volume group "store" using metadata type lvm2
root@webos-device:/# lvm.static vgchange -ay --ignorelockingfailure
8 logical volume(s) in volume group "store" now active
root@webos-device:/# lvm.static vgcreate -s 8M store /dev/mmcblk0p14
/dev/store: already exists in filesystem
New volume group name "store" is invalid
Volume group "store" successfully removed
root@webos-device:/# lvm.static vgscan --ignorelockingfailure
Reading all physical volumes. This may take a while...
Found volume group "store" using metadata type lvm2
root@webos-device:/# lvm.static vgchange -ay --ignorelockingfailure
8 logical volume(s) in volume group "store" now active
root@webos-device:/# lvm.static vgcreate -s 8M store /dev/mmcblk0p14
/dev/store: already exists in filesystem
New volume group name "store" is invalid
Run `vgcreate --help' for more information.
Volume group "store" successfully removed
root@webos-device:/# lvm.static vgscan --ignorelockingfailure
Reading all physical volumes. This may take a while...
Found volume group "store" using metadata type lvm2
root@webos-device:/# lvm.static vgchange -ay --ignorelockingfailure
8 logical volume(s) in volume group "store" now active
root@webos-device:/# lvm.static vgcreate -s 8M store /dev/mmcblk0p14
/dev/store: already exists in filesystem
New volume group name "store" is invalid
Run `vgcreate --help' for more information.
root@webos-device:/# lvm.static vgscan --ignorelockingfailure
Volume group "store" successfully removed
root@webos-device:/# lvm.static vgscan --ignorelockingfailure
Reading all physical volumes. This may take a while...
Found volume group "store" using metadata type lvm2
root@webos-device:/# lvm.static vgchange -ay --ignorelockingfailure
8 logical volume(s) in volume group "store" now active
root@webos-device:/# lvm.static vgcreate -s 8M store /dev/mmcblk0p14
/dev/store: already exists in filesystem
New volume group name "store" is invalid
Run `vgcreate --help' for more information.
root@webos-device:/# lvm.static vgscan --ignorelockingfailure
Reading all physical volumes. This may take a while...
Volume group "store" successfully removed
root@webos-device:/# lvm.static vgscan --ignorelockingfailure
Reading all physical volumes. This may take a while...
Found volume group "store" using metadata type lvm2
root@webos-device:/# lvm.static vgchange -ay --ignorelockingfailure
8 logical volume(s) in volume group "store" now active
root@webos-device:/# lvm.static vgcreate -s 8M store /dev/mmcblk0p14
/dev/store: already exists in filesystem
New volume group name "store" is invalid
Run `vgcreate --help' for more information.
root@webos-device:/# lvm.static vgscan --ignorelockingfailure
Reading all physical volumes. This may take a while...
Found volume group "store" using metadata type lvm2
Volume group "store" successfully removed
root@webos-device:/# lvm.static vgscan --ignorelockingfailure
Reading all physical volumes. This may take a while...
Found volume group "store" using metadata type lvm2
root@webos-device:/# lvm.static vgchange -ay --ignorelockingfailure
8 logical volume(s) in volume group "store" now active
root@webos-device:/# lvm.static vgcreate -s 8M store /dev/mmcblk0p14
/dev/store: already exists in filesystem
New volume group name "store" is invalid
Run `vgcreate --help' for more information.
root@webos-device:/# lvm.static vgscan --ignorelockingfailure
Reading all physical volumes. This may take a while...
Found volume group "store" using metadata type lvm2
root@webos-device:/# lvm.static vgchange -ay --ignorelockingfailure
Volume group "store" successfully removed
root@webos-device:/# lvm.static vgscan --ignorelockingfailure
Reading all physical volumes. This may take a while...
Found volume group "store" using metadata type lvm2
root@webos-device:/# lvm.static vgchange -ay --ignorelockingfailure
8 logical volume(s) in volume group "store" now active
root@webos-device:/# lvm.static vgcreate -s 8M store /dev/mmcblk0p14
/dev/store: already exists in filesystem
New volume group name "store" is invalid
Run `vgcreate --help' for more information.
root@webos-device:/# lvm.static vgscan --ignorelockingfailure
Reading all physical volumes. This may take a while...
Found volume group "store" using metadata type lvm2
root@webos-device:/# lvm.static vgchange -ay --ignorelockingfailure
8 logical volume(s) in volume group "store" now active
Volume group "store" successfully removed
root@webos-device:/# lvm.static vgscan --ignorelockingfailure
Reading all physical volumes. This may take a while...
Found volume group "store" using metadata type lvm2
root@webos-device:/# lvm.static vgchange -ay --ignorelockingfailure
8 logical volume(s) in volume group "store" now active
root@webos-device:/# lvm.static vgcreate -s 8M store /dev/mmcblk0p14
/dev/store: already exists in filesystem
New volume group name "store" is invalid
Run `vgcreate --help' for more information.
root@webos-device:/# lvm.static vgscan --ignorelockingfailure
Reading all physical volumes. This may take a while...
Found volume group "store" using metadata type lvm2
root@webos-device:/# lvm.static vgchange -ay --ignorelockingfailure
8 logical volume(s) in volume group "store" now active
root@webos-device:/# lvm.static lvcreate -l 71 -i 1 -M y --major 254 --minor 0 -
root@webos-device:/# lvm.static lvcreate -l 71 -i 1 -M y --major 254 --minor 0 -
n root store
root@webos-device:/# lvm.static lvcreate -l 71 -i 1 -M y --major 254 --minor 0 -
n root store
Redundant stripes argument: default is 1
root@webos-device:/# lvm.static lvcreate -l 71 -i 1 -M y --major 254 --minor 0 -
n root store
Redundant stripes argument: default is 1
Logical volume "root" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 71 -i 1 -M y --major 254 --minor 0 -
n root store
Redundant stripes argument: default is 1
Logical volume "root" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 8 -i 1 -M y --major 254 --minor 1 -n
root@webos-device:/# lvm.static lvcreate -l 71 -i 1 -M y --major 254 --minor 0 -
n root store
Redundant stripes argument: default is 1
Logical volume "root" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 8 -i 1 -M y --major 254 --minor 1 -n
var store
root@webos-device:/# lvm.static lvcreate -l 71 -i 1 -M y --major 254 --minor 0 -
n root store
Redundant stripes argument: default is 1
Logical volume "root" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 8 -i 1 -M y --major 254 --minor 1 -n
var store
Redundant stripes argument: default is 1
root@webos-device:/# lvm.static lvcreate -l 71 -i 1 -M y --major 254 --minor 0 -
n root store
Redundant stripes argument: default is 1
Logical volume "root" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 8 -i 1 -M y --major 254 --minor 1 -n
var store
Redundant stripes argument: default is 1
Logical volume "var" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 71 -i 1 -M y --major 254 --minor 0 -
n root store
Redundant stripes argument: default is 1
Logical volume "root" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 8 -i 1 -M y --major 254 --minor 1 -n
var store
Redundant stripes argument: default is 1
Logical volume "var" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 2 -i 1 -M y --major 254 --minor 2 -n
root@webos-device:/# lvm.static lvcreate -l 71 -i 1 -M y --major 254 --minor 0 -
n root store
Redundant stripes argument: default is 1
Logical volume "root" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 8 -i 1 -M y --major 254 --minor 1 -n
var store
Redundant stripes argument: default is 1
Logical volume "var" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 2 -i 1 -M y --major 254 --minor 2 -n
update store
root@webos-device:/# lvm.static lvcreate -l 71 -i 1 -M y --major 254 --minor 0 -
n root store
Redundant stripes argument: default is 1
Logical volume "root" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 8 -i 1 -M y --major 254 --minor 1 -n
var store
Redundant stripes argument: default is 1
Logical volume "var" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 2 -i 1 -M y --major 254 --minor 2 -n
update store
Redundant stripes argument: default is 1
root@webos-device:/# lvm.static lvcreate -l 71 -i 1 -M y --major 254 --minor 0 -
n root store
Redundant stripes argument: default is 1
Logical volume "root" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 8 -i 1 -M y --major 254 --minor 1 -n
var store
Redundant stripes argument: default is 1
Logical volume "var" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 2 -i 1 -M y --major 254 --minor 2 -n
update store
Redundant stripes argument: default is 1
Logical volume "update" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 71 -i 1 -M y --major 254 --minor 0 -
n root store
Redundant stripes argument: default is 1
Logical volume "root" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 8 -i 1 -M y --major 254 --minor 1 -n
var store
Redundant stripes argument: default is 1
Logical volume "var" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 2 -i 1 -M y --major 254 --minor 2 -n
update store
Redundant stripes argument: default is 1
Logical volume "update" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 3 -i 1 -M y --major 254 --minor 3 -n
root@webos-device:/# lvm.static lvcreate -l 71 -i 1 -M y --major 254 --minor 0 -
n root store
Redundant stripes argument: default is 1
Logical volume "root" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 8 -i 1 -M y --major 254 --minor 1 -n
var store
Redundant stripes argument: default is 1
Logical volume "var" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 2 -i 1 -M y --major 254 --minor 2 -n
update store
Redundant stripes argument: default is 1
Logical volume "update" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 3 -i 1 -M y --major 254 --minor 3 -n
log store
root@webos-device:/# lvm.static lvcreate -l 71 -i 1 -M y --major 254 --minor 0 -
n root store
Redundant stripes argument: default is 1
Logical volume "root" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 8 -i 1 -M y --major 254 --minor 1 -n
var store
Redundant stripes argument: default is 1
Logical volume "var" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 2 -i 1 -M y --major 254 --minor 2 -n
update store
Redundant stripes argument: default is 1
Logical volume "update" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 3 -i 1 -M y --major 254 --minor 3 -n
log store
Redundant stripes argument: default is 1
root@webos-device:/# lvm.static lvcreate -l 71 -i 1 -M y --major 254 --minor 0 -
n root store
Redundant stripes argument: default is 1
Logical volume "root" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 8 -i 1 -M y --major 254 --minor 1 -n
var store
Redundant stripes argument: default is 1
Logical volume "var" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 2 -i 1 -M y --major 254 --minor 2 -n
update store
Redundant stripes argument: default is 1
Logical volume "update" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 3 -i 1 -M y --major 254 --minor 3 -n
log store
Redundant stripes argument: default is 1
Logical volume "log" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 71 -i 1 -M y --major 254 --minor 0 -
n root store
Redundant stripes argument: default is 1
Logical volume "root" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 8 -i 1 -M y --major 254 --minor 1 -n
var store
Redundant stripes argument: default is 1
Logical volume "var" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 2 -i 1 -M y --major 254 --minor 2 -n
update store
Redundant stripes argument: default is 1
Logical volume "update" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 3 -i 1 -M y --major 254 --minor 3 -n
log store
Redundant stripes argument: default is 1
Logical volume "log" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 32 -i 1 -M y --major 254 --minor 4 -
root@webos-device:/# lvm.static lvcreate -l 71 -i 1 -M y --major 254 --minor 0 -
n root store
Redundant stripes argument: default is 1
Logical volume "root" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 8 -i 1 -M y --major 254 --minor 1 -n
var store
Redundant stripes argument: default is 1
Logical volume "var" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 2 -i 1 -M y --major 254 --minor 2 -n
update store
Redundant stripes argument: default is 1
Logical volume "update" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 3 -i 1 -M y --major 254 --minor 3 -n
log store
Redundant stripes argument: default is 1
Logical volume "log" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 32 -i 1 -M y --major 254 --minor 4 -
n mojodb store
root@webos-device:/# lvm.static lvcreate -l 71 -i 1 -M y --major 254 --minor 0 -
n root store
Redundant stripes argument: default is 1
Logical volume "root" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 8 -i 1 -M y --major 254 --minor 1 -n
var store
Redundant stripes argument: default is 1
Logical volume "var" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 2 -i 1 -M y --major 254 --minor 2 -n
update store
Redundant stripes argument: default is 1
Logical volume "update" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 3 -i 1 -M y --major 254 --minor 3 -n
log store
Redundant stripes argument: default is 1
Logical volume "log" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 32 -i 1 -M y --major 254 --minor 4 -
n mojodb store
Redundant stripes argument: default is 1
Logical volume "mojodb" already exists in volume group "store"
Logical volume "mojodb" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 17 -i 1 -M y --major 254 --minor 5 -
Logical volume "mojodb" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 17 -i 1 -M y --major 254 --minor 5 -
n filecache store
Logical volume "mojodb" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 17 -i 1 -M y --major 254 --minor 5 -
n filecache store
Redundant stripes argument: default is 1
Logical volume "mojodb" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 17 -i 1 -M y --major 254 --minor 5 -
n filecache store
Redundant stripes argument: default is 1
Logical volume "filecache" already exists in volume group "store"
Logical volume "mojodb" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 17 -i 1 -M y --major 254 --minor 5 -
n filecache store
Redundant stripes argument: default is 1
Logical volume "filecache" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 1500 -i 1 -M y --major 254 --minor 6
Logical volume "mojodb" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 17 -i 1 -M y --major 254 --minor 5 -
n filecache store
Redundant stripes argument: default is 1
Logical volume "filecache" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 1500 -i 1 -M y --major 254 --minor 6
-n media store
Logical volume "mojodb" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 17 -i 1 -M y --major 254 --minor 5 -
n filecache store
Redundant stripes argument: default is 1
Logical volume "filecache" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 1500 -i 1 -M y --major 254 --minor 6
-n media store
Redundant stripes argument: default is 1
Logical volume "mojodb" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 17 -i 1 -M y --major 254 --minor 5 -
n filecache store
Redundant stripes argument: default is 1
Logical volume "filecache" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 1500 -i 1 -M y --major 254 --minor 6
-n media store
Redundant stripes argument: default is 1
Logical volume "media" already exists in volume group "store"
Logical volume "mojodb" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 17 -i 1 -M y --major 254 --minor 5 -
n filecache store
Redundant stripes argument: default is 1
Logical volume "filecache" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 1500 -i 1 -M y --major 254 --minor 6
-n media store
Redundant stripes argument: default is 1
Logical volume "media" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 64 -i 1 -M y --major 254 --minor 7 -
Logical volume "mojodb" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 17 -i 1 -M y --major 254 --minor 5 -
n filecache store
Redundant stripes argument: default is 1
Logical volume "filecache" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 1500 -i 1 -M y --major 254 --minor 6
-n media store
Redundant stripes argument: default is 1
Logical volume "media" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 64 -i 1 -M y --major 254 --minor 7 -
n swap store
Logical volume "mojodb" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 17 -i 1 -M y --major 254 --minor 5 -
n filecache store
Redundant stripes argument: default is 1
Logical volume "filecache" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 1500 -i 1 -M y --major 254 --minor 6
-n media store
Redundant stripes argument: default is 1
Logical volume "media" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 64 -i 1 -M y --major 254 --minor 7 -
n swap store
Redundant stripes argument: default is 1
Logical volume "mojodb" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 17 -i 1 -M y --major 254 --minor 5 -
n filecache store
Redundant stripes argument: default is 1
Logical volume "filecache" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 1500 -i 1 -M y --major 254 --minor 6
-n media store
Redundant stripes argument: default is 1
Logical volume "media" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 64 -i 1 -M y --major 254 --minor 7 -
n swap store
Redundant stripes argument: default is 1
Logical volume "swap" already exists in volume group "store"
Logical volume "mojodb" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 17 -i 1 -M y --major 254 --minor 5 -
n filecache store
Redundant stripes argument: default is 1
Logical volume "filecache" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 1500 -i 1 -M y --major 254 --minor 6
-n media store
Redundant stripes argument: default is 1
Logical volume "media" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 64 -i 1 -M y --major 254 --minor 7 -
n swap store
Redundant stripes argument: default is 1
Logical volume "swap" already exists in volume group "store"
root@webos-device:/# lvm.static vgscan --ignorelockingfailure
Logical volume "mojodb" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 17 -i 1 -M y --major 254 --minor 5 -
n filecache store
Redundant stripes argument: default is 1
Logical volume "filecache" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 1500 -i 1 -M y --major 254 --minor 6
-n media store
Redundant stripes argument: default is 1
Logical volume "media" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 64 -i 1 -M y --major 254 --minor 7 -
n swap store
Redundant stripes argument: default is 1
Logical volume "swap" already exists in volume group "store"
root@webos-device:/# lvm.static vgscan --ignorelockingfailure
Reading all physical volumes. This may take a while...
Logical volume "mojodb" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 17 -i 1 -M y --major 254 --minor 5 -
n filecache store
Redundant stripes argument: default is 1
Logical volume "filecache" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 1500 -i 1 -M y --major 254 --minor 6
-n media store
Redundant stripes argument: default is 1
Logical volume "media" already exists in volume group "store"
root@webos-device:/# lvm.static lvcreate -l 64 -i 1 -M y --major 254 --minor 7 -
n swap store
Redundant stripes argument: default is 1
Logical volume "swap" already exists in volume group "store"
root@webos-device:/# lvm.static vgscan --ignorelockingfailure
Reading all physical volumes. This may take a while...
Found volume group "store" using metadata type lvm2 楼主请教你呀,需要你帮忙,加我QQ936185302,多谢你先 阿波123 发表于 2012-3-21 21:24 static/image/common/back.gif
你好, 我修复过程是不是有问题, lvm.static vgremove store这句我都选Y ,都提示successfully。 但是lvm ...
你看你的怎么一条语句执行了很多次,第一次是成功了的。。。 林博 发表于 2012-3-24 12:45 static/image/common/back.gif
楼主请教你呀,需要你帮忙,加我QQ936185302,多谢你先
你好,前两天没上线不好意思,现在还需要吗? 哈哈,解决了楼主,多谢了 楼主 当我运行lvm.static vgcreate -s 8M store /dev/mmcblk0p14
提示store 已经存在是什么问题啊 不能重新创建 求助 阿波123 发表于 2012-4-19 13:45 static/image/common/back.gif
楼主 当我运行lvm.static vgcreate -s 8M store /dev/mmcblk0p14
提示store 已经存在是什么问题啊 不能重 ...
多数情况下
是不需要,把所有分区删除,再重建
这样风险高,不好操作 兰花大盗 发表于 2012-4-19 14:32 static/image/common/back.gif
多数情况下
是不需要,把所有分区删除,再重建
这样风险高,不好操作
请教下 我的无限重启, 能刷机 但到12就停止 跳出can not reset your device TP显示一个CPU 图案
这种情况 有什么方法解决吗 搞了几个月了 还没折腾出来 谢谢了 本帖最后由 兰花大盗 于 2012-4-19 15:37 编辑
阿波123 发表于 2012-4-19 15:26 static/image/common/back.gif
请教下 我的无限重启, 能刷机 但到12就停止 跳出can not reset your device TP显示一个CPU 图案 ...
有没有单独试过这些命令,
操作完毕后重新刷机
lvm.static vgscan --ignorelockingfailure
lvm.static vgchange -ay --ignorelockingfailure
mkdosfs -f 1 -s 64 /dev/store/media
顺便问一下,你有没有使用过这条命令
lvm.static vgremove store如果这条命令执行成功,系统原来的分区,就没有了
需要重新创建
兰花大盗 发表于 2012-4-19 15:35 static/image/common/back.gif
有没有单独试过这些命令,
操作完毕后重新刷机
试过了 也试了坛子里的修砖程序 运行表面看着都正常 就是过不了12 请问还有其他可行方法吗 阿波123 发表于 2012-4-19 15:40 static/image/common/back.gif
试过了 也试了坛子里的修砖程序 运行表面看着都正常 就是过不了12 请问还有其他可行方法吗 ...
用这个命令看一下
当前分区情况
lvm.static lvdisplay
兰花大盗 发表于 2012-4-19 15:46 static/image/common/back.gif
用这个命令看一下
当前分区情况
F:\>"C:/Program Files/Palm, Inc/novacom.exe" -d 09f1d50f5a72807c0c1c59cfa6eb7555
09eb5faa -t open tty://
ln: /var/luna/preferences/localtime: File exists
root@webos-device:/# lvm.static lvdisplay
lvm.static lvdisplay
--- Logical volume ---
LV Name /dev/store/root
VG Name store
LV UUID vQNIEA-nvH6-1iLk-i4wa-sss9-HzzF-5Q2kNE
LV Write Access read/write
LV Status available
# open 0
LV Size 568.00 MB
Current LE 71
Segments 1
Allocation inherit
Read ahead sectors auto
- currently set to 256
Persistent major 254
Persistent minor 0
Block device 254:0
--- Logical volume ---
LV Name /dev/store/var
VG Name store
LV UUID GHUFWp-WeJz-kzwO-2Y2L-Zc1p-3zqk-hCTD0C
LV Write Access read/write
LV Status available
# open 0
LV Size 64.00 MB
Current LE 8
Segments 1
Allocation inherit
Read ahead sectors auto
- currently set to 256
Persistent major 254
Persistent minor 1
Block device 254:1
--- Logical volume ---
LV Name /dev/store/update
VG Name store
LV UUID b0mw0I-Bhh4-OVXe-Q2Wj-MR1Z-Qnn4-dqElaQ
LV Write Access read/write
LV Status available
# open 0
LV Size 16.00 MB
Current LE 2
Segments 1
Allocation inherit
Read ahead sectors auto
- currently set to 256
Persistent major 254
Persistent minor 2
Block device 254:2
--- Logical volume ---
LV Name /dev/store/log
VG Name store
LV UUID ZgV2oB-iZVd-1oHN-HMIl-Wi5Y-gg7g-qDaLRn
LV Write Access read/write
LV Status available
# open 0
LV Size 24.00 MB
Current LE 3
Segments 1
Allocation inherit
Read ahead sectors auto
- currently set to 256
Persistent major 254
Persistent minor 3
Block device 254:3
--- Logical volume ---
LV Name /dev/store/mojodb
VG Name store
LV UUID H6akEO-Oevw-A15A-9TWv-Nc5G-g4Z1-286wkG
LV Write Access read/write
LV Status available
# open 0
LV Size 256.00 MB
Current LE 32
Segments 2
Allocation inherit
Read ahead sectors auto
- currently set to 256
Persistent major 254
Persistent minor 4
Block device 254:4
--- Logical volume ---
LV Name /dev/store/filecache
VG Name store
LV UUID nRjIAH-p9Ie-mdfp-D864-DQVZ-MJNZ-4I38Ss
LV Write Access read/write
LV Status available
# open 0
LV Size 136.00 MB
Current LE 17
Segments 1
Allocation inherit
Read ahead sectors auto
- currently set to 256
Persistent major 254
Persistent minor 5
Block device 254:5
--- Logical volume ---
LV Name /dev/store/media
VG Name store
LV UUID mGG7zS-6nie-MJDu-w3Ny-VbHm-3Zhh-GBJ1QT
LV Write Access read/write
LV Status available
# open 0
LV Size 12.64 GB
Current LE 1618
Segments 1
Allocation inherit
Read ahead sectors auto
- currently set to 256
Persistent major 254
Persistent minor 6
Block device 254:6
--- Logical volume ---
LV Name /dev/store/swap
VG Name store
LV UUID GT33RQ-vEBA-etOU-BevG-egCW-U0xw-uNxthE
LV Write Access read/write
LV Status available
# open 0
LV Size 512.00 MB
Current LE 64
Segments 1
Allocation inherit
Read ahead sectors auto
- currently set to 256
Persistent major 254
Persistent minor 7
Block device 254:7
root@webos-device:/#
root@webos-device:/# 兰花大盗 发表于 2012-4-19 15:46 static/image/common/back.gif
用这个命令看一下
当前分区情况
请问能看出什么问题吗 阿波123 发表于 2012-4-19 15:52 static/image/common/back.gif
F:\>"C:/Program Files/Palm, Inc/novacom.exe" -d 09f1d50f5a72807c0c1c59cfa6eb7555
09eb5faa -t open ...
你的这些分区都是正常的
刷机的时候,默认会格式化其他分区,media分区除外(原因很简单,如果格式化这个分区,原来的u盘模式上数据就没有)
建议你用官方的ROM试一下,不要刷那些定制的ROM 兰花大盗 发表于 2012-4-19 15:59 static/image/common/back.gif
你的这些分区都是正常的
刷机的时候,默认会格式化其他分区,media分区除外(原因很简单,如果格式化这个 ...
请问webosdoctorp302hstnhwifi 这种名字是官方ROM吗
另外刷机跟电量有没有关系呢 我的关不了机 折腾一次下次用会掉完电 然后要用就用刷机的方法 它会提示电量过低然后去充电 电量到25的时候会恢复到刷机模式 出现一个大的USB图标 一般我都在这种情况下重新刷机折腾 不知道如果继续充电能不能充进去 或者刷机需要更多的电 每次在25%的电量会出错吗? 阿波123 发表于 2012-4-19 16:07 static/image/common/back.gif
请问webosdoctorp302hstnhwifi 这种名字是官方ROM吗
另外刷机跟电量有没有关系呢 我的关不了机 折腾一 ...
分区格式化命令,请慎用,别乱用,你先留着mke2fs.e2fsprogs -j -q /dev/store/root
mke2fs.e2fsprogs -j -q /dev/store/var
mke2fs.e2fsprogs -j -q /dev/store/update
mke2fs.e2fsprogs -j -q /dev/store/log
mke2fs.e2fsprogs -j -q /dev/store/mojodb
mke2fs.e2fsprogs -j -q /dev/store/filecache
mkswap.util-linux-ng /dev/store/swap
mkdosfs -f 1 -s 64 /dev/store/media关机命令:sbin/poweroff刷机模式命令:(推荐进入刷机模式进行充电)sbin/tellbootie recover重启命令:sbin/tellbootie 官方刷机ROM,可以到官方去下载,我找找看
阿波123 发表于 2012-4-19 16:07 static/image/common/back.gif
请问webosdoctorp302hstnhwifi 这种名字是官方ROM吗
另外刷机跟电量有没有关系呢 我的关不了机 折腾一 ...
ROM的下载地址
是3G版本还是WIFI版本,对应着下载
到这个页面下载http://www.webos-internals.org/wiki/WebOS_Doctor_Versions 兰花大盗 发表于 2012-4-19 16:15 static/image/common/back.gif
ROM的下载地址
是3G版本还是WIFI版本,对应着下载
到这个页面下载http://www.webos-internals.org/wiki/We ...
多谢 我先试试看 兰花大盗 发表于 2012-4-19 16:15 static/image/common/back.gif
ROM的下载地址
是3G版本还是WIFI版本,对应着下载
到这个页面下载http://www.webos-internals.org/wiki/We ...
请问下 有玩友说我的可能跟补丁没清有关 请问下有WQI里去补丁的命令吗 兰花大盗 发表于 2012-4-19 16:12 static/image/common/back.gif
分区格式化命令,请慎用,别乱用,你先留着关机命令:刷机模式命令:(推荐进入刷机模式进行充电)重启命 ...
请问下为什么关机命令不能用
lvm.static vgremove store
这句我执行过 为什么现在分区还在呢 本帖最后由 兰花大盗 于 2012-4-19 22:01 编辑
阿波123 发表于 2012-4-19 21:12 static/image/common/back.gif
请问下为什么关机命令不能用
lvm.static vgremove store
这句我执行过 为什么现在分区还在呢 ...
分区都在你把它格式化掉就行,何必重新删除了再分区
不要迷恋1楼那些命令
楼主是因为刷ubuntu导致无线重启,跟你的情况不一样
他也是不知道怎么,非要删除分区;其实楼主的情况
只要删除ubuntu分区,就可以解决问题了,他把问题给复杂化
关机命令sbin/tellbootie shutdown
兰花大盗 发表于 2012-4-19 21:44 static/image/common/back.gif
分区都在你把它格式化掉就行,何必重新删除了再分区
不要迷恋1楼那些命令
楼主是因为刷ubuntu导致无线重启 ...
谢谢 我的不能手动关机 sbin/tellbootie shutdown 这个命令可以关了
另外我要试了官方的rom 还是没能搞定
我的分区在 那只要格式化吗?用什么命令呢?
01.mke2fs.e2fsprogs -j -q /dev/store/root
02.mke2fs.e2fsprogs -j -q /dev/store/var
03.mke2fs.e2fsprogs -j -q /dev/store/update
04.mke2fs.e2fsprogs -j -q /dev/store/log
05.mke2fs.e2fsprogs -j -q /dev/store/mojodb
06.mke2fs.e2fsprogs -j -q /dev/store/filecache
07.mkswap.util-linux-ng /dev/store/swap
08.mkdosfs -f 1 -s 64 /dev/store/media
这些是吗 ? 本帖最后由 兰花大盗 于 2012-4-19 22:00 编辑
阿波123 发表于 2012-4-19 21:55 static/image/common/back.gif
谢谢 我的不能手动关机 sbin/tellbootie shutdown 这个命令可以关了
另外我要试了官方的rom 还是没能 ...
lvm.static lvdisplay 下面看到几个分区,就是几个
这些命令是格式化分区用的
如果不能正常格式化
在所有命令之前执行以下命令
lvm.static vgscan --ignorelockingfailure
lvm.static vgchange -ay --ignorelockingfailure
不保证格式化后,还能不能进入刷机模式
不建议用WQI来执行这些命令
用那个novaterm来操作比较
在那个novacom驱动文件夹里有 兰花大盗 发表于 2012-4-19 21:58 static/image/common/back.gif
lvm.static lvdisplay 下面看到几个分区,就是几个
这些命令是格式化分区用的
嗯 看来有很大风险 阿波123 发表于 2012-4-19 21:55 static/image/common/back.gif
谢谢 我的不能手动关机 sbin/tellbootie shutdown 这个命令可以关了
另外我要试了官方的rom 还是没能 ...
有没有试过把ROM放到 C盘或者其他盘的根目录下
不要放在中文目录下 阿波123 发表于 2012-4-19 22:03 static/image/common/back.gif
嗯 看来有很大风险
你现在执行的那些命令
也是TP内部文件支持的
具体隐藏那个分区,我也说不准
这些命令,在安装veer 2.2.4 的ROM的时候用过
删除分区,重新分配分区,解压文件到分区,完成veer刷机 兰花大盗 发表于 2012-4-19 22:04 static/image/common/back.gif
有没有试过把ROM放到 C盘或者其他盘的根目录下
不要放在中文目录下
root@webos-device:/# lvm.static vgscan --ignorelockingfailure
root@webos-device:/# lvm.static vgscan --ignorelockingfailure
Reading all physical volumes. This may take a while...
root@webos-device:/# lvm.static vgscan --ignorelockingfailure
Reading all physical volumes. This may take a while...
Found volume group "store" using metadata type lvm2
root@webos-device:/# lvm.static vgscan --ignorelockingfailure
Reading all physical volumes. This may take a while...
Found volume group "store" using metadata type lvm2
root@webos-device:/# lvm.static vgchange -ay --ignorelockingfailure
root@webos-device:/# lvm.static vgscan --ignorelockingfailure
Reading all physical volumes. This may take a while...
Found volume group "store" using metadata type lvm2
root@webos-device:/# lvm.static vgchange -ay --ignorelockingfailure
8 logical volume(s) in volume group "store" now active
root@webos-device:/# lvm.static vgscan --ignorelockingfailure
Reading all physical volumes. This may take a while...
Found volume group "store" using metadata type lvm2
root@webos-device:/# lvm.static vgchange -ay --ignorelockingfailure
8 logical volume(s) in volume group "store" now active
root@webos-device:/# mke2fs.e2fsprogs -j -q /dev/store/root
root@webos-device:/# lvm.static vgscan --ignorelockingfailure
Reading all physical volumes. This may take a while...
Found volume group "store" using metadata type lvm2
root@webos-device:/# lvm.static vgchange -ay --ignorelockingfailure
8 logical volume(s) in volume group "store" now active
root@webos-device:/# mke2fs.e2fsprogs -j -q /dev/store/root
root@webos-device:/# mke2fs.e2fsprogs -j -q /dev/store/var
root@webos-device:/# lvm.static vgscan --ignorelockingfailure
Reading all physical volumes. This may take a while...
Found volume group "store" using metadata type lvm2
root@webos-device:/# lvm.static vgchange -ay --ignorelockingfailure
8 logical volume(s) in volume group "store" now active
root@webos-device:/# mke2fs.e2fsprogs -j -q /dev/store/root
root@webos-device:/# mke2fs.e2fsprogs -j -q /dev/store/var
root@webos-device:/# mke2fs.e2fsprogs -j -q /dev/store/update
root@webos-device:/# lvm.static vgscan --ignorelockingfailure
Reading all physical volumes. This may take a while...
Found volume group "store" using metadata type lvm2
root@webos-device:/# lvm.static vgchange -ay --ignorelockingfailure
8 logical volume(s) in volume group "store" now active
root@webos-device:/# mke2fs.e2fsprogs -j -q /dev/store/root
root@webos-device:/# mke2fs.e2fsprogs -j -q /dev/store/var
root@webos-device:/# mke2fs.e2fsprogs -j -q /dev/store/update
root@webos-device:/# mke2fs.e2fsprogs -j -q /dev/store/log
root@webos-device:/# lvm.static vgscan --ignorelockingfailure
Reading all physical volumes. This may take a while...
Found volume group "store" using metadata type lvm2
root@webos-device:/# lvm.static vgchange -ay --ignorelockingfailure
8 logical volume(s) in volume group "store" now active
root@webos-device:/# mke2fs.e2fsprogs -j -q /dev/store/root
root@webos-device:/# mke2fs.e2fsprogs -j -q /dev/store/var
root@webos-device:/# mke2fs.e2fsprogs -j -q /dev/store/update
root@webos-device:/# mke2fs.e2fsprogs -j -q /dev/store/log
root@webos-device:/# mke2fs.e2fsprogs -j -q /dev/store/mojodb
root@webos-device:/# lvm.static vgscan --ignorelockingfailure
Reading all physical volumes. This may take a while...
Found volume group "store" using metadata type lvm2
root@webos-device:/# lvm.static vgchange -ay --ignorelockingfailure
8 logical volume(s) in volume group "store" now active
root@webos-device:/# mke2fs.e2fsprogs -j -q /dev/store/root
root@webos-device:/# mke2fs.e2fsprogs -j -q /dev/store/var
root@webos-device:/# mke2fs.e2fsprogs -j -q /dev/store/update
root@webos-device:/# mke2fs.e2fsprogs -j -q /dev/store/log
root@webos-device:/# mke2fs.e2fsprogs -j -q /dev/store/mojodb
root@webos-device:/# mke2fs.e2fsprogs -j -q /dev/store/filecache
root@webos-device:/# lvm.static vgscan --ignorelockingfailure
Reading all physical volumes. This may take a while...
Found volume group "store" using metadata type lvm2
root@webos-device:/# lvm.static vgchange -ay --ignorelockingfailure
8 logical volume(s) in volume group "store" now active
root@webos-device:/# mke2fs.e2fsprogs -j -q /dev/store/root
root@webos-device:/# mke2fs.e2fsprogs -j -q /dev/store/var
root@webos-device:/# mke2fs.e2fsprogs -j -q /dev/store/update
root@webos-device:/# mke2fs.e2fsprogs -j -q /dev/store/log
root@webos-device:/# mke2fs.e2fsprogs -j -q /dev/store/mojodb
root@webos-device:/# mke2fs.e2fsprogs -j -q /dev/store/filecache
root@webos-device:/# mkswap.util-linux-ng /dev/store/swap
root@webos-device:/# lvm.static vgscan --ignorelockingfailure
Reading all physical volumes. This may take a while...
Found volume group "store" using metadata type lvm2
root@webos-device:/# lvm.static vgchange -ay --ignorelockingfailure
8 logical volume(s) in volume group "store" now active
root@webos-device:/# mke2fs.e2fsprogs -j -q /dev/store/root
root@webos-device:/# mke2fs.e2fsprogs -j -q /dev/store/var
root@webos-device:/# mke2fs.e2fsprogs -j -q /dev/store/update
root@webos-device:/# mke2fs.e2fsprogs -j -q /dev/store/log
root@webos-device:/# mke2fs.e2fsprogs -j -q /dev/store/mojodb
root@webos-device:/# mke2fs.e2fsprogs -j -q /dev/store/filecache
root@webos-device:/# mkswap.util-linux-ng /dev/store/swap
Setting up swapspace version 1, size = 524284 KiB
root@webos-device:/# lvm.static vgscan --ignorelockingfailure
Reading all physical volumes. This may take a while...
Found volume group "store" using metadata type lvm2
root@webos-device:/# lvm.static vgchange -ay --ignorelockingfailure
8 logical volume(s) in volume group "store" now active
root@webos-device:/# mke2fs.e2fsprogs -j -q /dev/store/root
root@webos-device:/# mke2fs.e2fsprogs -j -q /dev/store/var
root@webos-device:/# mke2fs.e2fsprogs -j -q /dev/store/update
root@webos-device:/# mke2fs.e2fsprogs -j -q /dev/store/log
root@webos-device:/# mke2fs.e2fsprogs -j -q /dev/store/mojodb
root@webos-device:/# mke2fs.e2fsprogs -j -q /dev/store/filecache
root@webos-device:/# mkswap.util-linux-ng /dev/store/swap
Setting up swapspace version 1, size = 524284 KiB
no label, UUID=a01f8017-ae03-47a7-baad-a67ca71a384f
root@webos-device:/# lvm.static vgscan --ignorelockingfailure
Reading all physical volumes. This may take a while...
Found volume group "store" using metadata type lvm2
root@webos-device:/# lvm.static vgchange -ay --ignorelockingfailure
8 logical volume(s) in volume group "store" now active
root@webos-device:/# mke2fs.e2fsprogs -j -q /dev/store/root
root@webos-device:/# mke2fs.e2fsprogs -j -q /dev/store/var
root@webos-device:/# mke2fs.e2fsprogs -j -q /dev/store/update
root@webos-device:/# mke2fs.e2fsprogs -j -q /dev/store/log
root@webos-device:/# mke2fs.e2fsprogs -j -q /dev/store/mojodb
root@webos-device:/# mke2fs.e2fsprogs -j -q /dev/store/filecache
root@webos-device:/# mkswap.util-linux-ng /dev/store/swap
Setting up swapspace version 1, size = 524284 KiB
no label, UUID=a01f8017-ae03-47a7-baad-a67ca71a384f
root@webos-device:/# mkdosfs -f 1 -s 64 /dev/store/media
root@webos-device:/# lvm.static vgscan --ignorelockingfailure
Reading all physical volumes. This may take a while...
Found volume group "store" using metadata type lvm2
root@webos-device:/# lvm.static vgchange -ay --ignorelockingfailure
8 logical volume(s) in volume group "store" now active
root@webos-device:/# mke2fs.e2fsprogs -j -q /dev/store/root
root@webos-device:/# mke2fs.e2fsprogs -j -q /dev/store/var
root@webos-device:/# mke2fs.e2fsprogs -j -q /dev/store/update
root@webos-device:/# mke2fs.e2fsprogs -j -q /dev/store/log
root@webos-device:/# mke2fs.e2fsprogs -j -q /dev/store/mojodb
root@webos-device:/# mke2fs.e2fsprogs -j -q /dev/store/filecache
root@webos-device:/# mkswap.util-linux-ng /dev/store/swap
Setting up swapspace version 1, size = 524284 KiB
no label, UUID=a01f8017-ae03-47a7-baad-a67ca71a384f
root@webos-device:/# mkdosfs -f 1 -s 64 /dev/store/media
mkdosfs 2.11 (12 Mar 2005)
这样执行对么 我是放在跟F盘目录下执行rom的
现在还是没成功 真够折腾的 呵呵 兰花大盗 发表于 2012-4-19 22:04 static/image/common/back.gif
有没有试过把ROM放到 C盘或者其他盘的根目录下
不要放在中文目录下
刚才复制过来有点问题 应该是这样
root@webos-device:/# lvm.static vgscan --ignorelockingfailure
Reading all physical volumes. This may take a while...
Found volume group "store" using metadata type lvm2
root@webos-device:/# lvm.static vgchange -ay --ignorelockingfailure
8 logical volume(s) in volume group "store" now active
root@webos-device:/# mke2fs.e2fsprogs -j -q /dev/store/root
root@webos-device:/# mke2fs.e2fsprogs -j -q /dev/store/var
root@webos-device:/# mke2fs.e2fsprogs -j -q /dev/store/update
root@webos-device:/# mke2fs.e2fsprogs -j -q /dev/store/log
root@webos-device:/# mke2fs.e2fsprogs -j -q /dev/store/mojodb
root@webos-device:/# mke2fs.e2fsprogs -j -q /dev/store/filecache
root@webos-device:/# mkswap.util-linux-ng /dev/store/swap
Setting up swapspace version 1, size = 524284 KiB
no label, UUID=a01f8017-ae03-47a7-baad-a67ca71a384f
root@webos-device:/# mkdosfs -f 1 -s 64 /dev/store/media
mkdosfs 2.11 (12 Mar 2005) 阿波123 发表于 2012-4-19 22:33 static/image/common/back.gif
刚才复制过来有点问题 应该是这样
root@webos-device:/# lvm.static vgscan --ignorelockingfailure ...
没有出错,就是命令是对
我还没有搞清楚,搞这些命令,到底是搞什么样
你还是请教一下楼主他思路
或者你换电脑试一下,刷机 阿波123 发表于 2012-4-19 22:33 static/image/common/back.gif
刚才复制过来有点问题 应该是这样
root@webos-device:/# lvm.static vgscan --ignorelockingfailure ...
你的机器
目前虽然玩不了webos系统
应该可以刷安卓来玩玩 阿波123 发表于 2012-4-19 22:33 static/image/common/back.gif
刚才复制过来有点问题 应该是这样
root@webos-device:/# lvm.static vgscan --ignorelockingfailure ...
刷安卓的方法,你可以试一下mkdir -p /tmp/media
mount /dev/store/media /tmp/media
mkdir -p /tmp/media/android
然后又WQI,把刷安卓的文件传送到/tmp/media/android/文件夹
剩下用一键工具,刷机 兰花大盗 发表于 2012-4-19 22:59 static/image/common/back.gif
刷安卓的方法,你可以试一下
好的 谢谢 了 mount /dev/store/media /tmp/media
这句mount /dev 这里几个空格
/media /tmp 这里要空格吗
本帖最后由 兰花大盗 于 2012-4-19 23:27 编辑
阿波123 发表于 2012-4-19 23:08 static/image/common/back.gif
好的 谢谢 了 mount /dev/store/media /tmp/media
这句mount /dev 这里几个空格
不好意思弄错应该是这样
如果你已经把文件传送到android文件里
执行以下命令,把文件夹改名一下,把android文件夹改成cminstall文件夹mv /tmp/media/android /tmp/media/cminstall如果重启过,就下面的命令
把android文件夹改成cminstall文件mount /dev/store/media /tmp/media
mv /tmp/media/android /tmp/media/cminstall 兰花大盗 发表于 2012-4-19 23:26 static/image/common/back.gif
不好意思弄错应该是这样
如果你已经把文件传送到android文件里
执行以下命令,把文件夹改名一下,把androi ...
你好 我还没进行任何操作 是不是如下就可以了
mkdir -p /tmp/media
mount /dev/store/media /tmp/media
mkdir -p /tmp/media/cminstall
然后又WQI,把刷安卓的文件传送到/tmp/media/cminstall/文件夹
剩下用一键工具,刷机
另外我问下 下面两个命令对我的机子有用吗
umount /dev/store/media
fsck.vfat -vy /dev/store/media
我是看的这个帖子 不太懂 不过我试了umount /dev/store/media这个提示不行 谢谢 阿波123 发表于 2012-4-20 19:38 static/image/common/back.gif
你好 我还没进行任何操作 是不是如下就可以了
mkdir -p /tmp/media
你现在无法正常开机
media分区是不会被挂载的,你需要用命令来挂载
竟然没有挂载,何须卸载挂载分区
如果你需要挂载分区,你参考我提供的命令,进行挂载
这个命令可能有效
fsck.vfat -vy /dev/store/media 兰花大盗 发表于 2012-4-20 19:46 static/image/common/back.gif
你现在无法正常开机
media分区是不会被挂载的,你需要用命令来挂载
竟然没有挂载,何须卸载挂载分区
F:\IMG_1699.JPG
帮我看下这个是怎么回事 阿波123 发表于 2012-4-20 21:36 static/image/common/back.gif
帮我看下这个是怎么回事
阿波123 发表于 2012-4-20 21:38 static/image/common/back.gif
无法进行分区
安卓所需的3个分区不存在,无法进行挂载
就是说这个方法无法安装安卓系统
看来 你按照楼主提供的分区命令,再来一遍
命令之间有一定时间间隔,有时可能会提示失败,可以稍等5-10秒,再试一下
弄完后,刷WEBOS的ROM
这时再刷安卓应该就可以了
兰花大盗 发表于 2012-4-20 21:58 static/image/common/back.gif
无法进行分区
安卓所需的3个分区不存在,无法进行挂载
就是说这个方法无法安装安卓系统
Reading all physical volumes. This may take a while...
Found volume group "store" using metadata type lvm2
root@webos-device:/# lvm.static vgchange -ay --ignorelockingfailure
8 logical volume(s) in volume group "store" now active
root@webos-device:/# lvm.static vgremove store
Do you really want to remove volume group "store" containing 8 logical volumes?
: y
Do you really want to remove active logical volume "root"? : y
Logical volume "root" successfully removed
Do you really want to remove active logical volume "var"? : y
Logical volume "var" successfully removed
Do you really want to remove active logical volume "update"? : y
Logical volume "update" successfully removed
Do you really want to remove active logical volume "log"? : y
Logical volume "log" successfully removed
Do you really want to remove active logical volume "mojodb"? : y
Logical volume "mojodb" successfully removed
Do you really want to remove active logical volume "filecache"? : y
Logical volume "filecache" successfully removed
Do you really want to remove active logical volume "media"? : y
Logical volume "media" successfully removed
Do you really want to remove active logical volume "swap"? : y
Logical volume "swap" successfully removed
Volume group "store" successfully removed
root@webos-device:/# lvm.static vgscan --ignorelockingfailure
Reading all physical volumes. This may take a while...
Found volume group "store" using metadata type lvm2
root@webos-device:/# lvm.static vgchange -ay --ignorelockingfailure
8 logical volume(s) in volume group "store" now active
root@webos-device:/# lvm.static vgcreate -s 8M store /dev/mmcblk0p14
/dev/store: already exists in filesystem
New volume group name "store" is invalid
Run `vgcreate --help' for more information.
每次到lvm.static vgcreate -s 8M store /dev/mmcblk0p14这句时就出错 奇怪 阿波123 发表于 2012-4-20 22:09 static/image/common/back.gif
Reading all physical volumes. This may take a while...
Found volume gr ...
store /dev/mmcblk0p14
这个分区最有可能是boot分区,专门放webos引导文件的分区
不过看之前提示,说这个分区已经存在了
所以提示无需再创建
这个分区,比较诡异,我尝试挂载则个分区,但是无法挂载
他都提示已经存在分区,这个当然没法在重复操作
页:
[1]
2