How to "ufsdump" more than one Solaris 8 fils systems to tape

Ask a Question related to Linux / Unix Administration, Design and Development.

  1. #1

    Default Re: How to "ufsdump" more than one Solaris 8 fils systems to tape

    In article <40F3F492.2000101@myrealbox.com>, K7MEM <k7mem@myrealbox.com> writes:
    ....
    >
    > > mt -f /dev/rmt/0m rewind
    ....

    is "doppelt gemoppelt", as we say in Germany.

    mt -f /dev/rmt/0mn rewind

    will only one time rewind.

    Of course most tapes reply immediate "ready" at the 2nd rewind
    command issued by the /dev/rmt/0m driver.

    Another useful command is
    mt -f /dev/rmt/0mn status
    and some tapes can even correctly handle
    mt -f /dev/rmt/0mn bsf 1
    Can save you a "rewind" and "fsf" in some cases.

    --
    Michael Tosch
    IT Specialist
    HP Managed Services Germany
    Phone: +49 2407 575 313
    Mail: michael.tosch:hp.com


    Michael Tosch Guest

  2. Similar Questions and Discussions

    1. Second "cfusion -start default" process launchesoccasonally on solaris
      Normally, I see this in a process listing UID PID PPID C STIME TTY TIME CMD nobody 1357 1 0 15:44:29 pts/2 0:00...
    2. CFINPUT type="radio" w/ "value" requires "label"
      On a Flash form, when you specify type='radio' and value='whatever', the value of the 'value' attribute will be displayed as a label if no 'label'...
    3. rsync for Solaris 8: "opendir server: Permission denied"
      Hi, I'm testing rsync for Solaris 8. Basic config of /etc/rsyncd.conf to sync files from one host to other, it fails with next message: ...
    4. "Start" "Program" "Menu" list is empty
      For what ever reason my list of installed programs in my "Start" "Programs" menu is empty. Anyone know how to restore the list. Thanks for your...
    5. Restoring system from a "DUMP" tape
      Gang, A guy who used to work for us backed up the system drive using the dump command. He is now gone and the system drive has crashed. How do I...
  3. #2

    Default Re: How to "ufsdump" more than one Solaris 8 fils systems to tape

    >
    > To then recover these dumps with the "ufsrestore" command you would
    > again use the "mt" command. This time to position yourself to the
    > correct position on the tape. For example, to recover the data from
    > the "/local" partition, /dev/rdsk/c0t1d0s5, you might use the following
    > commands:
    >
    > > cd /tmp_local
    > > mt -f /dev/rmt/0m rewind
    > > mt -f /dev/rmt/0mn fsr 4
    > > ufsrestore xf /dev/rmt/0mn
    >
    > As with everything, read the man page for "mt", "ufsdump", "ufsrestore",
    > and "installboot".
    By the way, there is no need to use mt to move to the position on
    tape, ufsrestore has the s option that will jump to the one you want.
    ufsrestore xfs /dev/rmt/0 3
    will restore the 3rd image on tape.
    Nic.
    Nic 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