<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: TAR in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/tar/m-p/2625310#M39728</link>
    <description>Hi Scott,&lt;BR /&gt;&lt;BR /&gt;you cannot change the default to /dev/rmt/1m. Seems like the present default /dev/rmt/0m is hardcoded into the program. I remeber there used to be a file /etc/default/tar on some intel version of unix where you can change the default to some other device file.&lt;BR /&gt;&lt;BR /&gt;Hope this helps.&lt;BR /&gt;&lt;BR /&gt;Regds&lt;BR /&gt;</description>
    <pubDate>Tue, 04 Dec 2001 21:39:45 GMT</pubDate>
    <dc:creator>Sanjay_6</dc:creator>
    <dc:date>2001-12-04T21:39:45Z</dc:date>
    <item>
      <title>TAR</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tar/m-p/2625305#M39723</link>
      <description>I am trying to figure out where the definitions are for the default device for tar.  I need to specify /dev/rmt/1m everytime I do a tar as my default device setting is /dev/rmt/0m.  Does anyone know where I can change that?&lt;BR /&gt;&lt;BR /&gt;-Scott</description>
      <pubDate>Tue, 04 Dec 2001 21:27:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tar/m-p/2625305#M39723</guid>
      <dc:creator>Scott McDade</dc:creator>
      <dc:date>2001-12-04T21:27:59Z</dc:date>
    </item>
    <item>
      <title>Re: TAR</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tar/m-p/2625306#M39724</link>
      <description>Hi Scott,&lt;BR /&gt;&lt;BR /&gt;I may be wrong but I don't believe you can change the default location.  You can however use the -f option to specify /dev/rmt/1m.&lt;BR /&gt;&lt;BR /&gt;Darrell</description>
      <pubDate>Tue, 04 Dec 2001 21:30:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tar/m-p/2625306#M39724</guid>
      <dc:creator>Darrell Allen</dc:creator>
      <dc:date>2001-12-04T21:30:21Z</dc:date>
    </item>
    <item>
      <title>Re: TAR</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tar/m-p/2625307#M39725</link>
      <description>If possible, you could change your SCSI ID to 0.&lt;BR /&gt;Eileen&lt;BR /&gt;</description>
      <pubDate>Tue, 04 Dec 2001 21:32:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tar/m-p/2625307#M39725</guid>
      <dc:creator>Eileen Millen</dc:creator>
      <dc:date>2001-12-04T21:32:49Z</dc:date>
    </item>
    <item>
      <title>Re: TAR</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tar/m-p/2625308#M39726</link>
      <description>You would probably have to get source code and recompile the with the new option. Don't believe that their is a "config" file that you can change.  I think there is a gnu tar out there.&lt;BR /&gt;&lt;BR /&gt;Good Luck,&lt;BR /&gt;C</description>
      <pubDate>Tue, 04 Dec 2001 21:34:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tar/m-p/2625308#M39726</guid>
      <dc:creator>Craig Rants</dc:creator>
      <dc:date>2001-12-04T21:34:12Z</dc:date>
    </item>
    <item>
      <title>Re: TAR</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tar/m-p/2625309#M39727</link>
      <description>The default is /dev/rmt/0m and can't be changed so Plan B. Let's change 1m to 0m instead.&lt;BR /&gt;&lt;BR /&gt;1) cd /dev/rmt&lt;BR /&gt;2) ls -l 0m 1m and note the major and minor numbers. Let's suppose that 0m is major 205 minor 0x020000 and 1m is 205/0x030200. Wew simply need to swap those guys.&lt;BR /&gt;&lt;BR /&gt;rm 0m 1m&lt;BR /&gt;mknod 0m c 205 0x030200&lt;BR /&gt;mknod 1m c 205 0x020000&lt;BR /&gt;&lt;BR /&gt;You should also repeat the steps for 0mn,0mnb,0mb.&lt;BR /&gt;&lt;BR /&gt;Remember, the names are for us the numbers are for the box and that's all it cares about.&lt;BR /&gt;&lt;BR /&gt;Clay</description>
      <pubDate>Tue, 04 Dec 2001 21:39:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tar/m-p/2625309#M39727</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2001-12-04T21:39:42Z</dc:date>
    </item>
    <item>
      <title>Re: TAR</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tar/m-p/2625310#M39728</link>
      <description>Hi Scott,&lt;BR /&gt;&lt;BR /&gt;you cannot change the default to /dev/rmt/1m. Seems like the present default /dev/rmt/0m is hardcoded into the program. I remeber there used to be a file /etc/default/tar on some intel version of unix where you can change the default to some other device file.&lt;BR /&gt;&lt;BR /&gt;Hope this helps.&lt;BR /&gt;&lt;BR /&gt;Regds&lt;BR /&gt;</description>
      <pubDate>Tue, 04 Dec 2001 21:39:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tar/m-p/2625310#M39728</guid>
      <dc:creator>Sanjay_6</dc:creator>
      <dc:date>2001-12-04T21:39:45Z</dc:date>
    </item>
    <item>
      <title>Re: TAR</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tar/m-p/2625311#M39729</link>
      <description>Clay:  EWWWWHHH...sounds messy!  I will give it a whirl!&lt;BR /&gt;&lt;BR /&gt;Thanks .... Scott</description>
      <pubDate>Tue, 04 Dec 2001 21:50:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tar/m-p/2625311#M39729</guid>
      <dc:creator>Scott McDade</dc:creator>
      <dc:date>2001-12-04T21:50:50Z</dc:date>
    </item>
    <item>
      <title>Re: TAR</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tar/m-p/2625312#M39730</link>
      <description>Well Clay,&lt;BR /&gt;&lt;BR /&gt;That was a clever method. The end justifies the mean.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;</description>
      <pubDate>Tue, 04 Dec 2001 21:51:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tar/m-p/2625312#M39730</guid>
      <dc:creator>Sanjay_6</dc:creator>
      <dc:date>2001-12-04T21:51:15Z</dc:date>
    </item>
    <item>
      <title>Re: TAR</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tar/m-p/2625313#M39731</link>
      <description>A few ways to do this:&lt;BR /&gt;1.) Change the address scsi id on  the tape drive.&lt;BR /&gt;2.) remove the 0m device file and mknod a new one with the (1) minor # (Sneaky and a little sloppy looking but it works.)&lt;BR /&gt;3.)Uninstall and reinstal the tape driver (stape) The easiest way is with SAM. Run SAM. Go to &lt;BR /&gt;Peripheral Devices, &lt;BR /&gt;Tape Device, &lt;BR /&gt;click on the drive to highlight it. &lt;BR /&gt;Click Actions, &lt;BR /&gt;Remove. &lt;BR /&gt;Follow the instructions. This will require a reboot when the new kernel is genereated. Go back to SAM and do the same thing again substituting &lt;BR /&gt;Add (for remove)&lt;BR /&gt;(This will require a second reboot to load a new kernel, but will install all new device files defaulted to 0M.)&lt;BR /&gt;Good luck.&lt;BR /&gt;Kel</description>
      <pubDate>Tue, 04 Dec 2001 22:07:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tar/m-p/2625313#M39731</guid>
      <dc:creator>Kelli Ward</dc:creator>
      <dc:date>2001-12-04T22:07:39Z</dc:date>
    </item>
  </channel>
</rss>

