Transfering from SCSI to IDE ?

Ask a Question related to FreeBSD, Design and Development.

  1. #1

    Default Transfering from SCSI to IDE ?

    Dear Sir :

    I have a FreeBSD system with a squid cache installed on it on my 17 GB SCSI drive.
    Recently I get an image of it by Norton GHOST on a 80GB IDE drive.
    Transferring was successful but when system on new IDE disk booted , after pimary freeBSD boot menu boot proccess continued till an error occured in mounting file system and disk; and then system ask me to mount root and a mount> prompt appeared.
    Messages appears on screen are as below:


    Mounting root from ufs:/dev/da0s1a
    setrootbyname failed
    ffs_mountroot: can't find rootvp
    Rootmount failed:6
    mount root>
    mount root> ?
    List of GEOMD Managed disk devices:
    ad1s1f ad1s1e ad1s1d ad1s1c ad1s1b ad1s1a ad1s1 acd0 ad1 fd0



    Now please tell me what must I do ;and refer me to a compelete step by step guide in mounting partition of this IDE disk (which the image of a SCSI disk is on it.)and no change perform to partitions for properly working of squid cache.


    Thank you : Dr.A.Boreiri



    ---------------------------------
    ALL-NEW Yahoo! Messenger - all new features - even more fun!
    ali boreiri Guest

  2. Similar Questions and Discussions

    1. need help transfering to web page
      i need help transfering a website i created on dreamweaver to a piczo site. i have tried copying the code over but that does not seem to work plz...
    2. Transfering License from PC to Mac.
      I have Contribute for my PC, but I am changing to a Mac. I am having problems switching my Contribute license!! Does anyone know how this can be...
    3. - Transfering text from PS to AI
      Using PS7 and AI10... How do I transfer text in PS to AI without rasterizing? What are my options, if any? Thanks!
    4. Lilo: strange warnings when scsi boot + ide-scsi emulation
      I am using Lilo to boot from a SCSI drive. My setup is as follows: sda: scsi main drive, Boot from MBR (/dev/sda), swap in /dev/sda1 single...
    5. Any way to backup to a Sony SDK-5200 Tape drive(SCSI) using a Xircom USB-SCSI converter in OSX?
      Thanks. I'd like to not have to buy more hardware. I would backup with Retrospect. Jack Stroh
  3. #2

    Default Transfering from SCSI to IDE ?

    Dear Sir :

    I have a FreeBSD system with a squid cache installed on it on my 17 GB SCSI drive.
    Recently I get an image of it by Norton GHOST on a 80GB IDE drive.
    Transferring was successful but when system on new IDE disk booted , after pimary freeBSD boot menu boot proccess continued till an error occured in mounting file system and disk; and then system ask me to mount root and a mount> prompt appeared.
    Messages appears on screen are as below:


    Mounting root from ufs:/dev/da0s1a
    setrootbyname failed
    ffs_mountroot: can't find rootvp
    Rootmount failed:6
    mount root>
    mount root> ?
    List of GEOMD Managed disk devices:
    ad1s1f ad1s1e ad1s1d ad1s1c ad1s1b ad1s1a ad1s1 acd0 ad1 fd0



    Now please tell me what must I do ;and refer me to a compelete step by step guide in mounting partition of this IDE disk (which the image of a SCSI disk is on it.)and no change perform to partitions for properly working of squid cache.


    Thank you : Dr.A.Boreiri




    ---------------------------------
    ALL-NEW Yahoo! Messenger - all new features - even more fun!
    ali boreiri Guest

  4. #3

    Default Re: Transfering from SCSI to IDE ?

    On Wed, 23 Feb 2005 18:12:29 +0000 (GMT), ali boreiri
    <dr_boreiri@yahoo.co.uk> wrote:
    > Dear Sir :
    >
    > I have a FreeBSD system with a squid cache installed on it on my 17 GB SCSI drive.
    > Recently I get an image of it by Norton GHOST on a 80GB IDE drive.
    > Transferring was successful but when system on new IDE disk booted , after pimary freeBSD boot menu boot proccess continued till an error occured in mounting file system and disk; and then system ask me to mount root and a mount> prompt appeared.
    > Messages appears on screen are as below:
    >
    > Mounting root from ufs:/dev/da0s1a
    > setrootbyname failed
    > ffs_mountroot: can't find rootvp
    > Rootmount failed:6
    > mount root>
    > mount root> ?
    > List of GEOMD Managed disk devices:
    > ad1s1f ad1s1e ad1s1d ad1s1c ad1s1b ad1s1a ad1s1 acd0 ad1 fd0
    >
    > Now please tell me what must I do ;and refer me to a compelete step by step guide in mounting partition of this IDE disk (which the image of a SCSI disk is on it.)and no change perform to partitions for properly working of squid cache.
    >
    > Thank you : Dr.A.Boreiri
    >
    Maybe you should forget about the Ghost shortcut, and not ignore 30
    years of Unix backup history ;)

    Use "dump" to make a backup of your SCSI disk. Do a minimal FBSD
    install on your IDE disk, using a similar partition and disklabel
    scheme as the FBSD install on the SCSI disk.

    Now use "restore" to transfer the backups to the IDE disk.

    Please note that "dump" and "restore" work on complete filesystems.

    =Adriaan=
    J65nko BSD Guest

  5. #4

    Default Re: Transfering from SCSI to IDE ?

    On Thu, Feb 24, 2005 at 09:50:40PM +0100, J65nko BSD wrote:
    >
    > Maybe you should forget about the Ghost shortcut, and not ignore 30
    > years of Unix backup history ;)
    I agree that Ghost is the wrong tool. IIRC there is a *BSD or Linux
    Ghost-workalike standalone bootable CDROM. Still don't believe I'd use
    that myself when everything needed is already under my fingertips.
    > Use "dump" to make a backup of your SCSI disk. Do a minimal FBSD
    > install on your IDE disk, using a similar partition and disklabel
    > scheme as the FBSD install on the SCSI disk.
    >
    > Now use "restore" to transfer the backups to the IDE disk.
    Is easier to use dump piped into restore. Write directly to the target
    in the final form.
    > Please note that "dump" and "restore" work on complete filesystems.
    Only dump works on the entire fs. Restore writes files. You can
    selectively restore. Can also restore to larger or smaller filesystems,
    directories, new or old.

    While there is great value in having an exact image of a working system
    for quick restore, there is also great value in documenting one's
    configuration then "clean house" periodically to build a clean system
    and prove one's documentation.

    I like to keep a list of important and customized files such as
    /etc/hosts, then use this list as an argument to tar for selective
    backups. "ls -1d /var/db/pkg" provides a list of installed ports. Then
    if/when time comes to build a new machine the tar archive and list of
    installed ports is 99.9% of the sweat.

    --
    David Kelly N4HHE, [email]dkelly@HiWAAY.net[/email]
    ================================================== ======================
    Whom computers would destroy, they must first drive mad.
    David Kelly Guest

  6. #5

    Default Re: Transfering from SCSI to IDE ?

    On Wed, 23 Feb 2005, ali boreiri wrote:
    > I have a FreeBSD system with a squid cache installed on it on my 17 GB
    > SCSI drive. Recently I get an image of it by Norton GHOST on a 80GB
    > IDE drive. Transferring was successful but when system on new IDE disk
    > booted , after pimary freeBSD boot menu boot proccess continued till
    > an error occured in mounting file system and disk; and then system ask
    > me to mount root and a mount> prompt appeared. Messages appears on
    > screen are as below:
    >
    >
    > Mounting root from ufs:/dev/da0s1a
    > setrootbyname failed
    > ffs_mountroot: can't find rootvp
    > Rootmount failed:6
    > mount root>
    > mount root> ?
    > List of GEOMD Managed disk devices:
    > ad1s1f ad1s1e ad1s1d ad1s1c ad1s1b ad1s1a ad1s1 acd0 ad1 fd0
    Your old SCSI disk was da0. Apparently your new IDE disk is ad1. At
    the very least, you need to manually mount the / partition and edit the
    /etc/fstab file to reflect this. A "live cd" like FreeSBIE
    ([url]http://www/freesbie.org[/url]) may help you mount that partition and edit the
    file.
    > Now please tell me what must I do ;and refer me to a compelete step by
    > step guide in mounting partition of this IDE disk (which the image of
    > a SCSI disk is on it.)and no change perform to partitions for properly
    > working of squid cache.
    Your applications should all refer to files, not partitions. So with
    the /etc/fstab file fixed, everything should work again. You may have
    other hardware that will require changes to configuration files; a
    different network board, for example.

    Incidentally, this same problem can occur even if you use the "proper"
    backup tools (dump/restore). It's the contents of the fstab file, not
    the way you've transferred it.

    -Warren Block * Rapid City, South Dakota USA
    Warren Block Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139