<?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: Changing device names in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/changing-device-names/m-p/2516944#M870792</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;You can just create a link:&lt;BR /&gt;&lt;BR /&gt;ln /dev/rmt/2m /dev/rmt/1m&lt;BR /&gt;&lt;BR /&gt;and it works&lt;BR /&gt;&lt;BR /&gt;But should remember, that 1 and 2 have their meaning.</description>
    <pubDate>Fri, 13 Apr 2001 15:02:10 GMT</pubDate>
    <dc:creator>Wieslaw Krajewski</dc:creator>
    <dc:date>2001-04-13T15:02:10Z</dc:date>
    <item>
      <title>Changing device names</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/changing-device-names/m-p/2516942#M870788</link>
      <description>I need to change a tape drive device name from /dev/rmt/2m to /dev/rmt/1m. How do I do this?</description>
      <pubDate>Fri, 13 Apr 2001 14:44:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/changing-device-names/m-p/2516942#M870788</guid>
      <dc:creator>Glenn Mitchell_4</dc:creator>
      <dc:date>2001-04-13T14:44:18Z</dc:date>
    </item>
    <item>
      <title>Re: Changing device names</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/changing-device-names/m-p/2516943#M870790</link>
      <description>Hello Glenn,&lt;BR /&gt;&lt;BR /&gt;you can give devicefiles any names you want as long as you stay in the HPUX convention.&lt;BR /&gt;&lt;BR /&gt;You delete the existing device file with the rm command and create a new one with the mknod command.&lt;BR /&gt;&lt;BR /&gt;Make sure that you keep a copy of the old file in a different dir to be on the safe side.&lt;BR /&gt;&lt;BR /&gt;Check the manpage for mknod for the complete syntax.&lt;BR /&gt;&lt;BR /&gt;Steffi Jones</description>
      <pubDate>Fri, 13 Apr 2001 15:00:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/changing-device-names/m-p/2516943#M870790</guid>
      <dc:creator>Steffi Jones_1</dc:creator>
      <dc:date>2001-04-13T15:00:13Z</dc:date>
    </item>
    <item>
      <title>Re: Changing device names</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/changing-device-names/m-p/2516944#M870792</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;You can just create a link:&lt;BR /&gt;&lt;BR /&gt;ln /dev/rmt/2m /dev/rmt/1m&lt;BR /&gt;&lt;BR /&gt;and it works&lt;BR /&gt;&lt;BR /&gt;But should remember, that 1 and 2 have their meaning.</description>
      <pubDate>Fri, 13 Apr 2001 15:02:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/changing-device-names/m-p/2516944#M870792</guid>
      <dc:creator>Wieslaw Krajewski</dc:creator>
      <dc:date>2001-04-13T15:02:10Z</dc:date>
    </item>
    <item>
      <title>Re: Changing device names</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/changing-device-names/m-p/2516945#M870794</link>
      <description>Use the mknod command to duplicate the device characteristics and change the device name.  This always works for me.  Hope this helps.&lt;BR /&gt;&lt;BR /&gt;Rob &lt;BR /&gt;</description>
      <pubDate>Fri, 13 Apr 2001 15:02:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/changing-device-names/m-p/2516945#M870794</guid>
      <dc:creator>Rob Smith</dc:creator>
      <dc:date>2001-04-13T15:02:58Z</dc:date>
    </item>
    <item>
      <title>Re: Changing device names</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/changing-device-names/m-p/2516946#M870796</link>
      <description>#rmsf -a /dev/rmt/2m&lt;BR /&gt;#mksf -C tape -I 1 /dev/rmt/1m&lt;BR /&gt;&lt;BR /&gt;See man rmsf and mksf&lt;BR /&gt;</description>
      <pubDate>Fri, 13 Apr 2001 15:03:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/changing-device-names/m-p/2516946#M870796</guid>
      <dc:creator>Vincenzo Restuccia</dc:creator>
      <dc:date>2001-04-13T15:03:08Z</dc:date>
    </item>
    <item>
      <title>Re: Changing device names</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/changing-device-names/m-p/2516947#M870798</link>
      <description>The mv command works...&lt;BR /&gt;example (0m to 1m):&lt;BR /&gt;# cd /dev/rmt&lt;BR /&gt;# lssf 0m&lt;BR /&gt;stape card instance 0 SCSI target 0 SCSI LUN 0 at&amp;amp;t best density available at ad&lt;BR /&gt;dress 16/5.0.0 0m&lt;BR /&gt;# mv 0m 1m&lt;BR /&gt;# lssf 1m&lt;BR /&gt;stape card instance 0 SCSI target 0 SCSI LUN 0 at&amp;amp;t best density available at ad&lt;BR /&gt;dress 16/5.0.0 1m&lt;BR /&gt;&lt;BR /&gt;You could also opt to keep the original device file name an create a link to it...&lt;BR /&gt;# cd /dev/rmt&lt;BR /&gt;# ln -s 0m 1m</description>
      <pubDate>Fri, 13 Apr 2001 15:09:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/changing-device-names/m-p/2516947#M870798</guid>
      <dc:creator>Jim Mulshine</dc:creator>
      <dc:date>2001-04-13T15:09:58Z</dc:date>
    </item>
  </channel>
</rss>

