无忧启动论坛

 找回密码
 注册
搜索
系统gho:最纯净好用系统下载站广告联系 微信:wuyouceo QQ:184822951
查看: 9555|回复: 21
打印 上一主题 下一主题

[已解决] 纯DOS下搜索出EISA隐藏的NTFS分区的某目录下的GHO文件并还原是如何实现的

[复制链接]
跳转到指定楼层
1#
发表于 2012-4-4 12:26:10 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
本帖最后由 qj_tzy 于 2014-4-9 17:06 编辑


请问于山、深山老林等众位高手,纯DOS下搜索出EISA隐藏的NTFS分区的某目录下的GHO文件,并用之还原到某主或逻辑分区的;或将某一主或逻辑分区的系统备份到EISA隐藏的NTFS分区的某目录下的GHO文件中。

我想用批处理实现之,但纯DOS似不能搜索出EISA隐藏的NTFS分区的某目录下的GHO文件,但你们实现了,不知是如何实现的,非常想请各位高手指点一下,谢谢!

注:这一问题,在DOS时代菜鸟的悉心指导下,已得到解决。非常感谢!



[ 本帖最后由 qj_tzy 于 2012-4-17 23:11 编辑 ]
2#
发表于 2012-4-5 08:54:06 | 只看该作者
我的 dos 工具箱 可以实现。

加载 ifsdrv _ ntfs 驱动,里面有 选项 ,支持,id=12 的eisa 分区。

http://bbs.wuyou.net/forum.php?mod=viewthread&tid=138340&extra=page%3D2

http://bbs.wuyou.net/forum.php?mod=viewthread&tid=171914&highlight=dos%CA%B1%B4%FA%B2%CB%C4%F1

另外,我编辑的 omnifs 搜索引擎也支持 eisa 分区的文件搜索。
http://bbs.wuyou.net/forum.php?mod=viewthread&tid=200634&highlight=omnifs

[ 本帖最后由 dos时代菜鸟 于 2012-4-5 10:17 编辑 ]
回复

使用道具 举报

3#
 楼主| 发表于 2012-4-7 18:07:01 | 只看该作者

回复 #2 dos时代菜鸟 的帖子

您的omnifs,我在之前用它完成了对vhd系统的还原。
看了您的DOS工具箱,不知如何为我所用。

现在,我的目标是用grub4dos的lst文件调用dos.ima来实现多分区系统的备份还原功能。其中,lst文件已编好,它向dos.ima传递参数,想用dos.ima实现以下功能:

1、还原时,查找出存放在EISA隐藏分区的gho文件,并指定一个盘符,形成路径如f:\ghost\win7.gho,并还原到1:6分区。
1、备份时,查找出存放在EISA隐藏分区的gho文件,并指定一个盘符,形成路径如f:\ghost\winxp.gho,并将1:5分区的系统备份到该文件中。

用批处理如何实现,望指教,谢谢。
回复

使用道具 举报

4#
发表于 2012-4-8 18:19:09 | 只看该作者
你的思路 是可以实现的。
关键是,f:\ghost\win7.gho 的 方式表示gho文件路径,在dos下并不妥当,如果F:是 ntfs分区, ghost for dos 可能无法识别 f:\ghost\win7.gho 这样的表示路径。

对于 ghost 还是用类似 1.5:\ghost\win7.gho 的表示方式更 稳妥。

另外,你需要的是 把 grub 中 确定的 文件路径 比如: (hd0,4)/ghost/win7.gho 转化成 ghost for dos 能够识别的 1.5:\ghost\win7.gho
把 (hd0,5) 转化成 1.6

具体的你自己研究吧。

如果 不用 grub 完成文件位置和 分区位置的确定,我建议你用 omnifs 实现。
回复

使用道具 举报

5#
 楼主| 发表于 2012-4-8 19:46:46 | 只看该作者

回复 #4 dos时代菜鸟 的帖子

谢谢指点,我去试试,不懂的再向你请教。
回复

使用道具 举报

6#
 楼主| 发表于 2012-4-11 19:08:51 | 只看该作者

回复 #4 dos时代菜鸟 的帖子

按您好的指点,我用grub4dos传递参数给dos.img,备份成功,但还原时出错,
ghost提示:No Source Partition Was Specified from image

dos.img中用ghost -clone,mode=pdump,src=%sys_drv%,dst=%gho_dsk%\%gho_dir%\%gho_file% -sure -fx备份成功

还原时用ghost -clone,mode=pload,src=%gho_dsk%\%gho_dir%\%gho_file%,dst=%sys_drv% -sure -fx未成功。

后者传递的参数是:scr=1.2:\ghost11\win7_x32.gho,dst=1:4

即想把第2分区\ghost11\win7_x32.gho还原到第4分区。

还原前,已用grub4dos命令将第2、第4分区均改为了可见分区,但仍为隐藏(即不改为可见分区)时,还是未还原成功,提示相同的错误。

烦请指点一下,谢谢!
回复

使用道具 举报

7#
发表于 2012-4-12 08:36:27 | 只看该作者

回复 #6 qj_tzy 的帖子

1、ghost 可以识别隐藏分区,不必把隐藏分区改为可见
2、No Source Partition Was Specified from image 意思是ghost没有找到特定的影像文件,估计还是你的分区序列有问题或者 grub 转换的有出入。用 omnifs 的 dir 命令 找一下这个文件看看吧
回复

使用道具 举报

8#
 楼主| 发表于 2012-4-13 14:12:24 | 只看该作者

回复 #7 dos时代菜鸟 的帖子

昨晚又试了一阵,还是未成功。

对分区序列问题、grub 转换是否有出入问题,均看了,没发现问题。不知是何问题。备份是成功的,就是不能还原。
回复

使用道具 举报

9#
 楼主| 发表于 2012-4-14 21:26:42 | 只看该作者

回复 #7 dos时代菜鸟 的帖子

我要还原第2分区\ghost11\winxp.gho,但总是出错,以下是其ghosterr.txt的全部错误信息,请帮我分析一下,是何原因,谢谢!

*********************************
Date   : Sat Apr 14 21:16:42 2012
Error Number: (10095)
Message: No source partition was specified from image
Version: 11.0.2.1573 (Nov 14 2007, Build=1573)
OS Version: DOS v7.10
Command line arguments: -clone,mode=pload,src=1.2:\ghost11\winxp.gho,dst=1:6 -sure -fx
Active Switches :
       AutoName
PathName            :
DumpFile            :
DumpPos             : 0
FlagImplode         : 0
FlagExplode         : 0

Operation Details :
  Total size.........0
  MB copied..........0
  MB remaining.......0
  Percent complete...0%
  Speed..............0 MB/min
  Time elapsed.......0:00   
  Time remaining.....0:00   

Program Call Stack
AbortLog
Generic_Abort
CheckCloneSwitches
ProcessArgumentsToPass
sub_main
main

Call Stack
  0x0039846c
  0x0009d011
  0x0009c84c
  0x0009bf27
  0x0009db2e
  0x00029094
  0x0002c1e9
  0x00030d34
  0x00030eb5
  0x00004ad8
  0x00003f2f
  0x003a1698
End Call Stack


Start heap available: 2138800128
Cur   heap available: 2138669056
Total Memory:         2146336768

Allocated
   1024 DpmiDjgpp.cpp:56
  33504 ghost.cpp:1396
     48 DiskDriveAccessExInt13.cpp:152
    528 IdeDmaServerPci.cpp:127
    528 IdeDmaServerPci.cpp:127
    528 IdeDmaServerPci.cpp:127
    528 IdeDmaServerPci.cpp:127
    528 IdeDmaServerPci.cpp:127
    528 IdeDmaServerPci.cpp:127
    512 DiskDriveAccessExInt13.cpp:152
Free
     16 MsdosLfoFilesystem.cpp:408
     80 DiskDriveAccessExInt13.cpp:115
    512 DiskDriveAccessInt13.cpp:189

Fat details:

NTFS details:
----------------

NTFS Global Flags:
----------------
     contiguousWrite=1 forceDiskClusterMapping=0
     inhibitCHKDSK=1 ignoreBadLog=0 ignoreCHKDSKBit=0
     enable_cache=0 xfrbuflen=0
     last_attr_type = 0
     loadExact = 0
----------------

Disk Info :
  remote.............0
  drive..............0
  sectorsUsedCount.......0
  estimatedUsedCount.....0
  numPartitions..............0
  Version............0

# Ord Boot Id Ext     First        Num       Last       Used NTFS

Disk Info :
  remote.............0
  drive..............0
  sectorsUsedCount.......0
  estimatedUsedCount.....0
  numPartitions..............0
  Version............0

# Ord Boot Id Ext     First        Num       Last       Used NTFS

Fixed Drives

Drive 128 WDC WD5000AADS-00S9B0      WD-WCAV9A072558
Int 13h
Total Sectors            16450560
Bytes per Sector         512
MB                       8032
Cylinders                1024
Heads                    255
Sectors per Track        63
Successful IO Count      0

Extended Int 13h
Total Sectors            976773168
Bytes per Sector         512
MB                       476940
Successful IO Count      0

IDE using PIO
Total Sectors            976773168
Bytes per Sector         512
MB                       476940
Cylinders                16383
Heads                    16
Sectors per Track        63
Successful IO Count      0

IDE using UDMA (Active)
Total Sectors            976773168
Bytes per Sector         512
MB                       476940
Cylinders                16383
Heads                    16
Sectors per Track        63
Successful IO Count      2

Floppy Drives

Drive 0
Int 13h (Active)
Total Sectors            5760
Bytes per Sector         512
MB                       2
Cylinders                80
Heads                    2
Sectors per Track        36
Successful IO Count      1

Extended Int 13h
Total Sectors            5760
Bytes per Sector         512
MB                       2
Cylinders                80
Heads                    2
Sectors per Track        36
Successful IO Count      0

Remote Drives
AsyncIo : 0
Image Devices

Key[1]   1.1:
Key[2]   1:1
Path     1.1:
Desc     1.1: [win7]
Type     NTFS
Disk     0
Offset   63

Key[1]   1.2:
Key[2]   1:2
Path     1.2:
Desc     1.2: [sysbak]
Type     NTFS
Disk     0
Offset   54235440

Key[1]   1.3:
Key[2]   1:3
Path     1.3:
Desc     1.3: [DATA]
Type     NTFS
Disk     0
Offset   243208035

Key[1]   1.4:
Key[2]   1:4
Path     1.4:
Desc     1.4: [ASUS_GATE]
Type     FAT
Disk     0
Offset   825387633

Key[1]   A:
Path     A:
Desc     A:
Type     Floppy

Key[1]   C:
Path     C:
Desc     C: [TEMP]
Type     Disk

Key[1]   @CD-R1
Path     @CD-R1
Desc     @CD-R1 BENQ    DVD LS DW1655   
Type     DVD


ConvMemoryAllocationFactoryDpmi diagnostic...
=============================================

Conventional Memory
Initial Conventional Memory Size = 457712
Current Conventional Memory Size = 418672

Allocated
   1024 DpmiDjgpp.cpp:56
  33504 ghost.cpp:1396
     48 DiskDriveAccessExInt13.cpp:152
    528 IdeDmaServerPci.cpp:127
    528 IdeDmaServerPci.cpp:127
    528 IdeDmaServerPci.cpp:127
    528 IdeDmaServerPci.cpp:127
    528 IdeDmaServerPci.cpp:127
    528 IdeDmaServerPci.cpp:127
    512 DiskDriveAccessExInt13.cpp:152
Free
     16 MsdosLfoFilesystem.cpp:408
     80 DiskDriveAccessExInt13.cpp:115
    512 DiskDriveAccessInt13.cpp:189


DiskManager diagnostic...
=========================

Fixed Drives

Drive 128 WDC WD5000AADS-00S9B0      WD-WCAV9A072558
Int 13h
Total Sectors            16450560
Bytes per Sector         512
MB                       8032
Cylinders                1024
Heads                    255
Sectors per Track        63
Successful IO Count      0

Extended Int 13h
Total Sectors            976773168
Bytes per Sector         512
MB                       476940
Successful IO Count      0

IDE using PIO
Total Sectors            976773168
Bytes per Sector         512
MB                       476940
Cylinders                16383
Heads                    16
Sectors per Track        63
Successful IO Count      0

IDE using UDMA (Active)
Total Sectors            976773168
Bytes per Sector         512
MB                       476940
Cylinders                16383
Heads                    16
Sectors per Track        63
Successful IO Count      73

Floppy Drives

Drive 0
Int 13h (Active)
Total Sectors            5760
Bytes per Sector         512
MB                       2
Cylinders                80
Heads                    2
Sectors per Track        36
Successful IO Count      1

Extended Int 13h
Total Sectors            5760
Bytes per Sector         512
MB                       2
Cylinders                80
Heads                    2
Sectors per Track        36
Successful IO Count      0

The following devices do not use an IRQ:
   (0x00, 0x00, 0x00):   IRQ: 0x00, INT#: -, Link: 0x00
      Class: Bridge, SubClass: Host/PCI
      Vendor: 0x8086, Device: 0x2e20
   (0x00, 0x1e, 0x00):   IRQ: 0xff, INT#: -, Link: 0x00
      Class: Bridge, SubClass: Sub Decode PCI/PCI
      Vendor: 0x8086, Device: 0x244e
   (0x00, 0x1f, 0x00):   IRQ: 0x00, INT#: -, Link: 0x00
      Class: Bridge, SubClass: PCI/ISA
      Vendor: 0x8086, Device: 0x3a18, RoutePINS: 0x62, 0x63, 0x62, 0x00,
The following hard wire-ord devices share IRQ 10:
   (0x00, 0x01, 0x00):   IRQ: 0x0a, INT#: A, Link: 0x60
      Class: Bridge, SubClass: PCI/PCI
      Vendor: 0x8086, Device: 0x2e21, RoutePINS: 0x60, 0x61, 0x62, 0x63,
   (0x00, 0x1a, 0x00):   IRQ: 0x0a, INT#: A, Link: 0x60
      Class: Serial Bus, SubClass: USB UHCI
      Vendor: 0x8086, Device: 0x3a37, RoutePINS: 0x60, 0x69, 0x62, 0x00,
   (0x00, 0x1c, 0x05):   IRQ: 0x0a, INT#: B, Link: 0x60
      Class: Bridge, SubClass: PCI/PCI
      Vendor: 0x8086, Device: 0x3a4a, RoutePINS: 0x61, 0x60, 0x62, 0x63,
   (0x01, 0x00, 0x00):   IRQ: 0x0a, INT#: A, Link: 0x60
      Class: Display, SubClass: VGA compatible
      Vendor: 0x1002, Device: 0x68f9, RoutePINS: 0x60, 0x61, 0x62, 0x63,
   (0x03, 0x00, 0x00):   IRQ: 0x0a, INT#: A, Link: 0x60
      Class: Mass Storage, SubClass: IDE Controller
      Vendor: 0x197b, Device: 0x2368, RoutePINS: 0x60, 0x61, 0x62, 0x63,
The following hard wire-ord devices share IRQ 11:
   (0x00, 0x1c, 0x00):   IRQ: 0x0b, INT#: A, Link: 0x61
      Class: Bridge, SubClass: PCI/PCI
      Vendor: 0x8086, Device: 0x3a40, RoutePINS: 0x61, 0x60, 0x62, 0x63,
   (0x00, 0x1c, 0x04):   IRQ: 0x0b, INT#: A, Link: 0x61
      Class: Bridge, SubClass: PCI/PCI
      Vendor: 0x8086, Device: 0x3a48, RoutePINS: 0x61, 0x60, 0x62, 0x63,
   (0x01, 0x00, 0x01):   IRQ: 0x0b, INT#: B, Link: 0x61
      Class: Multimedia, SubClass: Unknown Multimedia
      Vendor: 0x1002, Device: 0xaa68, RoutePINS: 0x60, 0x61, 0x62, 0x63,
   (0x02, 0x00, 0x00):   IRQ: 0x0b, INT#: A, Link: 0x61
      Class: Network, SubClass: Ethernet
      Vendor: 0x1969, Device: 0x1026, RoutePINS: 0x61, 0x62, 0x63, 0x60,
   (0x05, 0x01, 0x00):   IRQ: 0x0b, INT#: A, Link: 0x61
      Class: Serial Bus, SubClass: IEEE 1394 OpenHCI
      Vendor: 0x11c1, Device: 0x5811, RoutePINS: 0x61, 0x62, 0x63, 0x60,
The following hard wire-ord devices share IRQ 15:
   (0x00, 0x1a, 0x02):   IRQ: 0x0f, INT#: C, Link: 0x62
      Class: Serial Bus, SubClass: USB UHCI
      Vendor: 0x8086, Device: 0x3a39, RoutePINS: 0x60, 0x69, 0x62, 0x00,
   (0x00, 0x1a, 0x07):   IRQ: 0x0f, INT#: C, Link: 0x62
      Class: Serial Bus, SubClass: USB EHCI
      Vendor: 0x8086, Device: 0x3a3c, RoutePINS: 0x60, 0x69, 0x62, 0x00,
   (0x00, 0x1d, 0x02):   IRQ: 0x0f, INT#: C, Link: 0x62
      Class: Serial Bus, SubClass: USB UHCI
      Vendor: 0x8086, Device: 0x3a36, RoutePINS: 0x6b, 0x63, 0x62, 0x60,
   (0x00, 0x1f, 0x03):   IRQ: 0x0f, INT#: C, Link: 0x62
      Class: Serial Bus, SubClass: SMBUS
      Vendor: 0x8086, Device: 0x3a30, RoutePINS: 0x62, 0x63, 0x62, 0x00,
The following hard wire-ord devices share IRQ 5:
   (0x00, 0x1d, 0x01):   IRQ: 0x05, INT#: B, Link: 0x63
      Class: Serial Bus, SubClass: USB UHCI
      Vendor: 0x8086, Device: 0x3a35, RoutePINS: 0x6b, 0x63, 0x62, 0x60,
   (0x00, 0x1f, 0x02):   IRQ: 0x05, INT#: B, Link: 0x63
      Class: Mass Storage, SubClass: IDE Controller
      Vendor: 0x8086, Device: 0x3a20, RoutePINS: 0x62, 0x63, 0x62, 0x00,
   (0x00, 0x1f, 0x05):   IRQ: 0x05, INT#: B, Link: 0x63
      Class: Mass Storage, SubClass: IDE Controller
      Vendor: 0x8086, Device: 0x3a26, RoutePINS: 0x62, 0x63, 0x62, 0x00,
The following hard wire-ord devices share IRQ 14:
   (0x00, 0x1a, 0x01):   IRQ: 0x0e, INT#: B, Link: 0x69
      Class: Serial Bus, SubClass: USB UHCI
      Vendor: 0x8086, Device: 0x3a38, RoutePINS: 0x60, 0x69, 0x62, 0x00,
The following hard wire-ord devices share IRQ 3:
   (0x00, 0x1b, 0x00):   IRQ: 0x03, INT#: A, Link: 0x6a
      Class: Multimedia, SubClass: Unknown Multimedia
      Vendor: 0x8086, Device: 0x3a3e, RoutePINS: 0x6a, 0x00, 0x00, 0x00,
The following hard wire-ord devices share IRQ 6:
   (0x00, 0x1d, 0x00):   IRQ: 0x06, INT#: A, Link: 0x6b
      Class: Serial Bus, SubClass: USB UHCI
      Vendor: 0x8086, Device: 0x3a34, RoutePINS: 0x6b, 0x63, 0x62, 0x60,
   (0x00, 0x1d, 0x07):   IRQ: 0x06, INT#: A, Link: 0x6b
      Class: Serial Bus, SubClass: USB EHCI
      Vendor: 0x8086, Device: 0x3a3a, RoutePINS: 0x6b, 0x63, 0x62, 0x60,



FilesystemManager diagnostic...
===============================

Volume 1
VolumePos: 1.1:
DriveLetter:
Description:   25.86GB Primary Disk 0 Offset   31.50KB   25.86GB WDC WD5000AADS-00S9B0      WD-WCAV9A072558
Type:        fsfNtfsWindowsXP
Name:        win7

Volume 2
VolumePos: 1.2:
DriveLetter:
Description:   90.11GB Primary Disk 0 Offset   25.86GB   90.11GB WDC WD5000AADS-00S9B0      WD-WCAV9A072558
Type:        fsfNtfsWindowsXP
Name:        sysbak

Volume 3
VolumePos: 1.3:
DriveLetter:
Description:  277.60GB Primary Disk 0 Offset  115.97GB  277.60GB WDC WD5000AADS-00S9B0      WD-WCAV9A072558
Type:        fsfNtfsWindowsXP
Name:        DATA

Volume 4
VolumePos: 1.4:
DriveLetter:
Description:    1.49GB Logical Disk 0 Offset  393.58GB    1.49GB WDC WD5000AADS-00S9B0      WD-WCAV9A072558
Type:        fsfFat32
Name:        ASUS_GATE


FilesystemMounter diagnostic...
===============================


LfoFilesystemManager diagnostic...
==================================

Filesystem Index: 0
Filesystem Descriptor:
  ID's:
    ID Type: 2
    ID: A:
  DriveType: 2
  No FilesystemInfo structure.
  Filesystem has no VolumePtr

Filesystem Index: 1
Filesystem Descriptor:
  ID's:
    ID Type: 2
    ID: C:
  DriveType: 4
  No FilesystemInfo structure.
  Filesystem has no VolumePtr

Filesystem Index: 2
Filesystem Descriptor:
  ID's:
    ID Type: 1
    ID: 1.1:
    ID Type: 4
    ID: WIN7:
  DriveType: 4
  FilesystemInfo:
    formatType: 8
    volumeName: win7

Filesystem Index: 3
Filesystem Descriptor:
  ID's:
    ID Type: 1
    ID: 1.2:
    ID Type: 4
    ID: SYSBAK:
  DriveType: 4
  FilesystemInfo:
    formatType: 8
    volumeName: sysbak

Filesystem Index: 4
Filesystem Descriptor:
  ID's:
    ID Type: 1
    ID: 1.3:
    ID Type: 4
    ID: DATA:
  DriveType: 4
  FilesystemInfo:
    formatType: 8
    volumeName: DATA

Filesystem Index: 5
Filesystem Descriptor:
  ID's:
    ID Type: 1
    ID: 1.4:
    ID Type: 4
    ID: ASUS_GATE:
  DriveType: 4
  FilesystemInfo:
    formatType: 3
    volumeName: ASUS_GATE


*********************************

[ 本帖最后由 qj_tzy 于 2012-4-14 21:27 编辑 ]
回复

使用道具 举报

10#
发表于 2012-4-15 16:55:17 | 只看该作者
还原时用ghost -clone,mode=pload,src=%gho_dsk%\%gho_dir%\%gho_file%,dst=%sys_drv% -sure -fx未成功。

改成
ghost -clone,mode=pload,src=%gho_dsk%\%gho_dir%\%gho_file%:1,dst=%sys_drv% -sure -fx

看看

[ 本帖最后由 dos时代菜鸟 于 2012-4-15 16:56 编辑 ]

点评

我也在做同样的事情 还原时与到了 gho文件不有效的文件 发现 加载了ntdos后,再进入 NTFS分区 再运行ghost就认为ghost文件无效了 其实我是想偷懒 下接进入ghost文件目录 使用相对路径来还原  详情 回复 发表于 2014-4-9 11:04
回复

使用道具 举报

11#
 楼主| 发表于 2012-4-15 23:42:55 | 只看该作者

回复 #10 dos时代菜鸟 的帖子

首先道一声真诚的谢意!

按照您的指点,加上:1后,将安装在(hd0,0)分区的win7还原成功,不知加上:1是何意义?

但还原安装在(hd0,6)即1:6分区的winxp未成功,提示目标分区无效(Target partition invalid),我猜有以下几种原因:

1.(hd0,6)分区为EISA隐藏,但将其改为可见分区后,错误仍然如故。

2.备份后,将(hd0,6)后的一个分区,用Paragon_Partition_Manager_Server_10软件将该分区分为两个分区,但在分区过程中出现了错误提示,我是强行忽略过的,是否与这有关系。

3.于是我又用grub4dos+dos.ima方式备份winxp未成功,提示源分区无效。但我启动winxp系统成功。
我用以上分区软件将原分出的两个分区合并后,再备份或再还原,均提示与如上相同的提示。

烦请指点,我现在如何进行,谢谢!

以下是ghosterr.txt中的内容:
*********************************
Date   : Sun Apr 15 22:39:09 2012
Error Number: (11082)
Message: Target partition invalid
Version: 11.0.2.1573 (Nov 14 2007, Build=1573)
OS Version: DOS v7.10
Command line arguments: -clone,mode=pload,src=1.2:\ghost11\winxp.gho:1,dst=1:6 -sure -fx
Active Switches :
       AutoName
PathName            :
DumpFile            : 1.2:\GHOST11\WINXP.GHO
DumpPos             : 5120
Last LFO Buffersize : 32768
Last LFO Path       :
  Full Path         : 1.2:\GHOST11\WINXP.GHO
  Disk:Partition    : 1:2
Last LFO Filesystem : Proprietary
FlagImplode         : 0
FlagExplode         : 4
CloneSrc            : 1.2:\GHOST11\WINXP.GHO
BatchPartSrc        : 1
BatchPartMSrc       :
CloneDst            : 1
BatchPartDst        : 6
Operation Details :
  Total size.........0
  MB copied..........0
  MB remaining.......0
  Percent complete...0%
  Speed..............0 MB/min
  Time elapsed.......0:00   
  Time remaining.....0:00   
Program Call Stack
AbortLog
Generic_Abort
SelectSinglePartition
CopyFileToPart
CopyMainline
AttemptOperation
sub_main
main
Call Stack
  0x0039846c
  0x0009d011
  0x0009c84c
  0x0009bf27
  0x0009db2e
  0x00021d4b
  0x000c7dce
  0x00002232
  0x00002374
  0x00005057
  0x00003f2f
  0x003a1698
End Call Stack

Start heap available: 2138800128
Cur   heap available: 2137948160
Total Memory:         2146336768
Allocated
   1024 DpmiDjgpp.cpp:56
  33504 ghost.cpp:1396
     48 DiskDriveAccessExInt13.cpp:152
    528 IdeDmaServerPci.cpp:127
    528 IdeDmaServerPci.cpp:127
    528 IdeDmaServerPci.cpp:127
    528 IdeDmaServerPci.cpp:127
    528 IdeDmaServerPci.cpp:127
    528 IdeDmaServerPci.cpp:127
    512 DiskDriveAccessExInt13.cpp:152
Free
     16 MsdosLfoFilesystem.cpp:408
     80 DiskDriveAccessExInt13.cpp:115
    512 DiskDriveAccessInt13.cpp:189
  32768 AlignBufferedImageFileDevice.cpp:89
Fat details:
  SRC:
  FatType..........32
  firstSector.......825387633
  ClusterSize......4096
  clusters.........388804
  root_next_avail..0
  data_next_avail..0
  dir_sector.......0
  root_sector......6112
  data_sector......6112
  FAT_sector.......0
NTFS details:
----------------
NTFS Global Flags:
----------------
  contiguousWrite=1 forceDiskClusterMapping=0
  inhibitCHKDSK=1 ignoreBadLog=0 ignoreCHKDSKBit=0
  enable_cache=0 xfrbuflen=0
  last_attr_type = 0
  loadExact = 0
----------------
=======================================================
NTFS volume 0:
----------------
initialised..............1
read cached..............N
Selective caching........N
flags....................Volume OK
drive....................0x00
part order...............2
version..................0x0400
volsize..................582179534
blocksize................512
clusterfactor............8
clustersize..............4096
mftrecordsize............1024
indexrecordsize..........4096
indexclustperrecord......1
bootSectorCopyOffset.....582179534
pagefileSys..............-1
bootIni..................-1
volumeLabel..............[DATA]
sectorsInUse.............446297896
totalNonCopiedBytes......0
bytesToCopy..............0
bitmapClusters...........2221
bitmapUsedBytes..........9096560
estimatedClusters........2221
estimatedUsedBytes.......9096560
clustersizeShift.........12
blocksizeShift...........9
mftrecordsizeShift.......10
indexrecordsizeShift.....12
totalRootMftRecs.........0
clustermap failover......N
Boot sector details
  name....................[NTFS    ]
  blocksize...............512
  clusterfactor...........8
  reservedSectorsUnused...0
  mediaType...............0xf8
  secPerTrack.............63
  numHeads................255
  hiddenSectors...........243208035
  volsize.................582179534
  mftcluster..............786432
  mftmirrorcluster........36712541
  clustersPerMFTRecord....246
  clustersPerIndexBuffer..1
  ---------------------------------------------------
  Cluster Allocation Map
  ---------------------------------------------------
  Start: 72772441 Length: 0 Next: 72772441

=======================================================
=======================================================
NTFS volume 1:
----------------
initialised..............1
read cached..............N
Selective caching........N
flags....................Volume OK
drive....................0x00
part order...............1
version..................0x0400
volsize..................188972594
blocksize................512
clusterfactor............8
clustersize..............4096
mftrecordsize............1024
indexrecordsize..........4096
indexclustperrecord......1
bootSectorCopyOffset.....188972594
pagefileSys..............-1
bootIni..................-1
volumeLabel..............[sysbak]
sectorsInUse.............121451032
totalNonCopiedBytes......0
bytesToCopy..............0
bitmapClusters...........721
bitmapUsedBytes..........2952704
estimatedClusters........721
estimatedUsedBytes.......2952704
clustersizeShift.........12
blocksizeShift...........9
mftrecordsizeShift.......10
indexrecordsizeShift.....12
totalRootMftRecs.........0
clustermap failover......N
Boot sector details
  name....................[NTFS    ]
  blocksize...............512
  clusterfactor...........8
  reservedSectorsUnused...0
  mediaType...............0xf8
  secPerTrack.............63
  numHeads................255
  hiddenSectors...........54235440
  volsize.................188972594
  mftcluster..............786432
  mftmirrorcluster........5
  clustersPerMFTRecord....246
  clustersPerIndexBuffer..1
  ---------------------------------------------------
  Cluster Allocation Map
  ---------------------------------------------------
  Start: 23621574 Length: 0 Next: 23621574

=======================================================
=======================================================
NTFS volume 2:
----------------
initialised..............1
read cached..............N
Selective caching........N
flags....................Volume OK
drive....................0x00
part order...............0
version..................0x0400
volsize..................54235376
blocksize................512
clusterfactor............8
clustersize..............4096
mftrecordsize............1024
indexrecordsize..........4096
indexclustperrecord......1
bootSectorCopyOffset.....54235376
pagefileSys..............-1
bootIni..................-1
volumeLabel..............[win7]
sectorsInUse.............35832976
totalNonCopiedBytes......0
bytesToCopy..............0
bitmapClusters...........207
bitmapUsedBytes..........847432
estimatedClusters........207
estimatedUsedBytes.......847432
clustersizeShift.........12
blocksizeShift...........9
mftrecordsizeShift.......10
indexrecordsizeShift.....12
totalRootMftRecs.........0
clustermap failover......N
Boot sector details
  name....................[NTFS    ]
  blocksize...............512
  clusterfactor...........8
  reservedSectorsUnused...0
  mediaType...............0xf8
  secPerTrack.............63
  numHeads................255
  hiddenSectors...........63
  volsize.................54235376
  mftcluster..............786432
  mftmirrorcluster........16
  clustersPerMFTRecord....246
  clustersPerIndexBuffer..1
  ---------------------------------------------------
  Cluster Allocation Map
  ---------------------------------------------------
  Start: 6779422 Length: 0 Next: 6779422

=======================================================
Disk Info :
  remote.............0
  drive..............1
  sectorsUsedCount.......877277394
  estimatedUsedCount.....7498065
  numPartitions..............1
  Version............1102
# Ord Boot Id Ext     First        Num       Last       Used NTFS
0  0    0  1c No         63   30170007   30170070    7498064 No
Disk Info :
  remote.............0
  drive..............0
  sectorsUsedCount.......976767876
  estimatedUsedCount.....604429008
  numPartitions..............5
  Version............0
# Ord Boot Id Ext     First        Num       Last       Used NTFS
0  0    0   7 No         63   54235377   54235440   35832976 Yes
1  1    1  12 No   54235440  188972595  243208035  121451032 Yes
2  2    0   7 No  243208035  582179535  825387570  446297896 Yes
3  3    0  12 Yes  825387633    3116547  828504180     847104 No
4  4    0  1c Yes  828504243  148263822  976768065    7498064 No
Fixed Drives
Drive 128 WDC WD5000AADS-00S9B0      WD-WCAV9A072558
Int 13h
Total Sectors            16450560
Bytes per Sector         512
MB                       8032
Cylinders                1024
Heads                    255
Sectors per Track        63
Successful IO Count      0
Extended Int 13h
Total Sectors            976773168
Bytes per Sector         512
MB                       476940
Successful IO Count      0
IDE using PIO
Total Sectors            976773168
Bytes per Sector         512
MB                       476940
Cylinders                16383
Heads                    16
Sectors per Track        63
Successful IO Count      0
IDE using UDMA (Active)
Total Sectors            976773168
Bytes per Sector         512
MB                       476940
Cylinders                16383
Heads                    16
Sectors per Track        63
Successful IO Count      1325
Floppy Drives
Drive 0
Int 13h (Active)
Total Sectors            5760
Bytes per Sector         512
MB                       2
Cylinders                80
Heads                    2
Sectors per Track        36
Successful IO Count      1
Extended Int 13h
Total Sectors            5760
Bytes per Sector         512
MB                       2
Cylinders                80
Heads                    2
Sectors per Track        36
Successful IO Count      0
Remote Drives
AsyncIo : 0
Image Devices
Key[1]   1.1:
Key[2]   1:1
Path     1.1:
Desc     1.1: [win7]
Type     NTFS
Disk     0
Offset   63
Key[1]   1.2:
Key[2]   1:2
Path     1.2:
Desc     1.2: [sysbak]
Type     NTFS
Disk     0
Offset   54235440
Key[1]   1.3:
Key[2]   1:3
Path     1.3:
Desc     1.3: [DATA]
Type     NTFS
Disk     0
Offset   243208035
Key[1]   1.4:
Key[2]   1:4
Path     1.4:
Desc     1.4: [ASUS_GATE]
Type     FAT
Disk     0
Offset   825387633
Key[1]   A:
Path     A:
Desc     A:
Type     Floppy
Key[1]   C:
Path     C:
Desc     C: [TEMP]
Type     Disk
Key[1]   @CD-R1
Path     @CD-R1
Desc     @CD-R1 BENQ    DVD LS DW1655   
Type     DVD

ConvMemoryAllocationFactoryDpmi diagnostic...
=============================================
Conventional Memory
Initial Conventional Memory Size = 457712
Current Conventional Memory Size = 385888
Allocated
   1024 DpmiDjgpp.cpp:56
  33504 ghost.cpp:1396
     48 DiskDriveAccessExInt13.cpp:152
    528 IdeDmaServerPci.cpp:127
    528 IdeDmaServerPci.cpp:127
    528 IdeDmaServerPci.cpp:127
    528 IdeDmaServerPci.cpp:127
    528 IdeDmaServerPci.cpp:127
    528 IdeDmaServerPci.cpp:127
    512 DiskDriveAccessExInt13.cpp:152
Free
     16 MsdosLfoFilesystem.cpp:408
     80 DiskDriveAccessExInt13.cpp:115
    512 DiskDriveAccessInt13.cpp:189
  32768 AlignBufferedImageFileDevice.cpp:89

DiskManager diagnostic...
=========================
Fixed Drives
Drive 128 WDC WD5000AADS-00S9B0      WD-WCAV9A072558
Int 13h
Total Sectors            16450560
Bytes per Sector         512
MB                       8032
Cylinders                1024
Heads                    255
Sectors per Track        63
Successful IO Count      0
Extended Int 13h
Total Sectors            976773168
Bytes per Sector         512
MB                       476940
Successful IO Count      0
IDE using PIO
Total Sectors            976773168
Bytes per Sector         512
MB                       476940
Cylinders                16383
Heads                    16
Sectors per Track        63
Successful IO Count      0
IDE using UDMA (Active)
Total Sectors            976773168
Bytes per Sector         512
MB                       476940
Cylinders                16383
Heads                    16
Sectors per Track        63
Successful IO Count      1325
Floppy Drives
Drive 0
Int 13h (Active)
Total Sectors            5760
Bytes per Sector         512
MB                       2
Cylinders                80
Heads                    2
Sectors per Track        36
Successful IO Count      1
Extended Int 13h
Total Sectors            5760
Bytes per Sector         512
MB                       2
Cylinders                80
Heads                    2
Sectors per Track        36
Successful IO Count      0
The following devices do not use an IRQ:
   (0x00, 0x00, 0x00):   IRQ: 0x00, INT#: -, Link: 0x00
      Class: Bridge, SubClass: Host/PCI
      Vendor: 0x8086, Device: 0x2e20
   (0x00, 0x1e, 0x00):   IRQ: 0xff, INT#: -, Link: 0x00
      Class: Bridge, SubClass: Sub Decode PCI/PCI
      Vendor: 0x8086, Device: 0x244e
   (0x00, 0x1f, 0x00):   IRQ: 0x00, INT#: -, Link: 0x00
      Class: Bridge, SubClass: PCI/ISA
      Vendor: 0x8086, Device: 0x3a18, RoutePINS: 0x62, 0x63, 0x62, 0x00,
The following hard wire-ord devices share IRQ 10:
   (0x00, 0x01, 0x00):   IRQ: 0x0a, INT#: A, Link: 0x60
      Class: Bridge, SubClass: PCI/PCI
      Vendor: 0x8086, Device: 0x2e21, RoutePINS: 0x60, 0x61, 0x62, 0x63,
   (0x00, 0x1a, 0x00):   IRQ: 0x0a, INT#: A, Link: 0x60
      Class: Serial Bus, SubClass: USB UHCI
      Vendor: 0x8086, Device: 0x3a37, RoutePINS: 0x60, 0x69, 0x62, 0x00,
   (0x00, 0x1c, 0x05):   IRQ: 0x0a, INT#: B, Link: 0x60
      Class: Bridge, SubClass: PCI/PCI
      Vendor: 0x8086, Device: 0x3a4a, RoutePINS: 0x61, 0x60, 0x62, 0x63,
   (0x01, 0x00, 0x00):   IRQ: 0x0a, INT#: A, Link: 0x60
      Class: Display, SubClass: VGA compatible
      Vendor: 0x1002, Device: 0x68f9, RoutePINS: 0x60, 0x61, 0x62, 0x63,
   (0x03, 0x00, 0x00):   IRQ: 0x0a, INT#: A, Link: 0x60
      Class: Mass Storage, SubClass: IDE Controller
      Vendor: 0x197b, Device: 0x2368, RoutePINS: 0x60, 0x61, 0x62, 0x63,
The following hard wire-ord devices share IRQ 11:
   (0x00, 0x1c, 0x00):   IRQ: 0x0b, INT#: A, Link: 0x61
      Class: Bridge, SubClass: PCI/PCI
      Vendor: 0x8086, Device: 0x3a40, RoutePINS: 0x61, 0x60, 0x62, 0x63,
   (0x00, 0x1c, 0x04):   IRQ: 0x0b, INT#: A, Link: 0x61
      Class: Bridge, SubClass: PCI/PCI
      Vendor: 0x8086, Device: 0x3a48, RoutePINS: 0x61, 0x60, 0x62, 0x63,
   (0x01, 0x00, 0x01):   IRQ: 0x0b, INT#: B, Link: 0x61
      Class: Multimedia, SubClass: Unknown Multimedia
      Vendor: 0x1002, Device: 0xaa68, RoutePINS: 0x60, 0x61, 0x62, 0x63,
   (0x02, 0x00, 0x00):   IRQ: 0x0b, INT#: A, Link: 0x61
      Class: Network, SubClass: Ethernet
      Vendor: 0x1969, Device: 0x1026, RoutePINS: 0x61, 0x62, 0x63, 0x60,
   (0x05, 0x01, 0x00):   IRQ: 0x0b, INT#: A, Link: 0x61
      Class: Serial Bus, SubClass: IEEE 1394 OpenHCI
      Vendor: 0x11c1, Device: 0x5811, RoutePINS: 0x61, 0x62, 0x63, 0x60,
The following hard wire-ord devices share IRQ 15:
   (0x00, 0x1a, 0x02):   IRQ: 0x0f, INT#: C, Link: 0x62
      Class: Serial Bus, SubClass: USB UHCI
      Vendor: 0x8086, Device: 0x3a39, RoutePINS: 0x60, 0x69, 0x62, 0x00,
   (0x00, 0x1a, 0x07):   IRQ: 0x0f, INT#: C, Link: 0x62
      Class: Serial Bus, SubClass: USB EHCI
      Vendor: 0x8086, Device: 0x3a3c, RoutePINS: 0x60, 0x69, 0x62, 0x00,
   (0x00, 0x1d, 0x02):   IRQ: 0x0f, INT#: C, Link: 0x62
      Class: Serial Bus, SubClass: USB UHCI
      Vendor: 0x8086, Device: 0x3a36, RoutePINS: 0x6b, 0x63, 0x62, 0x60,
   (0x00, 0x1f, 0x03):   IRQ: 0x0f, INT#: C, Link: 0x62
      Class: Serial Bus, SubClass: SMBUS
      Vendor: 0x8086, Device: 0x3a30, RoutePINS: 0x62, 0x63, 0x62, 0x00,
The following hard wire-ord devices share IRQ 5:
   (0x00, 0x1d, 0x01):   IRQ: 0x05, INT#: B, Link: 0x63
      Class: Serial Bus, SubClass: USB UHCI
      Vendor: 0x8086, Device: 0x3a35, RoutePINS: 0x6b, 0x63, 0x62, 0x60,
   (0x00, 0x1f, 0x02):   IRQ: 0x05, INT#: B, Link: 0x63
      Class: Mass Storage, SubClass: IDE Controller
      Vendor: 0x8086, Device: 0x3a20, RoutePINS: 0x62, 0x63, 0x62, 0x00,
   (0x00, 0x1f, 0x05):   IRQ: 0x05, INT#: B, Link: 0x63
      Class: Mass Storage, SubClass: IDE Controller
      Vendor: 0x8086, Device: 0x3a26, RoutePINS: 0x62, 0x63, 0x62, 0x00,
The following hard wire-ord devices share IRQ 14:
   (0x00, 0x1a, 0x01):   IRQ: 0x0e, INT#: B, Link: 0x69
      Class: Serial Bus, SubClass: USB UHCI
      Vendor: 0x8086, Device: 0x3a38, RoutePINS: 0x60, 0x69, 0x62, 0x00,
The following hard wire-ord devices share IRQ 3:
   (0x00, 0x1b, 0x00):   IRQ: 0x03, INT#: A, Link: 0x6a
      Class: Multimedia, SubClass: Unknown Multimedia
      Vendor: 0x8086, Device: 0x3a3e, RoutePINS: 0x6a, 0x00, 0x00, 0x00,
The following hard wire-ord devices share IRQ 6:
   (0x00, 0x1d, 0x00):   IRQ: 0x06, INT#: A, Link: 0x6b
      Class: Serial Bus, SubClass: USB UHCI
      Vendor: 0x8086, Device: 0x3a34, RoutePINS: 0x6b, 0x63, 0x62, 0x60,
   (0x00, 0x1d, 0x07):   IRQ: 0x06, INT#: A, Link: 0x6b
      Class: Serial Bus, SubClass: USB EHCI
      Vendor: 0x8086, Device: 0x3a3a, RoutePINS: 0x6b, 0x63, 0x62, 0x60,

FilesystemManager diagnostic...
===============================
Volume 1
VolumePos: 1.1:
DriveLetter:
Description:   25.86GB Primary Disk 0 Offset   31.50KB   25.86GB WDC WD5000AADS-00S9B0      WD-WCAV9A072558
Type:        fsfNtfsWindowsXP
Name:        win7
Volume 2
VolumePos: 1.2:
DriveLetter:
Description:   90.11GB Primary Disk 0 Offset   25.86GB   90.11GB WDC WD5000AADS-00S9B0      WD-WCAV9A072558
Type:        fsfNtfsWindowsXP
Name:        sysbak
Volume 3
VolumePos: 1.3:
DriveLetter:
Description:  277.60GB Primary Disk 0 Offset  115.97GB  277.60GB WDC WD5000AADS-00S9B0      WD-WCAV9A072558
Type:        fsfNtfsWindowsXP
Name:        DATA
Volume 4
VolumePos: 1.4:
DriveLetter:
Description:    1.49GB Logical Disk 0 Offset  393.58GB    1.49GB WDC WD5000AADS-00S9B0      WD-WCAV9A072558
Type:        fsfFat32
Name:        ASUS_GATE

FilesystemMounter diagnostic...
===============================

LfoFilesystemManager diagnostic...
==================================
Filesystem Index: 0
Filesystem Descriptor:
  ID's:
    ID Type: 2
    ID: A:
  DriveType: 2
  No FilesystemInfo structure.
  Filesystem has no VolumePtr
Filesystem Index: 1
Filesystem Descriptor:
  ID's:
    ID Type: 2
    ID: C:
  DriveType: 4
  No FilesystemInfo structure.
  Filesystem has no VolumePtr
Filesystem Index: 2
Filesystem Descriptor:
  ID's:
    ID Type: 1
    ID: 1.1:
    ID Type: 4
    ID: WIN7:
  DriveType: 4
  FilesystemInfo:
    formatType: 8
    volumeName: win7
Filesystem Index: 3
Filesystem Descriptor:
  ID's:
    ID Type: 1
    ID: 1.2:
    ID Type: 4
    ID: SYSBAK:
  DriveType: 4
  FilesystemInfo:
    formatType: 8
    volumeName: sysbak
Filesystem Index: 4
Filesystem Descriptor:
  ID's:
    ID Type: 1
    ID: 1.3:
    ID Type: 4
    ID: DATA:
  DriveType: 4
  FilesystemInfo:
    formatType: 8
    volumeName: DATA
Filesystem Index: 5
Filesystem Descriptor:
  ID's:
    ID Type: 1
    ID: 1.4:
    ID Type: 4
    ID: ASUS_GATE:
  DriveType: 4
  FilesystemInfo:
    formatType: 3
    volumeName: ASUS_GATE

*********************************

[ 本帖最后由 qj_tzy 于 2012-4-15 23:44 编辑 ]
回复

使用道具 举报

12#
发表于 2012-4-16 08:35:53 | 只看该作者
1、手动还原一下看看行不行,
2、看看 你的分区序列是否有问题
3、用 ghost 的检测功能检测 gho 文件。

上网找个 ghost 的说明书 看看,应该能解决你的很多疑问。

[ 本帖最后由 dos时代菜鸟 于 2012-4-16 08:37 编辑 ]
回复

使用道具 举报

13#
 楼主| 发表于 2012-4-17 23:08:05 | 只看该作者

回复 #12 dos时代菜鸟 的帖子

按照您的指点:
1.认真看了ghost的说明书,明白了xxx.gho:y之含义;
2.确实是分区序列有问题,重新分区后,解决了这一问题。

对您的悉心指点,表示真诚的感谢!
回复

使用道具 举报

14#
发表于 2014-4-9 11:04:59 | 只看该作者
本帖最后由 wuhenxpe 于 2014-4-9 11:07 编辑
dos时代菜鸟 发表于 2012-4-15 16:55
还原时用ghost -clone,mode=pload,src=%gho_dsk%\%gho_dir%\%gho_file%,dst=%sys_drv% -sure -fx未成功。
...


我也在做同样的事情  还原时与到了 gho文件不有效的文件
发现  加载了ntdos后,再进入 NTFS分区 再运行ghost就认为ghost文件无效了

其实我是想偷懒 下接进入ghost文件目录 使用相对路径来还原

%gho_dsk%\%gho_dir%\%gho_file% 这个变量是如何判断的?
回复

使用道具 举报

15#
发表于 2014-4-9 14:03:31 | 只看该作者
想问一下 你的EISA分区格式是 NTFS的吗?

点评

是NTFS分区,这一问题已于2012-4-17解决。  详情 回复 发表于 2014-4-9 17:05
回复

使用道具 举报

16#
 楼主| 发表于 2014-4-9 17:05:57 | 只看该作者
wuhenxpe 发表于 2014-4-9 14:03
想问一下 你的EISA分区格式是 NTFS的吗?

是NTFS分区,这一问题已于2012-4-17解决。

点评

我今天 也解决了,GHOST不支持NTFS分区使用相对路径  详情 回复 发表于 2014-4-9 17:42
回复

使用道具 举报

17#
发表于 2014-4-9 17:42:02 | 只看该作者
qj_tzy 发表于 2014-4-9 17:05
是NTFS分区,这一问题已于2012-4-17解决。

我今天 也解决了,GHOST不支持NTFS分区使用相对路径
回复

使用道具 举报

18#
发表于 2014-4-12 09:03:01 | 只看该作者
很喜欢这类的资源 谢谢楼主分享:)
回复

使用道具 举报

19#
发表于 2014-4-14 16:17:11 | 只看该作者
楼主要是能分享一下作品就好了,Grub4dos传递参数给IMG的帖子很少,让我等菜鸟学习学习!
回复

使用道具 举报

20#
发表于 2014-6-8 12:17:45 来自手机 | 只看该作者
我也遇到了类似的问题,但我的要求比楼主简单。请问纯DOS下怎样递归所有分区的目录包括子目录并将路径传递到变量?
回复

使用道具 举报

21#
发表于 2014-6-8 12:19:09 来自手机 | 只看该作者
for /f或/r在纯dos下貌似是无效的
回复

使用道具 举报

22#
发表于 2014-6-27 10:50:16 | 只看该作者
先收藏
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|Archiver|捐助支持|无忧启动 ( 闽ICP备05002490号-1 )

闽公网安备 35020302032614号

GMT+8, 2024-6-8 09:59

Powered by Discuz! X3.3

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表