Quote:
Originally Posted by JT 1980
Have a machine that runs qnx software operating system on a compact flash card. Would like to duplicate the flash card so I have a backup operating system.
When I try doing this and use the backup flash card it comes up with "Boot Error:no modules in image, check build file"
Any ideas how to make a successful backup copy of my operating system to another compact flash.
Thanks in advance
|
Are you booting Linux? Does your Linux recognize the card when you insert it?
Try
Clear the terminal screen, then insert the card. Are you getting something like this:
Code:
[ 9617.051527] usb 1-3: new high-speed USB device number 4 using xhci_hcd
[ 9617.235836] usb 1-3: New USB device found, idVendor=08ec, idProduct=0008, bcdDevice= 1.00
[ 9617.235843] usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 9617.235846] usb 1-3: Product: Store 'n' Go
[ 9617.235849] usb 1-3: Manufacturer: Verbatim
[ 9617.235852] usb 1-3: SerialNumber: 08F09A6010C098FF
[ 9617.237499] usb-storage 1-3:1.0: USB Mass Storage device detected
[ 9617.237912] scsi host6: usb-storage 1-3:1.0
[ 9618.262159] scsi 6:0:0:0: Direct-Access VBTM Store 'n' Go 5.00 PQ: 0 ANSI: 0 CCS
[ 9618.475900] sd 6:0:0:0: [sdd] 2013184 512-byte logical blocks: (1.03 GB/983 MiB)
[ 9618.476087] sd 6:0:0:0: [sdd] Write Protect is off
[ 9618.476092] sd 6:0:0:0: [sdd] Mode Sense: 23 00 00 00
[ 9618.476261] sd 6:0:0:0: [sdd] No Caching mode page found
[ 9618.476269] sd 6:0:0:0: [sdd] Assuming drive cache: write through
[ 9618.533443] sdd: sdd1 sdd2
[ 9618.535939] sd 6:0:0:0: [sdd] Attached SCSI removable disk
Just an example with a regular USB stick.
In this case, the stick is recognized as /dev/
sdd and I could copy it with dd:
Code:
dd if=/dev/sdd of=backup.img
Might take a long time before you get your prompt back.