vBulletin Search Engine Optimization
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| Hi all, I've a laptop with a a CD burbner. I want to make a full system backup on a cd-RW. What software is necessary ? an how to make it ? My system is : Openserver Enterprise 5.0.6 + RS5.0.6a. I'm a newbee in Unix cd burning ! ! ! On my servers I make the full system backup with a cpio on a dat. Thank you in advance for your answers. -- Andre Georgel Pour répondre et obtenir l'adresse Email : Email : http://marreduspam.com/ade0b300 Web Site : http://materiels.trans.free.fr "La perfection n'est pas lorsqu'il n'y a plus rien à ajouter, mais lorsque qu'il n'y a plus rien à enlever." "Perfection is not when there is nothing to add, but when there is nothing to remove." (A. de Saint Exupery) |
| |||
| André Georgel typed (on Sat, Nov 27, 2004 at 07:52:46AM +0100): | Hi all, | | I've a laptop with a a CD burbner. | | I want to make a full system backup on a cd-RW. | | What software is necessary ? an how to make it ? | | My system is : | Openserver Enterprise 5.0.6 + RS5.0.6a. Use Joerg Schilling's cdrecord to burn CD's under OSR 5, BUT: you cannot fit your server's files on a CD-ROM disc, it just is too small. | I'm a newbee in Unix cd burning ! ! ! | | On my servers I make the full system backup with a cpio on a dat. Well, continue to use a DAT, but use LoneTar or BackupEDGE, not cpio. -- JP |
| |||
| First of all, why would you want to do a system backup of whats on a laptop? Surely you would be better to just backup the essential files you need. But if you must try. The command to do a full system backup to CD would go like:- find / -print | cpio -ovcB > /dev/cd0 Hope this helps Matthew |
| |||
| "André Georgel" wrote: > > Hi all, > > I've a laptop with a a CD burbner. > > I want to make a full system backup on a cd-RW. > > What software is necessary ? an how to make it ? > > My system is : > Openserver Enterprise 5.0.6 + RS5.0.6a. > > I'm a newbee in Unix cd burning ! ! ! > Andre, You need to have a lot of free space on your file system to do what you want with cpio. 1) run a find script to create a list of files to be backed up. 2) cat the files to cpio to create an cpio archive of the files. 3) If necessary, compress the archive to get it below the 700M that you can write to a CD. 4) run mkisofs of the directory holding the cpio archive to create the CD image. 5) run cdrecord to write the ISOF file to the CD. Other considerations: You need to install enhanced WD driver on 5.0.6 to enable CD record to write to ATAPI CD burners. You need ot install CD record from Skunkware I have found the following commands to work on 5.0.6 mkisofs -V "SCO 5.0.6 root 07.11.03" -b cdboot.img -R -J /app1/cd3 > /app1/506root.isofs cdrecord -v -v fs=6m blank=fast speed=4 dev=5,0 /app1/505root.isofs | tee /tmp/logcd 2>&1 /app1/cd3 is the directory holding the ISO image of the root file system and the bootable cdboot.img. cdboot.img is my 2.88M Emergency boot image created with a modified mkdevfd script to write the image to a RAM disk file system and then copied to the cdboot.img file. Search groups.google.com on "Bootable Recovery CD." After booting the image, mount the CD and use zcat to uncompress the cpio backup: mount /dev/cd0 /mnt1 mount /dev/hd0root /mnt cd /mnt zcat /mnt1/506root.isofs | cpio -icvmd > On my servers I make the full system backup with a cpio on a dat. > > Thank you in advance for your answers. > > -- > Andre Georgel > > Pour répondre et obtenir l'adresse Email : > Email : http://marreduspam.com/ade0b300 > Web Site : http://materiels.trans.free.fr > > "La perfection n'est pas lorsqu'il n'y a plus rien à ajouter, mais > lorsque qu'il n'y a plus rien à enlever." > "Perfection is not when there is nothing to add, but when there is > nothing to remove." > > (A. de Saint Exupery) -- Steve Fabac S.M. Fabac & Associates 816/765-1670 |
| |||
| Le Sat, 27 Nov 2004 16:15:10 GMT, "Steve M. Fabac, Jr." <smfabac@att.net> a écrit : >You need to have a lot of free space on your file system to >do what you want with cpio. > >1) run a find script to create a list of files to be backed > up. > >2) cat the files to cpio to create an cpio archive of the files. > >3) If necessary, compress the archive to get it below the > 700M that you can write to a CD. > >4) run mkisofs of the directory holding the cpio archive to > create the CD image. > >5) run cdrecord to write the ISOF file to the CD. > >Other considerations: You need to install enhanced WD driver >on 5.0.6 to enable CD record to write to ATAPI CD burners. > >You need ot install CD record from Skunkware > >I have found the following commands to work on 5.0.6 > >mkisofs -V "SCO 5.0.6 root 07.11.03" -b cdboot.img -R -J /app1/cd3 > /app1/506root.isofs >cdrecord -v -v fs=6m blank=fast speed=4 dev=5,0 /app1/505root.isofs | tee /tmp/logcd 2>&1 > > >/app1/cd3 is the directory holding the ISO image of the root file system >and the bootable cdboot.img. > >cdboot.img is my 2.88M Emergency boot image created with a modified mkdev fd >script to write the image to a RAM disk file system and then copied to >the cdboot.img file. Search groups.google.com on "Bootable Recovery CD." > >After booting the image, mount the CD and use zcat to uncompress the >cpio backup: > >mount /dev/cd0 /mnt1 >mount /dev/hd0root /mnt >cd /mnt >zcat /mnt1/506root.isofs | cpio -icvmd > Thank you for the help, but where can I find mkisofs ? -- Andre Georgel Pour répondre et obtenir l'adresse Email : Email : http://marreduspam.com/ade0b300 Web Site : http://materiels.trans.free.fr "La perfection n'est pas lorsqu'il n'y a plus rien à ajouter, mais lorsque qu'il n'y a plus rien à enlever." "Perfection is not when there is nothing to add, but when there is nothing to remove." (A. de Saint Exupery) |
| |||
| Le 27 Nov 2004 09:40:24 -0500, Jean-Pierre Radley <jpr@jpr.com> a écrit : >André Georgel typed (on Sat, Nov 27, 2004 at 07:52:46AM +0100): >| Hi all, >| >| I've a laptop with a a CD burbner. >| >| I want to make a full system backup on a cd-RW. >| >| What software is necessary ? an how to make it ? >| >| My system is : >| Openserver Enterprise 5.0.6 + RS5.0.6a. > >Use Joerg Schilling's cdrecord to burn CD's under OSR 5, BUT: you cannot >fit your server's files on a CD-ROM disc, it just is too small. > Hello JP, a df -ikv on my laptop "telll me" /dev/root = 406263 used blk, >| I'm a newbee in Unix cd burning ! ! ! >| >| On my servers I make the full system backup with a cpio on a dat. > >Well, continue to use a DAT, but use LoneTar or BackupEDGE, not cpio. Thank you for the "conseil" i've lost the english word ! ! ! -- Andre Georgel Pour répondre et obtenir l'adresse Email : Email : http://marreduspam.com/ade0b300 Web Site : http://materiels.trans.free.fr "La perfection n'est pas lorsqu'il n'y a plus rien à ajouter, mais lorsque qu'il n'y a plus rien à enlever." "Perfection is not when there is nothing to add, but when there is nothing to remove." (A. de Saint Exupery) |
| |||
| André Georgel typed (on Sun, Nov 28, 2004 at 07:12:42AM +0100): | Le 27 Nov 2004 09:40:24 -0500, Jean-Pierre Radley <jpr@jpr.com> a écrit | : | | >André Georgel typed (on Sat, Nov 27, 2004 at 07:52:46AM +0100): | >| Hi all, | >| | >| I've a laptop with a a CD burbner. | >| | >| I want to make a full system backup on a cd-RW. | >| | >| What software is necessary ? an how to make it ? | >| | >| My system is : | >| Openserver Enterprise 5.0.6 + RS5.0.6a. | > | >Use Joerg Schilling's cdrecord to burn CD's under OSR 5, BUT: you cannot | >fit your server's files on a CD-ROM disc, it just is too small. | > | | Hello JP, a df -ikv on my laptop "telll me" /dev/root = 406263 used blk, OK, then you have very little on there besides the OS. | >| I'm a newbee in Unix cd burning ! ! ! | >| | >| On my servers I make the full system backup with a cpio on a dat. | > | >Well, continue to use a DAT, but use LoneTar or BackupEDGE, not cpio. | | Thank you for the "conseil" i've lost the english word ! ! ! Merci pour "your advice". -- JP |
| |||
| Mattymumps typed (on Sat, Nov 27, 2004 at 03:04:50PM +0000): | First of all, why would you want to do a system backup of whats on a laptop? | Surely you would be better to just backup the essential files you need. | But if you must try. The command to do a full system backup to CD would go | like:- | find / -print | cpio -ovcB > /dev/cd0 | | Hope this helps Well it helps if that command works for you. Does it really work? -- JP |
| ||||
| André Georgel typed (on Sun, Nov 28, 2004 at 07:01:40AM +0100): | Le Sat, 27 Nov 2004 16:15:10 GMT, "Steve M. Fabac, Jr." | <smfabac@att.net> a écrit : | | > | Thank you for the help, but where can I find mkisofs ? It's part of Schilling's cdrtools suite. I have the last stable release source code on ftp.jpr.com. -- JP |