<?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: Adding new HD in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/adding-new-hd/m-p/2972215#M120633</link>
    <description>Could you please explain what do you means by this please.&lt;BR /&gt;&lt;BR /&gt;***********************************************&lt;BR /&gt;&lt;BR /&gt;Tim Sanko        May 13, 2003 19:18 PM GMT   [ 0 pts ]  &lt;BR /&gt; I thought Bill said that anybody could be an Admin as long as they could patch the kernel with the debugger, awk and sed!!! ;-) Tim &lt;BR /&gt;&lt;BR /&gt;Thank you,&lt;BR /&gt;</description>
    <pubDate>Wed, 14 May 2003 17:12:06 GMT</pubDate>
    <dc:creator>Raghuram Ollakal_1</dc:creator>
    <dc:date>2003-05-14T17:12:06Z</dc:date>
    <item>
      <title>Adding new HD</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/adding-new-hd/m-p/2972208#M120626</link>
      <description>I need to add a HD to my N-Class server. This server alrady have 2 17GB HD and a 8 GB HD, and I have only one Volume group " vg00". No I need the all new HD to use for a new application we are planing to install + Oracel on this HD. How can I do this, can I create another volum group with this HD through Sam and use it. I naver did this so I need some help.</description>
      <pubDate>Tue, 13 May 2003 16:17:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/adding-new-hd/m-p/2972208#M120626</guid>
      <dc:creator>Raghuram Ollakal_1</dc:creator>
      <dc:date>2003-05-13T16:17:24Z</dc:date>
    </item>
    <item>
      <title>Re: Adding new HD</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/adding-new-hd/m-p/2972209#M120627</link>
      <description>Yes, you can use SAM.  Go into Disks and Filesystems, then Volume Groups, then under Actions, select Create, you'll be presented with a list of unused drives.  Select your new HD, fill in the blanks, and your VG is created.  You will now need to create a logical volume on it.  The process is similar using SAM.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Tue, 13 May 2003 16:32:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/adding-new-hd/m-p/2972209#M120627</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2003-05-13T16:32:58Z</dc:date>
    </item>
    <item>
      <title>Re: Adding new HD</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/adding-new-hd/m-p/2972210#M120628</link>
      <description>Yes, create a new VG for this purpose. An example of configuring a new VG (/dev/vg01).&lt;BR /&gt;# ioscan -fnC disk&lt;BR /&gt;==&amp;gt; Take note of the unused disk device path that you want to use in vg01. Assume it's c1t1d0.&lt;BR /&gt;# pvcreate /dev/rdsk/c1t1d0&lt;BR /&gt;# mkdir /dev/vg01&lt;BR /&gt;# mknod /dev/vg01/group c 64 0x010000&lt;BR /&gt;==&amp;gt; Minor number 0x010000 must be unique. If the only VG you have is vg00 in /dev, then the above should be unique.&lt;BR /&gt;# vgcreate /dev/vg01 /dev/dsk/c1t1d0&lt;BR /&gt;# vgdisplay -v vg01&lt;BR /&gt;==&amp;gt; Now vg01 has been created. Next step is to create your logical volume and filesystem. Say you want a 4GB vxfs filesystem mounted on /opt/oracle.&lt;BR /&gt;&lt;BR /&gt;# lvcreate -L 4000 -n lvol1 /dev/vg01&lt;BR /&gt;==&amp;gt; Create a 4GB LV (lvol1).&lt;BR /&gt;# newfs -F vxfs /dev/vg01/rlvol1&lt;BR /&gt;==&amp;gt; Create the FS.&lt;BR /&gt;# mkdir /opt/oracle&lt;BR /&gt;# mount /dev/vg01/lvol1 /opt/oracle&lt;BR /&gt;&lt;BR /&gt;The last step would be to edit your /etc/fstab file so that it gets mounted everytime the system reboots.&lt;BR /&gt;All the above can be easily done in SAM but getting use to command line method will help in the long run. For instruction in SAM see ..&lt;BR /&gt;&lt;A href="http://www.docs.hp.com/hpux/onlinedocs/B2355-90742/B2355-90742.html" target="_blank"&gt;http://www.docs.hp.com/hpux/onlinedocs/B2355-90742/B2355-90742.html&lt;/A&gt;&lt;BR /&gt;The section is "Adminstering A System: Managing DIsks and Files", click on "Managing Disks" -&amp;gt; "Managing Logical Volumes using SAM".&lt;BR /&gt;</description>
      <pubDate>Tue, 13 May 2003 16:35:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/adding-new-hd/m-p/2972210#M120628</guid>
      <dc:creator>S.K. Chan</dc:creator>
      <dc:date>2003-05-13T16:35:58Z</dc:date>
    </item>
    <item>
      <title>Re: Adding new HD</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/adding-new-hd/m-p/2972211#M120629</link>
      <description>Once you get a drive certified for your system, you can create a new volume group with vgcreate&lt;BR /&gt;&lt;BR /&gt;Then you can use vgextend to add the disk to that group, then you are good to go.&lt;BR /&gt;&lt;BR /&gt;Sam will ask you all the questions you need to do.&lt;BR /&gt;&lt;BR /&gt;Do this:&lt;BR /&gt;&lt;BR /&gt;Add the disk.&lt;BR /&gt;&lt;BR /&gt;ioscan -fn disk and/or reboot the system&lt;BR /&gt;&lt;BR /&gt;run ioscan and make sure the new disk is there.&lt;BR /&gt;&lt;BR /&gt;sam&lt;BR /&gt;&lt;BR /&gt;disk &amp;amp; filesystmes&lt;BR /&gt;&lt;BR /&gt;volumne groups&lt;BR /&gt;&lt;BR /&gt;actions add volume group.&lt;BR /&gt;&lt;BR /&gt;That will create the volume group. &lt;BR /&gt;&lt;BR /&gt;Same basic path to extend.&lt;BR /&gt;&lt;BR /&gt;You should however be able to do this at the command line.&lt;BR /&gt;&lt;BR /&gt;Its not so hard.&lt;BR /&gt;&lt;BR /&gt;If you post the /dev/dsk/c#t#d# number me or someone else can give hyou the commands.&lt;BR /&gt;&lt;BR /&gt;Bill Hassell was once quoted as saying that real sysadmins don't use gui's.  While not a strict adherent to this philosophy for lvm management its important to know the commands in case you ever have to do emergency maintenance without the benefit of sam.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Tue, 13 May 2003 16:36:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/adding-new-hd/m-p/2972211#M120629</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2003-05-13T16:36:29Z</dc:date>
    </item>
    <item>
      <title>Re: Adding new HD</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/adding-new-hd/m-p/2972212#M120630</link>
      <description>sure you can....&lt;BR /&gt;&lt;BR /&gt;Start sam&lt;BR /&gt;&lt;BR /&gt;Disks and File Systems&lt;BR /&gt;&lt;BR /&gt;Volume Groups&lt;BR /&gt;&lt;BR /&gt;Actions -&amp;gt; Create&lt;BR /&gt;&lt;BR /&gt;Complete the required steps.  Then, press [ OK ] to perform the task. &lt;BR /&gt;[ Select New Volume Group Name...        ]  (required)&lt;BR /&gt;[ Select Disk(s)...                      ]  (required)&lt;BR /&gt;[ Modify Default Volume-Group Options... ]  (optional)&lt;BR /&gt;[ Configure Disk(s)...                   ]  (optional)&lt;BR /&gt;[ Define New Logical Volume(s)...        ]  (optional) &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff</description>
      <pubDate>Tue, 13 May 2003 16:36:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/adding-new-hd/m-p/2972212#M120630</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2003-05-13T16:36:36Z</dc:date>
    </item>
    <item>
      <title>Re: Adding new HD</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/adding-new-hd/m-p/2972213#M120631</link>
      <description>I thought Bill said that anybody could be an Admin as long as they could patch the kernel with the debugger, awk and sed!!! &lt;BR /&gt;&lt;BR /&gt;;-)&lt;BR /&gt;&lt;BR /&gt;Tim</description>
      <pubDate>Tue, 13 May 2003 18:18:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/adding-new-hd/m-p/2972213#M120631</guid>
      <dc:creator>Tim Sanko</dc:creator>
      <dc:date>2003-05-13T18:18:01Z</dc:date>
    </item>
    <item>
      <title>Re: Adding new HD</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/adding-new-hd/m-p/2972214#M120632</link>
      <description>You can do these tasks from SAM, disk and file system session. Select the disk and create new VGs and LVs, then create file system on it.&lt;BR /&gt;&lt;BR /&gt;But I would suggest you to do some more planning when setup file systems (since you said you have only one VG defined on the system now). It's a good practice to have only root LVs defined on vg00. All other disks can be kept on seperate VGs depends up on your requirement. In future, you can define systems with only root and mirror disks in vg00 and keep all other disks on VGs other than vg00. It will be good to take backups, recovery tapes, file system management and even during a system recovery process. Just thought of adding this ...</description>
      <pubDate>Tue, 13 May 2003 18:40:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/adding-new-hd/m-p/2972214#M120632</guid>
      <dc:creator>Helen French</dc:creator>
      <dc:date>2003-05-13T18:40:39Z</dc:date>
    </item>
    <item>
      <title>Re: Adding new HD</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/adding-new-hd/m-p/2972215#M120633</link>
      <description>Could you please explain what do you means by this please.&lt;BR /&gt;&lt;BR /&gt;***********************************************&lt;BR /&gt;&lt;BR /&gt;Tim Sanko        May 13, 2003 19:18 PM GMT   [ 0 pts ]  &lt;BR /&gt; I thought Bill said that anybody could be an Admin as long as they could patch the kernel with the debugger, awk and sed!!! ;-) Tim &lt;BR /&gt;&lt;BR /&gt;Thank you,&lt;BR /&gt;</description>
      <pubDate>Wed, 14 May 2003 17:12:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/adding-new-hd/m-p/2972215#M120633</guid>
      <dc:creator>Raghuram Ollakal_1</dc:creator>
      <dc:date>2003-05-14T17:12:06Z</dc:date>
    </item>
    <item>
      <title>Re: Adding new HD</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/adding-new-hd/m-p/2972216#M120634</link>
      <description>The kernel parameters are maintained in the /stand/system file.&lt;BR /&gt;&lt;BR /&gt;You could use grep to find a parameter, and awk to modify a tunable, and sed to add a line to the file to add a new tunable.&lt;BR /&gt;&lt;BR /&gt;It was an old timer joke. only an old admin would even try to blame it on another (really old) admin.&lt;BR /&gt;&lt;BR /&gt;Tim</description>
      <pubDate>Mon, 19 May 2003 13:54:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/adding-new-hd/m-p/2972216#M120634</guid>
      <dc:creator>Tim Sanko</dc:creator>
      <dc:date>2003-05-19T13:54:57Z</dc:date>
    </item>
  </channel>
</rss>

