Recover CD, Zoals bij Acer, Medion, HP etc..

Pagina: 1
Acties:
  • 103 views sinds 30-01-2008
  • Reageer

  • ThinkPad
  • Registratie: Juni 2005
  • Laatst online: 09:04
Hoi, Ik had een vraagje
Ik wil zelf een cd maken met een menu enzo zodat ik m'n pc kan recoveren na een crash

Sommige Fabrikanten hebben dit ook, dan hebben ze een verborgen partitie met de recover bestanden en een speciale cd. De speciale cd stop je in de PC je kiest in het menuutje om de pc te recoveren en binnen 10 minuten draait je PC weer.

Dit wou ik dus ook zelf maken. Heb al een beetje gezocht maar kon niet echt wat vinden, het meeste ging over een Unattended Install, maar een unattended install wil ik dus NIET!!

  • ThinkPad
  • Registratie: Juni 2005
  • Laatst online: 09:04
Oke maar die dingen zijn zo gemaakt dat de image op de CD/DVD gebrand is

maar ik zal even een voorbeeld geven zoals ik het wil hebben,


Schijf C:\ zal er zo uitzien:

21-05-2005 16:54 <DIR> Mapje
15-09-2005 15:36 <DIR> Mapje2
22-11-2005 15:42 <DIR> Mapje3
25-11-2005 18:52 <DIR> WINDOWS
x bestand(en) xxxxxx bytes
x map(pen) xxxxxx bytes beschikbaar

Schijf D:\ zal er zo uit zien:

21-05-2005 16:54 <DIR> DATA
15-09-2005 15:36 recover.image

x bestand(en) xxxxxx bytes
x map(pen) xxxxxx bytes beschikbaar


Ik doe de cd erin kies in het menuutje wat er moet gebeuren en ghost begint met het terugzetten van de image vanaf D:
Dus een menu met twee opties:

Optie1 : Image terugzetten
Optie 2: Alles ongewijzigd laten en de pc opnieuw opstarten/afsluiten

Dat menuutje komt wel goed, alleen dat terugzetten van de image begrijp ik nog niet helemaal

Ik weet wel dat ik zo'n soort commando moet aanroepen
code:
1
ghost.exe /hier een commando <naam van image.image>



Helaas is een DVD geen optie want er zit alleen een CD-ROM Speler in en geen DVD speler

[ Voor 86% gewijzigd door ThinkPad op 25-11-2005 23:33 ]


  • satcp
  • Registratie: Februari 2000
  • Niet online
Alles wat je wil weten komt uitvoerig aan bod in de gegeven links. Anyway, als de harddisk in de FAT32 indeling is geformatteerd dan kun je gewoon D:\recover.image als SRC (source) naam gebruiken. FAT32 partities kan Ghost namelijk gewoon met de DOS-namen benaderen (dit geldt enkel voor de SRC, de destination DST moet wel 1:1 zijn voor de C:). Heb je NTFS dan moet je de source ook met de harddisk:partitie-notatie aanduiden. D:\recover.image wordt dus 1:2\recover.image

Bijvoorbeeld:
code:
1
GHOST.EXE -clone,MODE=pload,SRC=1:2\IMAGE.GHO:1,DST=1:1
In de laatste link die ik gaf zie in een van mijn berichten een duidelijk gestructureerde autoexec.bat en config.sys waaruit je goed kunt zien hoe een DOS-menu opgebouwd wordt. Aanpassen is dan ook kinderspel.

Vergeet ook niet de Ghost handleiding te lezen. Daarin worden alle command-line switches uitvoerig en duidelijk met voorbeelden behandeld.

Verwijderd

ik heb daar een keer een stukje over geschreven:




Requirements: MS DOS bootdisk with FDISK, Norton Ghost executable, an empty hard disk.

First of all you have to start with a clean hard drive - i.e. no partitions or volumes present (remove them with FDISK or a Windows installation cd).
Next, use the bootdisk to start up your system (make sure the floppy drive is set as 1st boot device in the BIOS).
After startup, fire up FDISK to create a primary partition. Make it about 15 Mb (this will only hold your bootfiles and the Norton executable, so it needs not be any larger). Make this partition active.
Reboot your system with the bootflop and format the newly created partition with the FAT filesystem. Label it BOOT.
Now make it bootable with the following command:

A:\>SYS A: C:

The MS DOS bootfiles are copied from the bootflop to the 1st sector of the hard drive.

Now you can start the installation of Windows. Remove the bootflop, put the Windows installation cd in the drive and restart.
During installation create a new partition for Windows to install on. Make it about 5 Gb in size (depending on your needs) and format it with NTFS. Label the partition SYSTEM. Leave the rest of the hard disk space unallocated.
Finish the installation and start up Windows.

Now you should have 2 drives on your system:
1 FAT partition called BOOT (C-drive)
1 NTFS partition called SYSTEM (D-drive)

Create a 3rd primary partition on the hard disk using Windows Disk Management. Make it about 4-5 Gb and format it using the FAT32 filesystem. Assign no disk-letter to it to make it hidden in Windows. Label it GHOST.
(You can convert the remaining unallocated space on the drive to an extended partition and create several volumes on it, depending your needs).

Then go to the C-drive, create a directory called Ghost and put the Ghost files in there.
Go to the root and copy some useful files from the bootdisk, like MSCDEX.EXE, MOUSE.COM, e.a.
Now you need to edit the boot.ini file located in the root of this drive (you might need to enable ’show hidden files and folders’ and disable ‘hide protected operating system files’ in the folder options).
Make sure it reads something like this:

[boot loader]
timeout=3
default=multi(0)disk(0)rdisk(0)partition(1)\WINDOWS
[operating systems]
multi(0)disk(0)rdisk(0)partition(1)\WINDOWS="Microsoft Windows XP Professional" /fastdetect
c:\="MS DOS"

Copy the CONFIG.SYS and the AUTOEXEC.BAT from the bootflop to enable a.o. CD-ROM, and mouse support.

Now remove the floppy from the drive, restart your computer and at the boot menu, choose “MS DOS” to boot in DOS.
After checking everything works, you can start ghosting your partitions to the GHOST-partition.

Optionally, you can make an automated recovery .bat file:

@ECHO OFF
CHOICE /T:N,5 GHOST D-DRIVE?
IF ERRORLEVEL 2 GOTO END

CD GHOST
ECHO LOADING...
GHOST.EXE -CLONE,MODE=PLOAD,SRC=D:\IMAGE.GHO:1,DST=1:2
GOTO END

:END

Enjoy.

  • ThinkPad
  • Registratie: Juni 2005
  • Laatst online: 09:04
Ik heb Ghost 7.0 gedownload, is die goed?

[ Voor 63% gewijzigd door ThinkPad op 27-11-2005 10:42 ]

Pagina: 1