在没有配置文件的情况下使用 SyncBack 进行恢复
我使用 SyncBack 以最大压缩率将内部硬盘驱动器 (C:) 备份到外部 (USB) 硬盘驱动器上。然后我在计算机上执行了 Windows Vista 的全新安装。
我忘记在全新安装之前复制 SyncBack 日志。现在,当我尝试恢复目录时,RAR/ZIP 文件会被复制到系统硬盘驱动器,而不是将其内容提取到硬盘驱动器。此外,SyncBack 在还原过程中不会遍历文件夹。
如何告诉 SyncBack 扩展压缩文件?
我正在运行 SyncBack 的免费版本。我必须创建新的日志文件(除非 SyncBack 将它们放在外部驱动器上的某个位置)。
我的替代方法是编写一个程序来遍历外部驱动器上的文件夹并从 RAR/ZIP 文件中提取文件。
我使用的是 Windows Vista Service Pack 2,备份前的数据大小约为 200 GB。 (由于“小问题”,备份过程花费了 72 多个小时)。
I backed up my internal hard drive (C:) using SyncBack onto an external (USB) hard drive with maximum compression. I then performed a clean install of Windows Vista onto the computer.
I forgot to copy the SyncBack logs before the clean install. And now when ever I try to restore a directory, the RAR/ZIP files are copied to the system hard drive instead of extracting their contents to the hard drive. Also, SyncBack is not traversing the folders during the Restore process.
How can I tell SyncBack to expand the compressed files?
I am running the freeware version of SyncBack. I have to create new log files (unless SyncBack put them somewhere on the external drive).
My alternative is to write a program that traverses the folders on the external drive and extracts files from the RAR/ZIP files.
I am using Windows Vista, Service Pack 2, and the data size prior to backup was about 200 GB. (The backup process took over 72 hours due to "hiccups").
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
重新创建您的配置文件,源为 C: 驱动器,目标为 Zip 文件所在的文件夹。确保配置文件设置为使用压缩(每个文件都压缩为其自己的文件)。然后只需将配置文件作为恢复运行即可。我建议首先运行模拟还原,看看在没有替换任何文件的情况下会发生什么。
re-create your profile with the source as your C: drive, and the destination is the folder where your Zip files are. Make sure the profile is set to use compression (with each file compressed to its own file). Then simply run the profile as a Restore. I'd recommend running a Simulated Restore first to see what will happen without any files being replaced.
我选择的答案是编写一个 Java 程序,遍历备份驱动器上的目录并在原始驱动器上重新创建它们。所有非目录文件都将解压缩到源驱动器。
Java 有用于解压缩文件的实用程序。
The answer I chose is to write a Java program that traverses directories on the backup drive and recreates them on the original drive. Any non-directory files are unzipped to the source drive.
Java has utilities for unzipping files.