Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Is it possible to ghost a 4gb scsi hard disk to a ide hard disk?

Status
Not open for further replies.

dino03

Technical User
Feb 25, 2003
11
SG
hello ,
i m quite a new user in Sun Solaris , actualli currently i got this system using Sun Solaris as operating system
the kernal is version 5.51 using a 4 GB SCSI hard drive...
my problem is can i "ghost" or backup all the information into a 4 GB IDE hard drive?

its urgent...hope u guys out there can help mi thanx..alot!!!
 
If both drives have the same geometry then you can use the dd command.

dd if=/dev/rdsk/cXtXd0s2 of=/dev/rdsk/cXtXd0s2 bs=256k

cX= controller # (run format to see this info)
tX= scsi Id ( run format to see this info)
The if is the source disk and the of is the output disk.

You can set up a crontab to run this at a good time.
The disk will be bootable after the dd. You can switch the disk target's id or boot from the second disk. Don't use the normal boot command.

Go to and search for dd a sun system disk.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top