<?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: Mounts in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/mounts/m-p/2556533#M887205</link>
    <description>Hi&lt;BR /&gt;&lt;BR /&gt;  It is very easy in Unix. I will write down the syntax of mount here.&lt;BR /&gt;&lt;BR /&gt;#mount source mountpoint&lt;BR /&gt;&lt;BR /&gt;  Example&lt;BR /&gt;&lt;BR /&gt; U have a file system in /dev/vg01/lvol1..u want to mount this to /data. Follow these&lt;BR /&gt;&lt;BR /&gt;#mkdir /data&lt;BR /&gt;#mount /dev/vg01/lvol1 /data&lt;BR /&gt;&lt;BR /&gt;  U are done..If U want this to be added in /etc/fstab&lt;BR /&gt;&lt;BR /&gt;#mount -p &amp;gt; /etc/fstab&lt;BR /&gt;&lt;BR /&gt;for more information, See man page of mount.&lt;BR /&gt;&lt;BR /&gt;Best of luck&lt;BR /&gt;&lt;BR /&gt;Shahul</description>
    <pubDate>Wed, 25 Jul 2001 06:35:05 GMT</pubDate>
    <dc:creator>Shahul</dc:creator>
    <dc:date>2001-07-25T06:35:05Z</dc:date>
    <item>
      <title>Mounts</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mounts/m-p/2556530#M887202</link>
      <description>I had to do a restore on our Unix box over the weekend. Now there are mounts that I need that I no longer have. I am new to Unix and am not sure how to create these mounts again. In NT to create a share is easy. Any help would be great. Thanks</description>
      <pubDate>Tue, 24 Jul 2001 18:37:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mounts/m-p/2556530#M887202</guid>
      <dc:creator>Scott Callicott</dc:creator>
      <dc:date>2001-07-24T18:37:41Z</dc:date>
    </item>
    <item>
      <title>Re: Mounts</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mounts/m-p/2556531#M887203</link>
      <description>Hi Scott,&lt;BR /&gt;In unix it is more easy.&lt;BR /&gt;say you have mount point /mydir earlier then&lt;BR /&gt;#&amp;gt;cd /&lt;BR /&gt;#&amp;gt;mkdir mydir   &lt;BR /&gt;Now you have mydir is as mount point.&lt;BR /&gt;If you do restore on it and if you trying to mount external disk then you have to use vgimport vg0? /dev/dsk/c?t?d? &lt;BR /&gt;vgchange -a y vg0?&lt;BR /&gt;mount /dev/vg0?/lvlol? /mydir&lt;BR /&gt;so many question marks(?) that you have to figure out.&lt;BR /&gt;&lt;BR /&gt;Sachin&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 24 Jul 2001 18:47:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mounts/m-p/2556531#M887203</guid>
      <dc:creator>Sachin Patel</dc:creator>
      <dc:date>2001-07-24T18:47:16Z</dc:date>
    </item>
    <item>
      <title>Re: Mounts</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mounts/m-p/2556532#M887204</link>
      <description>Hi Scott:&lt;BR /&gt;&lt;BR /&gt;This can be very easy or it could involve creating a volume group, logical volumes, and filesystems. None of that is difficult but you could clobber the system if you don't know what you are doing.&lt;BR /&gt;&lt;BR /&gt;Let's do easy first:&lt;BR /&gt;&lt;BR /&gt;If you really have the space but the filesystems names are wrong, you can fix that in two ways.&lt;BR /&gt;1) Unmount an existing filesystem and remount it as another. e.g. you have /u01 and you need to make it /u02. &lt;BR /&gt;   a) umount /u01&lt;BR /&gt;   b) mkdir /u02&lt;BR /&gt;   c) vi /etc/fstab; find the /u01 entry and change it to /u02.&lt;BR /&gt;   d) mount /u02&lt;BR /&gt;You are done&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;2) Create a symbolic link from /u02 to /u02&lt;BR /&gt;  ln -s /u01 /u02&lt;BR /&gt;You are done.&lt;BR /&gt;&lt;BR /&gt;Now for the scary ones. Create a new volume group/logical volume. In your case, I would use SAM. The important thing is to determine that the particular device is not really used.&lt;BR /&gt;e.g. just because you don't see it with bdf does not mean that a logical volume is not being used for swap space.&lt;BR /&gt;If you want to try this:&lt;BR /&gt;sam -&amp;gt; Disks &amp;amp; Filesystems &lt;BR /&gt;Maybe volume groups, maybe logical volumes - it depends. Use the online help.&lt;BR /&gt;&lt;BR /&gt;Hope this gets you started, Clay&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 24 Jul 2001 18:51:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mounts/m-p/2556532#M887204</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2001-07-24T18:51:52Z</dc:date>
    </item>
    <item>
      <title>Re: Mounts</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mounts/m-p/2556533#M887205</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;  It is very easy in Unix. I will write down the syntax of mount here.&lt;BR /&gt;&lt;BR /&gt;#mount source mountpoint&lt;BR /&gt;&lt;BR /&gt;  Example&lt;BR /&gt;&lt;BR /&gt; U have a file system in /dev/vg01/lvol1..u want to mount this to /data. Follow these&lt;BR /&gt;&lt;BR /&gt;#mkdir /data&lt;BR /&gt;#mount /dev/vg01/lvol1 /data&lt;BR /&gt;&lt;BR /&gt;  U are done..If U want this to be added in /etc/fstab&lt;BR /&gt;&lt;BR /&gt;#mount -p &amp;gt; /etc/fstab&lt;BR /&gt;&lt;BR /&gt;for more information, See man page of mount.&lt;BR /&gt;&lt;BR /&gt;Best of luck&lt;BR /&gt;&lt;BR /&gt;Shahul</description>
      <pubDate>Wed, 25 Jul 2001 06:35:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mounts/m-p/2556533#M887205</guid>
      <dc:creator>Shahul</dc:creator>
      <dc:date>2001-07-25T06:35:05Z</dc:date>
    </item>
    <item>
      <title>Re: Mounts</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mounts/m-p/2556534#M887206</link>
      <description>Hi,&lt;BR /&gt;create a mount point #mkdir /mnt_pt&lt;BR /&gt;then mount #mount /dev/xxx/xxx /mnt_pt</description>
      <pubDate>Wed, 25 Jul 2001 09:21:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mounts/m-p/2556534#M887206</guid>
      <dc:creator>Ravi_8</dc:creator>
      <dc:date>2001-07-25T09:21:33Z</dc:date>
    </item>
  </channel>
</rss>

