<?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: how to use raw devices in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/how-to-use-raw-devices/m-p/4272424#M33862</link>
    <description>Raw devices are mapped in /etc/sysconfig/rawdevices. They are used by products like Oracle database and they access directly to these devices without a file system on it. Without a product like a database, raw devices are not useful for you.</description>
    <pubDate>Fri, 19 Sep 2008 14:25:40 GMT</pubDate>
    <dc:creator>Ivan Ferreira</dc:creator>
    <dc:date>2008-09-19T14:25:40Z</dc:date>
    <item>
      <title>how to use raw devices</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-use-raw-devices/m-p/4272422#M33860</link>
      <description># cat /etc/raw&lt;BR /&gt;raw1:sda5&lt;BR /&gt;raw2:sda6&lt;BR /&gt;raw3:sda7&lt;BR /&gt;&lt;BR /&gt;# raw -qa&lt;BR /&gt;/dev/raw/raw1:  bound to major 8, minor 5&lt;BR /&gt;/dev/raw/raw2:  bound to major 8, minor 6&lt;BR /&gt;/dev/raw/raw3:  bound to major 8, minor 7&lt;BR /&gt;&lt;BR /&gt;# ls -l /dev/raw/&lt;BR /&gt;total 0&lt;BR /&gt;crw-rw---- 1 root disk 162, 1 Sep 19 13:00 raw1&lt;BR /&gt;crw-rw---- 1 root disk 162, 2 Sep 19 13:00 raw2&lt;BR /&gt;crw-rw---- 1 root disk 162, 3 Sep 19 13:00 raw3&lt;BR /&gt;crw-rw---- 1 root disk 162, 0 Sep 19 13:00 rawctl&lt;BR /&gt;&lt;BR /&gt;# ls -l /dev/sda5&lt;BR /&gt;brw-r----- 1 root disk 8, 5 Sep 19 08:16 /dev/sda5&lt;BR /&gt;&lt;BR /&gt;# ls -l /dev/sda6&lt;BR /&gt;brw-r----- 1 root disk 8, 6 Sep 19 08:16 /dev/sda6&lt;BR /&gt;&lt;BR /&gt;# ls -l /dev/sda7&lt;BR /&gt;brw-r----- 1 root disk 8, 7 Sep 19 08:16 /dev/sda7&lt;BR /&gt;&lt;BR /&gt;now I wana access the raw device&lt;BR /&gt;# mount /dev/sda7 /mnt&lt;BR /&gt;mount: you must specify the filesystem type&lt;BR /&gt;&lt;BR /&gt;why ? /dev/sda7 is a raw device, why should I make a filesystem on the RAW device(/dev/sda7) ?&lt;BR /&gt;I have heard that:&lt;BR /&gt;raw device doesnt require filesystem.. thats why these devices provides fast I/O, because there is no filesystem layer b/w application and the device.&lt;BR /&gt;&lt;BR /&gt;Regards</description>
      <pubDate>Fri, 19 Sep 2008 06:07:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-use-raw-devices/m-p/4272422#M33860</guid>
      <dc:creator>Maaz</dc:creator>
      <dc:date>2008-09-19T06:07:21Z</dc:date>
    </item>
    <item>
      <title>Re: how to use raw devices</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-use-raw-devices/m-p/4272423#M33861</link>
      <description>dont try to mount raw device&lt;BR /&gt;iof ur RAW DEVICE is paret of VG u have to activate VG. I use raw device for oracle database on HP-UX. when u are using mount command means u r working with filesystem. Thats why u r getting the error.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 19 Sep 2008 10:45:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-use-raw-devices/m-p/4272423#M33861</guid>
      <dc:creator>Sandeep_Chaudhary</dc:creator>
      <dc:date>2008-09-19T10:45:45Z</dc:date>
    </item>
    <item>
      <title>Re: how to use raw devices</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-use-raw-devices/m-p/4272424#M33862</link>
      <description>Raw devices are mapped in /etc/sysconfig/rawdevices. They are used by products like Oracle database and they access directly to these devices without a file system on it. Without a product like a database, raw devices are not useful for you.</description>
      <pubDate>Fri, 19 Sep 2008 14:25:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-use-raw-devices/m-p/4272424#M33862</guid>
      <dc:creator>Ivan Ferreira</dc:creator>
      <dc:date>2008-09-19T14:25:40Z</dc:date>
    </item>
    <item>
      <title>Re: how to use raw devices</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-use-raw-devices/m-p/4272425#M33863</link>
      <description>yes, you cannot mount a raw device. actually without creating file system you cannot mount any disk devices.&lt;BR /&gt;&lt;BR /&gt;Oracle or specific applications have the special considerations to read/write in the raw devices.</description>
      <pubDate>Mon, 22 Sep 2008 16:21:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-use-raw-devices/m-p/4272425#M33863</guid>
      <dc:creator>Jeeshan</dc:creator>
      <dc:date>2008-09-22T16:21:01Z</dc:date>
    </item>
    <item>
      <title>Re: how to use raw devices</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-use-raw-devices/m-p/4272426#M33864</link>
      <description>you can check the raw device file using command stat&lt;BR /&gt;&lt;BR /&gt;#stat -f /dev/sda7</description>
      <pubDate>Mon, 22 Sep 2008 16:22:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-use-raw-devices/m-p/4272426#M33864</guid>
      <dc:creator>Jeeshan</dc:creator>
      <dc:date>2008-09-22T16:22:06Z</dc:date>
    </item>
  </channel>
</rss>

