[Précédent (date)] [Suivant (date)] [Précédent (sujet)] [Suivant (sujet)] [Index par date] [Index par sujet]
Re: copie de disque dur
- To:
- Subject: Re: copie de disque dur
- From: R.Ouellette <>
- Date: Sat, 23 Sep 2000 20:29:15 -0400 (EDT)
-
In-reply-to: <[email protected]>
J'ai fais cette opération à quelques reprises, c'est plus compliqué
qu'un simple copier avec cp. Le problème est de copier tous les liens
et de conserver les permissions sous Linux. La méthode suivante
fonctionne très bien en Linux :
mke2fs /dev/hdc1
mkdir /mnt/usr2
mount /dev/hdc1 /mnt/usr2
cd /usr
tar -clf - . | (cd /mnt/usr2; tar -xf - )
umount /mnt/usr2
éditer /etc/fstab - modifier /usr pour qu'il pointe sur /dev/hdc1
réamorcer
supprimer le répertoire /usr2
Évidemment on remplace le nom des unités par celles que l'on a réellement.
Passons maintenant à Windoze, si on ne veut pas tout réinstaller,
voici une méthode TRÈS pénible mais qui fonctionne fort bien
(je l'ai moi-même essayé il y a 3 ans quand j'utilisais Windoze
comme seul système d'exploitation). Je regrette, c'est en anglais,
cela provient du site nommé « Windows95 OSR2 FAQ »
Prerequisites: A Windows95 startup disk. See Method 2 above for instructions to make one
1) Install your new, blank hard drive as a slave.
2) Format the new hard drive (using FDISK and FORMAT, for instance).
3) From a DOS WINDOW INSIDE WINDOWS95, type the following command:
XCOPY C:\*.* D:\*.* /s/c/h/e/r/k
Notes: If you get a "switch not recognized" error, you're doing it wrong. To find out what these switches do, type
xcopy /? from a DOS WINDOW INSIDE WINDOWS95. This command assumes that your new hard drive was
assigned the letter D:\. Choose "yes" when asked to overwrite any files.
4) When copying is finished, turn off the computer, open it up, and reconfigure so that the new hard drive is the
Primary Master drive.
5) Boot to the Win95 startup disk. Using FDISK (or other such utility), set the Primary Partition on the new drive
as Active.
6) Eject the Startup disk and reboot. If Windows95 does not boot from the hard drive, put the startup disk back in
and boot to it. At the A:\ prompt, type:
SYS C:
This will recopy the system files to the new hard drive.
7) Reboot to the hard drive. It should boot to Windows95.
--------------
Il faut sûrement commencer par la partie Windoze qui doit être
installée dans la première partition amorçable, ensuite on y va
en Linux.
IMPORTANT : s'assurer d'avoir les disquettes amorçable des deux
systèmes d'exploitation!
Bonne chance! Et bien de la patience...
p.s. je crois qu'un utilitaire comme Partition Magic permet de
copier des partitions, est-ce que je me trompe?