<?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: copy a cd's contents to local disk in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/copy-a-cd-s-contents-to-local-disk/m-p/2870476#M98320</link>
    <description>well the ioscan confirms that my device file is c2ticgsva1:/stand&amp;gt; ioscan -kfnCdisk&lt;BR /&gt;Class     I  H/W Path               Driver   S/W State   H/W Type     Descriptio&lt;BR /&gt;n&lt;BR /&gt;================================================================================&lt;BR /&gt;==&lt;BR /&gt;disk      0  0/0/1/1.2.0            sdisk    CLAIMED     DEVICE       HP 18.2GMA&lt;BR /&gt;N3184MC&lt;BR /&gt;                                   /dev/dsk/c1t2d0   /dev/rdsk/c1t2d0&lt;BR /&gt;disk      1  0/0/2/0.2.0            sdisk    CLAIMED     DEVICE       HP 18.2GMA&lt;BR /&gt;N3184MC&lt;BR /&gt;                                   /dev/dsk/c2t2d0   /dev/rdsk/c2t2d0&lt;BR /&gt;disk      2  0/0/2/1.2.0            sdisk    CLAIMED     DEVICE       HP      DV&lt;BR /&gt;D-ROM 3052d0....&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;but when I mount;&lt;BR /&gt;&lt;BR /&gt;# mount /dev/dsk/c2t2d0 /cdrom&lt;BR /&gt;/dev/dsk/c2t2d0: unrecognized file system&lt;BR /&gt;&lt;BR /&gt;I feel pretty dumb... (/cdrom exists)</description>
    <pubDate>Thu, 26 Dec 2002 19:35:19 GMT</pubDate>
    <dc:creator>Tim Killinger</dc:creator>
    <dc:date>2002-12-26T19:35:19Z</dc:date>
    <item>
      <title>copy a cd's contents to local disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/copy-a-cd-s-contents-to-local-disk/m-p/2870470#M98314</link>
      <description>Dummy question, but easy ... I'm a UNIX newbie....:(&lt;BR /&gt;&lt;BR /&gt;what commands do I use to mount a cd then copy it's directory structure to a local disk. I have a 2 cd set.....&lt;BR /&gt;&lt;BR /&gt;Thanks!</description>
      <pubDate>Thu, 26 Dec 2002 18:49:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/copy-a-cd-s-contents-to-local-disk/m-p/2870470#M98314</guid>
      <dc:creator>Tim Killinger</dc:creator>
      <dc:date>2002-12-26T18:49:49Z</dc:date>
    </item>
    <item>
      <title>Re: copy a cd's contents to local disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/copy-a-cd-s-contents-to-local-disk/m-p/2870471#M98315</link>
      <description>Tim,&lt;BR /&gt;&lt;BR /&gt;First, find the device file for you cd drive:&lt;BR /&gt;&lt;BR /&gt;$ ioscan -kfnCdisk&lt;BR /&gt;Class     I  H/W Path      Driver      S/W State   H/W Type     Description&lt;BR /&gt;============================================================================&lt;BR /&gt;disk      0  8/0/19/0.5.0  sdisk       CLAIMED     DEVICE       SEAGATE ST34520WS&lt;BR /&gt;                          /dev/dsk/c1t5d0   /dev/rdsk/c1t5d0&lt;BR /&gt;disk      1  8/0/19/0.6.0  sdisk       CLAIMED     DEVICE       QUANTUM VIKING2-4WS&lt;BR /&gt;                          /dev/dsk/c1t6d0   /dev/rdsk/c1t6d0&lt;BR /&gt;disk      2  8/16/5.2.0    sdisk       CLAIMED     DEVICE       TOSHIBA CD-ROM XM-5701TA&lt;BR /&gt;                          /dev/dsk/c2t2d0   /dev/rdsk/c2t2d0&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Second, insert the disk and issue the mount command:&lt;BR /&gt;&lt;BR /&gt;$ mount /dev/dsk/c2t2d0 /cdrom&lt;BR /&gt;&lt;BR /&gt;(you need to be root)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Third, depending on what's on the cd, you should be able to just cp the files:&lt;BR /&gt;&lt;BR /&gt;cp /cdrom/* /WhereYouWantitToGo&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Hope this helps,&lt;BR /&gt;Pete</description>
      <pubDate>Thu, 26 Dec 2002 18:53:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/copy-a-cd-s-contents-to-local-disk/m-p/2870471#M98315</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2002-12-26T18:53:38Z</dc:date>
    </item>
    <item>
      <title>Re: copy a cd's contents to local disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/copy-a-cd-s-contents-to-local-disk/m-p/2870472#M98316</link>
      <description>Hi Tim,&lt;BR /&gt;&lt;BR /&gt;Depending on the CD format you may need mount options like:&lt;BR /&gt;&lt;BR /&gt;mount -F cdfs -o cdcase /dev/dsk/cxtydz /mnt_point&lt;BR /&gt;&lt;BR /&gt;You'll know if you need them if when you mount w/o them either&lt;BR /&gt;A) ALL filenames are uppercase &amp;amp; they shouldn't be&lt;BR /&gt;B) The filnames are "strange" - have trailing characters that don't look right&lt;BR /&gt;&lt;BR /&gt;Rgds,&lt;BR /&gt;Jeff</description>
      <pubDate>Thu, 26 Dec 2002 18:57:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/copy-a-cd-s-contents-to-local-disk/m-p/2870472#M98316</guid>
      <dc:creator>Jeff Schussele</dc:creator>
      <dc:date>2002-12-26T18:57:54Z</dc:date>
    </item>
    <item>
      <title>Re: copy a cd's contents to local disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/copy-a-cd-s-contents-to-local-disk/m-p/2870473#M98317</link>
      <description>To add to Pete's post:&lt;BR /&gt;&lt;BR /&gt;When you do the copy you probably will want to add the '-Rp' to the cp command.  So it would be:&lt;BR /&gt;&lt;BR /&gt;# cp -Rp /cdrom/* /dir/to/copy/to</description>
      <pubDate>Thu, 26 Dec 2002 18:58:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/copy-a-cd-s-contents-to-local-disk/m-p/2870473#M98317</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2002-12-26T18:58:37Z</dc:date>
    </item>
    <item>
      <title>Re: copy a cd's contents to local disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/copy-a-cd-s-contents-to-local-disk/m-p/2870474#M98318</link>
      <description>Hi Tim&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Copying is simple like you do betwenn any directories but the key is the mounting. For this you need to knwo the device file for the cd , ioscan -fnC disk | grep CD or DVD to get teh device file .&lt;BR /&gt;&lt;BR /&gt;Then mount using&lt;BR /&gt;&lt;BR /&gt;mount -F cdfs -o cdcase /dev/dsk/cxtydz /cdrom&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;then use cp to copy from /cdrom to where you want to copy to .&lt;BR /&gt;&lt;BR /&gt;to contuine for the next cd you need to umoun the first cd and then mount the second cd and repeat the cd process . Inc ase you are making copies for the CD , a better option would be to use the CD burner to amek copies.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Manoj Srivastava</description>
      <pubDate>Thu, 26 Dec 2002 19:14:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/copy-a-cd-s-contents-to-local-disk/m-p/2870474#M98318</guid>
      <dc:creator>MANOJ SRIVASTAVA</dc:creator>
      <dc:date>2002-12-26T19:14:27Z</dc:date>
    </item>
    <item>
      <title>Re: copy a cd's contents to local disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/copy-a-cd-s-contents-to-local-disk/m-p/2870475#M98319</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;In addition to the above replies, since you have a 2-cd set,&lt;BR /&gt;&lt;BR /&gt;1. Mount the first CD. Copy the contents as indicated above.&lt;BR /&gt;2. Unmount the cd. Make sure you are not in that directory. &lt;BR /&gt;&lt;BR /&gt;umount /cdrom&lt;BR /&gt;&lt;BR /&gt;3. Replace CD1 with CD 2. Mount it again. Copy the contents. Unmount and take it out.&lt;BR /&gt;&lt;BR /&gt;If you don't unmount, you cannot chnage the CD.&lt;BR /&gt;&lt;BR /&gt;-Sri</description>
      <pubDate>Thu, 26 Dec 2002 19:17:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/copy-a-cd-s-contents-to-local-disk/m-p/2870475#M98319</guid>
      <dc:creator>Sridhar Bhaskarla</dc:creator>
      <dc:date>2002-12-26T19:17:01Z</dc:date>
    </item>
    <item>
      <title>Re: copy a cd's contents to local disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/copy-a-cd-s-contents-to-local-disk/m-p/2870476#M98320</link>
      <description>well the ioscan confirms that my device file is c2ticgsva1:/stand&amp;gt; ioscan -kfnCdisk&lt;BR /&gt;Class     I  H/W Path               Driver   S/W State   H/W Type     Descriptio&lt;BR /&gt;n&lt;BR /&gt;================================================================================&lt;BR /&gt;==&lt;BR /&gt;disk      0  0/0/1/1.2.0            sdisk    CLAIMED     DEVICE       HP 18.2GMA&lt;BR /&gt;N3184MC&lt;BR /&gt;                                   /dev/dsk/c1t2d0   /dev/rdsk/c1t2d0&lt;BR /&gt;disk      1  0/0/2/0.2.0            sdisk    CLAIMED     DEVICE       HP 18.2GMA&lt;BR /&gt;N3184MC&lt;BR /&gt;                                   /dev/dsk/c2t2d0   /dev/rdsk/c2t2d0&lt;BR /&gt;disk      2  0/0/2/1.2.0            sdisk    CLAIMED     DEVICE       HP      DV&lt;BR /&gt;D-ROM 3052d0....&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;but when I mount;&lt;BR /&gt;&lt;BR /&gt;# mount /dev/dsk/c2t2d0 /cdrom&lt;BR /&gt;/dev/dsk/c2t2d0: unrecognized file system&lt;BR /&gt;&lt;BR /&gt;I feel pretty dumb... (/cdrom exists)</description>
      <pubDate>Thu, 26 Dec 2002 19:35:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/copy-a-cd-s-contents-to-local-disk/m-p/2870476#M98320</guid>
      <dc:creator>Tim Killinger</dc:creator>
      <dc:date>2002-12-26T19:35:19Z</dc:date>
    </item>
    <item>
      <title>Re: copy a cd's contents to local disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/copy-a-cd-s-contents-to-local-disk/m-p/2870477#M98321</link>
      <description>You are trying to mount a hard disk drive.  The device file you want is the one BELOW the line that contains "HP DVD-ROM".&lt;BR /&gt;&lt;BR /&gt;Try that one and you will probably have better luck.</description>
      <pubDate>Thu, 26 Dec 2002 19:39:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/copy-a-cd-s-contents-to-local-disk/m-p/2870477#M98321</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2002-12-26T19:39:18Z</dc:date>
    </item>
    <item>
      <title>Re: copy a cd's contents to local disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/copy-a-cd-s-contents-to-local-disk/m-p/2870478#M98322</link>
      <description>OK, so the device file is c3t2d0....&lt;BR /&gt;&lt;BR /&gt;# ioscan -kfnCdisk&lt;BR /&gt;Class     I  H/W Path               Driver   S/W State   H/W Type     Descriptio&lt;BR /&gt;n&lt;BR /&gt;================================================================================&lt;BR /&gt;==&lt;BR /&gt;disk      0  0/0/1/1.2.0            sdisk    CLAIMED     DEVICE       HP 18.2GMA&lt;BR /&gt;N3184MC&lt;BR /&gt;                                   /dev/dsk/c1t2d0   /dev/rdsk/c1t2d0&lt;BR /&gt;disk      1  0/0/2/0.2.0            sdisk    CLAIMED     DEVICE       HP 18.2GMA&lt;BR /&gt;N3184MC&lt;BR /&gt;                                   /dev/dsk/c2t2d0   /dev/rdsk/c2t2d0&lt;BR /&gt;disk      2  0/0/2/1.2.0            sdisk    CLAIMED     DEVICE       HP      DV&lt;BR /&gt;D-ROM 305&lt;BR /&gt;                                   /dev/dsk/c3t2d0   /dev/rdsk/c3t2d0&lt;BR /&gt;disk      3  0/4/0/0.8.0.110.0.0.0  sdisk    CLAIMED     DEVICE       HP      A6&lt;BR /&gt;188A&lt;BR /&gt;                                   /dev/dsk/c4t0d0   /dev/rdsk/c4t0d0&lt;BR /&gt;disk      5  0/4/0/0.8.0.110.0.0.1  sdisk    CLAIMED     DEVICE       HP      A6&lt;BR /&gt;188A&lt;BR /&gt;&lt;BR /&gt;mount now says:&lt;BR /&gt;&lt;BR /&gt;# mount /dev/dsk/c3t2d0 /cdrom&lt;BR /&gt;mount: /dev/dsk/c3t2d0 on /cdrom : Device busy&lt;BR /&gt;&lt;BR /&gt;and I don't have to umount to eject CD...&lt;BR /&gt;&lt;BR /&gt;is it mounted to someone else? (don't think it can be)</description>
      <pubDate>Thu, 26 Dec 2002 19:55:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/copy-a-cd-s-contents-to-local-disk/m-p/2870478#M98322</guid>
      <dc:creator>Tim Killinger</dc:creator>
      <dc:date>2002-12-26T19:55:43Z</dc:date>
    </item>
    <item>
      <title>Re: copy a cd's contents to local disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/copy-a-cd-s-contents-to-local-disk/m-p/2870479#M98323</link>
      <description>Tim,&lt;BR /&gt;&lt;BR /&gt;What's your $PWD?  Are you in /cdrom, perhaps?  If not, try fuser to see if someone else is.&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Thu, 26 Dec 2002 20:03:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/copy-a-cd-s-contents-to-local-disk/m-p/2870479#M98323</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2002-12-26T20:03:37Z</dc:date>
    </item>
    <item>
      <title>Re: copy a cd's contents to local disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/copy-a-cd-s-contents-to-local-disk/m-p/2870480#M98324</link>
      <description>What directory are you currently in?&lt;BR /&gt;&lt;BR /&gt;If you happen to be in the /cdrom directory when you try to do a mount, you will get this error.&lt;BR /&gt;&lt;BR /&gt;# pwd&lt;BR /&gt;/cdrom&lt;BR /&gt;&lt;BR /&gt;If you do the above and it returns /cdrom, then do a:&lt;BR /&gt;&lt;BR /&gt;# cd /&lt;BR /&gt;&lt;BR /&gt;Then try doing your mount command.&lt;BR /&gt;&lt;BR /&gt;If you want to see if it is already mounted do a:&lt;BR /&gt;&lt;BR /&gt;# cd /cdrom&lt;BR /&gt;&lt;BR /&gt;# ls&lt;BR /&gt;&lt;BR /&gt;If it returns nothing, then chances are it is not already mounted.&lt;BR /&gt;&lt;BR /&gt;Be sure to do a:&lt;BR /&gt;&lt;BR /&gt;# cd /&lt;BR /&gt;&lt;BR /&gt;to get out of the /cdrom directory before trying to do a mount command.  Also, be sure to do the above before you try to&lt;BR /&gt;&lt;BR /&gt;# umount /cdrom&lt;BR /&gt;&lt;BR /&gt;to unmount the cd, or else you will get the same error.&lt;BR /&gt;</description>
      <pubDate>Thu, 26 Dec 2002 20:04:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/copy-a-cd-s-contents-to-local-disk/m-p/2870480#M98324</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2002-12-26T20:04:52Z</dc:date>
    </item>
  </channel>
</rss>

