Omega Owners Forum

Please login or register.

Login with username, password and session length
Advanced search  

News:

Welcome to OOF

Pages: [1]   Go Down

Author Topic: Computing question for you experts :)  (Read 1194 times)

0 Members and 1 Guest are viewing this topic.

Entwood

  • Omega Queen
  • *****
  • Offline Offline
  • Gender: Male
  • North Wiltshire
  • Posts: 19566
  • My Old 3.2 V6 Elite (LPG)
    • Audi A6 Allroad 3.0 DTI
    • View Profile
Computing question for you experts :)
« on: 23 March 2010, 21:29:57 »

I have 2 harddrives, both partitioned, giving a total of 4 drives on the system: C - OS & Programmes, D - Data & Documents, E - Music, F - Movies.

I have one USB external hard drive, also partitioned into 4 to correspond with the system.

I back-up D, E, F, using SyncToy ... which is extremely simple.

I want to be able to back-up the OS & programmes as an image so I can easily re-install in the event of a problem.

The problem is ... the motherboard is oldish, and the USB drive is not "seen" until an OS is loaded, so my attempts to use Ghost (2002 version) fail.

I have a bootable CD of Ubuntu and the USB is seen from that, but attempting to put the saved image on to a windows partition from Ubuntu is just not happening.

Is there, to your knowledge, a way of booting to a windows type CD/floppy OS that will "see" the USB drive with an image I can then write to my "C" drive and then just boot straight to it ??

If that makes any sense to anyone !!!  ( I know what I want to do .. just hope I've explained it !!!  )

Thanks  :)
Logged

Mr Skrunts

  • Get A Life!!
  • *****
  • Offline Offline
  • Gender: Male
  • Skruntie Land.
  • Posts: 25677
  • 3.O Elite Saloon with all the toys,
    • 2003 CD 2.2 Auto
    • View Profile
Re: Computing question for you experts :)
« Reply #1 on: 23 March 2010, 21:38:06 »

Can you set the bios to boot from USB.  Not common on some boards but worth a mention.
Logged
Ask yourself :  " WHY do I believe in what I believe?"

Remember that my opinions expressed here are not representative of the opinions of other members on the OOF Forum.

Mr Hagon

  • Intermediate Member
  • ***
  • Offline Offline
  • Gender: Male
  • South West London
  • Posts: 398
  • RWD and V6; the only way to travel!
    • View Profile
Re: Computing question for you experts :)
« Reply #2 on: 23 March 2010, 21:51:39 »

If you're using Windows you should be able to use the native ntbackup tool to do a system state backup.

From the run command use "ntbackup" and choose the Advanced mode and select the Automated System Recovery Wizard...that's if you're using Windows XP...
Logged
Vauxhall Omega Elite 3.2 Estate (Mar '02) in Star Silver.

Entwood

  • Omega Queen
  • *****
  • Offline Offline
  • Gender: Male
  • North Wiltshire
  • Posts: 19566
  • My Old 3.2 V6 Elite (LPG)
    • Audi A6 Allroad 3.0 DTI
    • View Profile
Re: Computing question for you experts :)
« Reply #3 on: 23 March 2010, 22:05:02 »

Thanks to both ...  but as said .. the USB ports are NOT seen until the OS is loaded .. so neither option works ...

Skruntie - Boot to USB does not exist

Mr Hagon - ASR asks where the backup is .. then refuses to "see" the USB hard drive .. :(
Logged

Andy H

  • Omega Lord
  • *****
  • Offline Offline
  • Gender: Male
  • Auckland
  • Posts: 5533
    • Mazda MPV
    • View Profile
Re: Computing question for you experts :)
« Reply #4 on: 23 March 2010, 22:13:10 »

Using the linux command line I have dumped the whole of a partition to an image file. It was a year or more ago though & I need to search for how I did it...

It was probably:
cp /dev/sda1 imagefilename

Moving the image back to a disk partition would presumably be:
cp imagefilename /dev/sda1
Logged
"Deja Moo - The feeling that you've heard this bull somewhere before."

Kevin Wood

  • Global Moderator
  • *****
  • Offline Offline
  • Gender: Male
  • Alton, Hampshire
  • Posts: 36417
    • Jaguar XE 25t, Westfield
    • View Profile
Re: Computing question for you experts :)
« Reply #5 on: 23 March 2010, 22:50:38 »

Quote
Using the linux command line I have dumped the whole of a partition to an image file. It was a year or more ago though & I need to search for how I did it...

It was probably:
cp /dev/sda1 imagefilename

Moving the image back to a disk partition would presumably be:
cp imagefilename /dev/sda1

Even better, if it's an NTFS partition, use ntfsclone. This will generate an image excluding sparse areas of the disk so it's only as large as the data actually stored on the disk.

Something like the following will image an NTFS volume and zip it up:

Code: [Select]
ntfsclone --save-image -o - /dev/hda1 | gzip -c > backup.img.gz
It's also useful to save the MBR in case the disk becomes unbootable, although it can be recovered using a windows CD without too much trouble:

Code: [Select]
dd if=/dev/hda of=mbr.img bs=512 count=1
If you are copying directly from block devices it's better to use dd which understands their structure as opposed to cp.

Kevin
Logged
Tech2 services currently available. See TheBoy's price list: http://theboy.omegaowners.com/

Chris_H

  • Omega Knight
  • *****
  • Offline Offline
  • Gender: Male
  • E London/Essex UK
  • Posts: 1716
    • Jag XF Portfolio S 3.0D
    • View Profile
Re: Computing question for you experts :)
« Reply #6 on: 23 March 2010, 22:55:03 »

Another possibility (I think) is to make the other HDD bootable and change the boot order to get off your C: drive to free it for backing up.
Logged
First Vauxhall - PABX Cresta; Previous, previous Vauxhall - 3.0 12v Senator CD; Previous Vauxhall Omega Elite 3.0V6 Saloon Auto

Entwood

  • Omega Queen
  • *****
  • Offline Offline
  • Gender: Male
  • North Wiltshire
  • Posts: 19566
  • My Old 3.2 V6 Elite (LPG)
    • Audi A6 Allroad 3.0 DTI
    • View Profile
Re: Computing question for you experts :)
« Reply #7 on: 23 March 2010, 22:55:30 »

Kevin ... its a Genius you are ... I'll be trying that tomorrow  :)

many thanks

Nige
« Last Edit: 23 March 2010, 22:56:05 by entwood »
Logged

Kevin Wood

  • Global Moderator
  • *****
  • Offline Offline
  • Gender: Male
  • Alton, Hampshire
  • Posts: 36417
    • Jaguar XE 25t, Westfield
    • View Profile
Re: Computing question for you experts :)
« Reply #8 on: 23 March 2010, 23:03:12 »

Quote
Kevin ... its a Genius you are ... I'll be trying that tomorrow  :)

many thanks

Nige

No.  Just a geek. :-[

It's worth remembering that if the target file system has a limited file size, you might have to split the output file into (e.g.) 2G / 4G chunks.

Kevin
Logged
Tech2 services currently available. See TheBoy's price list: http://theboy.omegaowners.com/

cem_devecioglu

  • Guest
Re: Computing question for you experts :)
« Reply #9 on: 23 March 2010, 23:04:52 »

Hi, hoping these links will help
some alternative solutions in them :y

http://www.bootdisk.com/usb.htm

http://www.bootdisk.com/pendrive.htm


this page may be useful later..

http://www.hiren.info/pages/bootcd
« Last Edit: 23 March 2010, 23:12:03 by cem_devecioglu »
Logged

cem_devecioglu

  • Guest
Logged

dbug

  • Omega Queen
  • *****
  • Offline Offline
  • Gender: Male
  • Northants
  • Posts: 14279
  • Dont knock Linux!
    • Jaguar XJ 5.0V8 Portfolio
    • View Profile
    • Dbug IT Services
Re: Computing question for you experts :)
« Reply #11 on: 24 March 2010, 02:38:26 »

Use a BartPE boot disk - http://www.nu2.nu/pebuilder/
Logged
1972 Ferrari Dino, 1967 Triumph TR4A, Mondeo 2.0TDCi Estate, Jaguar XJ 5.0V8 Portfolio

eddie

  • Intermediate Member
  • ***
  • Offline Offline
  • Gender: Male
  • Cardiff
  • Posts: 352
    • View Profile
Re: Computing question for you experts :)
« Reply #12 on: 24 March 2010, 05:48:42 »

Logged

Kevin Wood

  • Global Moderator
  • *****
  • Offline Offline
  • Gender: Male
  • Alton, Hampshire
  • Posts: 36417
    • Jaguar XE 25t, Westfield
    • View Profile
Re: Computing question for you experts :)
« Reply #13 on: 24 March 2010, 09:47:31 »

Quote
Another alternative...

http://distrowatch.com/table.php?distribution=systemrescue

eddie

I've used this in the past too and I think it has everything you'll be likely to need. Some nice GUIs so you don't have to resort to the command line too. :y

Kevin
Logged
Tech2 services currently available. See TheBoy's price list: http://theboy.omegaowners.com/

Entwood

  • Omega Queen
  • *****
  • Offline Offline
  • Gender: Male
  • North Wiltshire
  • Posts: 19566
  • My Old 3.2 V6 Elite (LPG)
    • Audi A6 Allroad 3.0 DTI
    • View Profile
Re: Computing question for you experts :)
« Reply #14 on: 24 March 2010, 19:37:27 »

Many thanks for all the ideas .. been "playing" most of the day ... :)

Seems the ntfsclone programmes, and similar linux based CD bootable ones only work on the exact original hard disk, due to the "start point".

Others that allow the system to "see" the usb drive won't then alow you to write a "bootable" copy to the hard drive .. they will only copy files across.

The answer it seems was very simple ... although my version of Ghost (2002) would not see the USB drives .. it seems the latest version (15) does .. so acquired a copy of that and tried it..

Success ... using a Ghost image, and the bootable recovery CD, I was able to "restore" the c drive to another hard drive ..   :y :y

Might not be the fastest .. takes just under an hour to make the backup, and just over an hour to do a "recover" .. but it's a darn sight faster than a re-install then install, and then configure, all the programmes !!!

Thanks again for all the ideas ..  :y :y :y
Logged
Pages: [1]   Go Up
 

Page created in 0.016 seconds with 16 queries.