Networker

Re: [Networker] HP-UX tape compression question

2005-02-18 10:57:14
Subject: Re: [Networker] HP-UX tape compression question
From: Davina Treiber <Treiber AT HOTPOP DOT COM>
To: NETWORKER AT LISTSERV.TEMPLE DOT EDU
Date: Fri, 18 Feb 2005 15:57:33 +0000
thomas mattsson wrote:

Have you checked if there are different patch levels for stape on your
HP-UX Storage Nodes?

I did check this but didn't find any pattern. These servers haven't exactly been built in a standard manner, and ironically of the only two that were alike in terms of patch levels , one compressed and the other didn't.

I have finally fixed the problem by R'ing TFM a bit more carefully. It boils down to the parameters that were used on mksf when the devices were first created by persons unknown many moons ago. The crucial part is "-c 1". The lssf command also helps to show the settings of a particular device. I knocked up a little script to fix all the Ultrium devices on a host, and it seems to have done the trick. Here is the script for reference:


#!/bin/ksh
ioscan -fn | grep ULTRIUM | while read g INST g; do
        echo Before:
        ls -l /dev/rmt/${INST}mnb
        lssf /dev/rmt/${INST}mnb
        mksf -v -C tape -I $INST -c 1 -n -u /dev/rmt/${INST}mnb
        echo After:
        ls -l /dev/rmt/${INST}mnb
        lssf /dev/rmt/${INST}mnb
        echo
done

--
Note: To sign off this list, send a "signoff networker" command via email
to listserv AT listserv.temple DOT edu or visit the list's Web site at
http://listserv.temple.edu/archives/networker.html where you can
also view and post messages to the list. Questions regarding this list
should be sent to stan AT temple DOT edu
=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=

<Prev in Thread] Current Thread [Next in Thread>