Problem Overview
When running a Symantec Ghost 8.2 backup of a Siemens SINUMERIK 840D operator panel/PCU 50.3 or PCU 70.1 system, the dump operation terminates between 0% and 100% with a Ghost error log entry that matches the following pattern:
********************** Backup/Restore Log File ********************** Error: Error while running Ghost! Parameter: -batch -z2 -sure -fis -clone,mode=dump,src=1,dst=O:\del2.gho Ghost Error File: Date : Sun Dec 16 16:36:32 2007 Error Number: (657) Message: Available space is less than the estimated image file size. Version: 8.2.0.1117 (Aug 26 2004, Build=1117) OS Version: Professional (Build 3790) Command line arguments: -script=d:\images\\para.dat -afile=d:\images\\Ghosterr.txt Active Switches : AutoName
The failure is reported in the HMI's Ghosterr.txt file located on the boot media (typically D:\images\). Ghost exits before completing the dump, leaving an incomplete or zero-byte .gho file on the destination share O:\. Most service engineers encounter the abort at 50% completion, immediately after Ghost has processed the operating-system sectors and is moving into the HMI application payload.
Environment Identification
Confirm the operating environment of the failing backup before changing any script switch:
| Component | Value / Range |
|---|---|
| CNC | SINUMERIK 840D or 840D sl (powerline / solution line) |
| PCU | PCU 50.3 / PCU 70.1 (Windows XP Embedded or Windows 7 Embedded) |
| Backup tool | Symantec Ghost 8.2 Corporate Edition, Build 1117 |
| Boot media | DOS or WinPE bootable USB stick with Ghost.exe |
| Source partition | src=1 (NTFS C: of the PCU) |
| Destination | O:\ (mapped network share) |
| Script file | D:\images\para.dat |
| Error file | D:\images\Ghosterr.txt |
| Active flag | AutoName (writes del2.gho, del3.gho, ...) |
For 840D systems delivered with software releases prior to SW 4.4 SP2, Ghost 8.2 is the standard service tool bundled on the recovery media. Refer to the SINUMERIK 840D sl Service HMI manual on the Siemens Industry Online Support portal (article ID 48832605 in the SINUMERIK archive) for the canonical backup flow that Ghost 8.2 plugs into.
Root Cause Analysis
Ghost 8.2 error 657 is raised by the size estimation module of the dump engine. Ghost walks the source volume, sums the used clusters, applies the requested compression factor, and compares the result against the free space on the destination volume. If the projected final .gho exceeds the destination free bytes, the abort is triggered.
Three root-cause families apply to the 840D scenario:
-
Destination share is genuinely out of space. The most common cause. The network share
O:is mounted from a Windows file server, a NAS, or a peer PCU. Previous.ghofiles, NC archives, or unrelated data have filled it. TheAutoNameswitch writes a sequence ofdel2.gho,del3.gho, etc., so stale generations often accumulate on the share and are never cleaned up. -
Compression ratio is lower than Ghost's pre-dump estimate. The HMI partition contains installed binaries, registry hives (
SOFTWARE,SYSTEM,NTUSER.DAT), service packs, and machine data archives that are already compressed or random and therefore not compressible below approximately 30%. With-z2Ghost assumes a higher compression ratio than the real HMI image achieves. The estimate of the required.ghosize is therefore optimistic, and the destination fills during the dump. -
Source partition has grown since the last successful image. The HMI's
C:partition grows when trace logs, NC backup archives, or service packs accumulate. If the previous successful image was taken whenC:was 4.2 GB and is now 5.1 GB, the same destination share may no longer be large enough even with the same compression switch.
-fis switch combination used in legacy 840D scripts the same code is also raised mid-dump when the live write pointer crosses the predicted ceiling. That is why some sites observe the failure at exactly 50% (halfway through the source volume scan, after the operating-system sectors have been processed and the less compressible HMI payload begins).Diagnostic Procedure
Run the following checks on the PCU and the network share host before modifying the script:
- Mount the network share from a separate Windows workstation. Right-click the drive, choose Properties, and record the free bytes. Compare against the size of the last successful
.gho; the share should hold at least 1.2 times the source volume size with-z2enabled. - From a command prompt on the file server, run
dir /a /s O:\*.ghoto enumerate every previous Ghost image. Old generations from AutoName rotation are frequently forgotten and can total several gigabytes. - Boot the PCU into the recovery environment, drop to a Ghost command shell, and execute
ghost.exe -ddto obtain the exact free cluster count on the destination volume. - Estimate the source volume: from the same shell, run
ghost.exe -ntchkdskon the source partition, or usediruse /M /Q:1 C:\from a WinPE command line to obtain the used cluster count. - Open
D:\images\para.datand verify the switches in use. Older 840D scripts ship with-z2which delivers a 30% to 40% compression ratio on the HMI image;-z1lowers CPU load and produces a larger.ghobut more predictable sizing. - Read the timestamp inside the Ghosterr.txt. If the failure is reported at 50% consistently across multiple runs, the cause is compression ratio, not raw space.
Solution Path 1 - Free Destination Space
If the destination share is the limit, the most direct resolution is to free bytes. Apply the steps in this order:
- Archive and move every
.ghoolder than the most recent successful image to a long-term storage location (tape, NAS snapshot, off-line disk). - Delete redundant
.ghs(spanned segment) files if the last dump used-split. Ghost 8.2 leaves the segments behind on abort. - Verify the new free space exceeds the source volume size by at least 20% to absorb compression inefficiency.
- Re-run the same command line. The dump should now reach 100%.
Get-ChildItem -Path O:\ -Filter *.gho | Sort-Object LastWriteTime | Select-Object -SkipLast 5 | Remove-Item) to keep only the last five successful dumps and avoid hitting the free-space ceiling again.Solution Path 2 - Adjust Compression and Split Options
Edit D:\images\para.dat (or the equivalent *.bat wrapper) and adjust the compression level so Ghost's pre-dump estimate matches the eventual file size:
- Original (fails at 50% on a 5 GB HMI source): ghost.exe -batch -z2 -sure -fis -clone,mode=dump,src=1,dst=O:\del2.gho - Alternative A: lower compression ghost.exe -batch -z1 -sure -fis -clone,mode=dump,src=1,dst=O:\del2.gho - Alternative B: no compression (fastest, largest) ghost.exe -batch -z0 -sure -fis -clone,mode=dump,src=1,dst=O:\del2.gho
Trade-off table for typical 840D PCU 70.1 HMI images:
| Switch | Approx. ratio on 840D HMI | Dump time on PCU 70.1 | Resulting .gho size (5 GB source) |
|---|---|---|---|
-z0 |
1.00 (uncompressed) | ~6 min | ~5.0 GB |
-z1 |
1.10 (light) | ~8 min | ~4.5 GB |
-z2 (default) |
1.30 (medium) | ~12 min | ~3.8 GB |
-z3 |
1.40 (high) | ~18 min | ~3.5 GB |
-z6 |
1.50 (very high) | ~32 min | ~3.3 GB |
-z9 |
1.55 (maximum) | ~45 min | ~3.2 GB |
If the destination share can only hold the last image and the source volume is stable at around 4 GB, choose -z2. If a recent dump failed and the new source volume is more than 20% larger than the last successful one, fall back to -z1 or -z0 to eliminate the estimation error.
When the network share is provisioned as multiple smaller drives, use the -split=N switch to split the .gho into 2 GB segments. The flag also forces Ghost to compute the per-segment free space, which in many cases bypasses the 657 estimation failure because the working file no longer exceeds a single chunk's available size:
ghost.exe -batch -z2 -sure -split=2000 -fis -clone,mode=dump,src=1,dst=O:\del2.gho
Ghost then writes del2.gho, del2.001.ghs, del2.002.ghs, etc. The -span switch is a related alternative for spanning across multiple physical drives when the network share is unavailable.
Solution Path 3 - Trim Non-Essential HMI Data
The 840D HMI stores log files, traces, and NC backup archives that do not need to be in the master image. Trim them before running Ghost. From a WinPE command prompt:
del /q /s C:\dh\mb.dir\*.log del /q /s C:\dh\diag.* rd /s /q C:\dh\wrk.dir\temp del /q /s "C:\Documents and Settings\*\Local Settings\Temp\*" del /q /s C:\Windows\SoftwareDistribution\Download\*
Each of the listed directories can hold 200 MB to 1.5 GB on a long-running PCU. Trimming them before the dump keeps the source below the 657 threshold without changing the compression switch and without touching the installed HMI base.
C:\dh\ (or D:\dh\ on PCU 50 systems) depends on the software version. On 840D sl SW 4.4 the mb.dir location may have moved into the card\user mount; check with dir C:\dh /a before issuing the delete.SINUMERIK-Specific Considerations
Before re-running the backup, ensure the PCU is in a service-friendly state:
- Stop the HMI Advanced service. From Start > Run:
net stop "SinuComNCK"andnet stop "HMI Advanced". On 840D sl PCU 50.5 / PCU 70.2 systems the service is calledSiemensHMI. Stopping these services prevents Ghost from racing against the HMI's own file handles and reporting error 657 on a perfectly good source. - Disable virus scanners that intercept Ghost's sector-level read. Symantec Endpoint Protection, McAfee Agent, and Trend Micro OfficeScan all hook Ntfsd device calls and cause Ghost 8.2 to estimate a larger image than the volume actually contains. Set the scanner to a two-hour exclusion window for the duration of the dump.
- Re-seat the network cable or replace the switch port. A stalled SMB session is sometimes reported by Ghost as a destination full condition because the live write pointer stops advancing while Ghost keeps reading the source.
- Verify the date and time in the PCU BIOS. Ghost logs the timestamp into the error file. If the BIOS date is earlier than the last good image, ghosting utilities that perform a "compare" step may refuse the write.
- Set the source partition to be the active partition. Ghost 8.2 will skip the dump entirely and return 657 if the source volume is not the bootable primary partition; on 840D PCU 70.1 this is normally partition 1, but a previous failed restore may have left the active flag on partition 2.
Reference the Siemens Service Manual "SINUMERIK 840D sl, HMI Advanced, Service and Commissioning" (publication 6FC5397-0BP10 series) for the canonical backup flow that Ghost 8.2 is expected to plug into, and the HMI Configuration Manual (6FC5397-0BP20 series) for the partition layout that the dump captures.
Verification
After applying a solution, verify the dump is complete and the image is restorable:
- From a workstation with the network share mounted, open Properties on
del2.gho. A complete image is no smaller than the source volume minus the original free space, and not larger than the source volume size. - Re-image a test PCU or VM: from a Ghost console, run
ghost.exe -clone,mode=restore,src=O:\del2.gho,dst=1to the same partition number. A successful restore confirms the dump is internally consistent. - Check the time stamp in the Ghost session dialog matches the end time of the backup, not the 50% mark. A completed run logs
Ghost exit code 0intoGhosterr.txt. - Power up the restored PCU. The HMI must reach the operator area without 120202 (PLC stop - sign-of-life failure) or 120203 (PLC stop - user memory inconsistent) errors. If a PLC stop appears, re-load the PLC project from the
card\user\clp.dir\...folder via the HMI Commissioning menu.
Preventive Maintenance
| Cadence | Action |
|---|---|
| Daily | Cycle-delete AutoName generations beyond the last 5 successful dumps on the share host. |
| Weekly | Run chkdsk /r on the source volume to surface bad sectors before the next dump. |
| Monthly | Verify the source volume used space has not exceeded 80% of the destination's free space with -z2 active. Re-size the share or move to a bigger volume before the next scheduled backup. |
| After every HMI SW upgrade | Re-image the PCU; record the resulting .gho size in the maintenance log so future source growth is visible. |
| After every NCK / PLC archive import | Trim the imported NC archive set if it pushes C: above the 4.5 GB threshold (the practical ceiling for a -z2 image on a 5 GB free share). |
| Quarterly | Re-create the bootable Ghost media from a verified ISO. The bootable USB sticks delivered with 840D service kits have a documented failure rate after 24 months in storage. |
Troubleshooting Matrix
| Symptom | Likely root cause | Recommended action |
|---|---|---|
| 657 at 0% | Destination not mapped or write-protected | Re-create net use O: \\server\share /user:domain\backup password and re-run; check share NTFS write permission for the service account. |
| 657 at 1-10% | Bad cluster on the source volume | Run chkdsk C: /r from WinPE; repeat the dump with -ir (ignore read errors) as a one-off diagnostic. |
| 657 at 50% | Compression ratio worse than Ghost's pre-dump estimate | Reduce -z2 to -z1 or -z0; or add -split=2000. |
| 657 at 99% | Source volume grew since last successful dump | Free destination space or switch to -z0; confirm by running diruse /M C:\ and comparing against the previous quarter's image size. |
| 657 immediately after AutoName roll-over | Old .gho files pin a write lock on the share |
Close any open handle to O:\*.gho using the openfiles /query and openfiles /disconnect commands on the file server. |
| 657 plus 10010 in Ghosterr.txt | SMB session reset by network policy | Disable SMB signing on the share or use a USB-attached HDD as the destination. |
| 657 plus 10060 in Ghosterr.txt | DNS / NetBIOS resolution failure on the share | Use \\192.168.x.x\share literal IP; add the share host to %SystemRoot%\system32\drivers\etc\lmhosts. |
| 657 plus 10054 in Ghosterr.txt | Connection forcibly closed by the file server | Increase the share server's SMB timeout; check antivirus real-time scan on the file server. |
| 657 on a freshly restored PCU | Active partition flag was not restored | Set the source partition active with diskpart or the recovery fdisk, then re-run. |
FAQ
What is Ghost error 657 on a SINUMERIK 840D backup?
Error 657 ("Available space is less than the estimated image file size") is raised by Symantec Ghost 8.2 when the destination share cannot hold the projected size of the .gho dump. On 840D PCU 50 / PCU 70 systems it most often appears when the HMI partition has grown beyond the share's free space, or when the actual compression ratio on the HMI is worse than Ghost assumed.
Is Ghost 8.2 still the official Siemens 840D backup tool?
Ghost 8.2 (Build 1117) is the legacy tool shipped with pre-SW 4.4 SINUMERIK 840D recovery media. Newer 840D sl PCU 50.5 / PCU 70.2 systems with SW 4.5 and later use Acronis-based imaging or the SINUMERIK PCU Image Creator utility. Always check the Service Manual for the installed SW version on the Siemens Industry Online Support portal.
How can I keep the .gho file size predictable?
Run a nightly cleanup of log and trace directories under C:\dh, fix the compression switch to -z1 for all HMI dumps, and split the image with -split=2000 so each segment is under 2 GB. This combination makes the size of each segment depend only on the source used space, not on the live compression ratio that Ghost 8.2 tends to over-estimate.
Can the failure happen even if the share has plenty of free space?
Yes. Ghost 8.2 estimates the final file size from the source used clusters times the compression factor of the requested -z level. If the actual ratio on the HMI is worse than expected, the live write pointer exceeds the free space long before the dump finishes. Lower the -z level or split the image to avoid the abort.
Does the AutoName switch rotate old .gho files automatically?
No. AutoName only renames the new file (del2.gho, del3.gho, and so on) and never deletes older generations. Implement a scheduled cleanup task on the file server to keep only the last N images and avoid hitting the free-space ceiling on the next scheduled backup.