<?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 Mount device problem in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/mount-device-problem/m-p/4037762#M29312</link>
    <description>I have a harddisk which has 72G size , I want to mount it to path /ora_dir , I try to mount the device from sdd1 to sdd5 , but even I try all dev path , it still found the size is not 72G , could advise how can I normally mount the path ? thx&lt;BR /&gt;&lt;BR /&gt;try 1 )&lt;BR /&gt;#mount /dev/sdd1 /ora_dir&lt;BR /&gt;df&lt;BR /&gt;#/dev/sdd1              5036224   3480872   1299524  73% /ora_dir&lt;BR /&gt;&lt;BR /&gt;try 2 )&lt;BR /&gt;#mount /dev/sdd2 /ora_dir&lt;BR /&gt;df&lt;BR /&gt;#/dev/sdd2             5036224   4072364    708032  86% /ora_dir&lt;BR /&gt;&lt;BR /&gt;try 3 )&lt;BR /&gt;#mount /dev/sdd3 /ora_dir&lt;BR /&gt;df&lt;BR /&gt;#/dev/sdd3             4032000   3736716     90464  98%  /ora_dir&lt;BR /&gt;&lt;BR /&gt;try 4 )&lt;BR /&gt;#mount /dev/sdd4 /ora_dir&lt;BR /&gt;df&lt;BR /&gt;#/dev/sdd4             2355868    803156   1433036  36% /ora_dir&lt;BR /&gt;&lt;BR /&gt;try 5 )&lt;BR /&gt;#mount /dev/sdd5 /ora_dir&lt;BR /&gt;df&lt;BR /&gt;#/dev/sdd5             2016016     69432   1844172   4% /ora_dir&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Mon, 16 Jul 2007 03:58:37 GMT</pubDate>
    <dc:creator>ust3</dc:creator>
    <dc:date>2007-07-16T03:58:37Z</dc:date>
    <item>
      <title>Mount device problem</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mount-device-problem/m-p/4037762#M29312</link>
      <description>I have a harddisk which has 72G size , I want to mount it to path /ora_dir , I try to mount the device from sdd1 to sdd5 , but even I try all dev path , it still found the size is not 72G , could advise how can I normally mount the path ? thx&lt;BR /&gt;&lt;BR /&gt;try 1 )&lt;BR /&gt;#mount /dev/sdd1 /ora_dir&lt;BR /&gt;df&lt;BR /&gt;#/dev/sdd1              5036224   3480872   1299524  73% /ora_dir&lt;BR /&gt;&lt;BR /&gt;try 2 )&lt;BR /&gt;#mount /dev/sdd2 /ora_dir&lt;BR /&gt;df&lt;BR /&gt;#/dev/sdd2             5036224   4072364    708032  86% /ora_dir&lt;BR /&gt;&lt;BR /&gt;try 3 )&lt;BR /&gt;#mount /dev/sdd3 /ora_dir&lt;BR /&gt;df&lt;BR /&gt;#/dev/sdd3             4032000   3736716     90464  98%  /ora_dir&lt;BR /&gt;&lt;BR /&gt;try 4 )&lt;BR /&gt;#mount /dev/sdd4 /ora_dir&lt;BR /&gt;df&lt;BR /&gt;#/dev/sdd4             2355868    803156   1433036  36% /ora_dir&lt;BR /&gt;&lt;BR /&gt;try 5 )&lt;BR /&gt;#mount /dev/sdd5 /ora_dir&lt;BR /&gt;df&lt;BR /&gt;#/dev/sdd5             2016016     69432   1844172   4% /ora_dir&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 16 Jul 2007 03:58:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mount-device-problem/m-p/4037762#M29312</guid>
      <dc:creator>ust3</dc:creator>
      <dc:date>2007-07-16T03:58:37Z</dc:date>
    </item>
    <item>
      <title>Re: Mount device problem</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mount-device-problem/m-p/4037763#M29313</link>
      <description>ssd1-ssd5 are the partitions on that disk, not the entire disk. Listing your current disk layout is like this: fdisk -l /dev/sdd&lt;BR /&gt;&lt;BR /&gt;You'll see immediately where your 72G went in partitions. &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;If you want to erase the disk and use it as a whole you can use fdisk or cfdisk on it and format it after. &lt;BR /&gt;fdisk /dev/sdd&lt;BR /&gt;(delete all partitions with 'd' and create a single new one with 'n' and format it)&lt;BR /&gt;mkfs -t ext3 /dev/sdd1&lt;BR /&gt;mount /dev/sdd1 /ora_dir&lt;BR /&gt;(be sure to add it to /etc/fstab like this as well if you want the disk to be mounted after reboots: /dev/sdd1 /ora_dir ext3 defaults 0 2)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 16 Jul 2007 04:32:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mount-device-problem/m-p/4037763#M29313</guid>
      <dc:creator>Van den Broeck Tijl</dc:creator>
      <dc:date>2007-07-16T04:32:12Z</dc:date>
    </item>
    <item>
      <title>Re: Mount device problem</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mount-device-problem/m-p/4037764#M29314</link>
      <description>I got it , thx.</description>
      <pubDate>Mon, 16 Jul 2007 06:07:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mount-device-problem/m-p/4037764#M29314</guid>
      <dc:creator>ust3</dc:creator>
      <dc:date>2007-07-16T06:07:11Z</dc:date>
    </item>
  </channel>
</rss>

