<?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 No unmount command in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/no-unmount-command/m-p/2485240#M799262</link>
    <description>I am attempting to increase some of my logical volumes, I am finding I do not have an unmount command, I am running hp-ux 10.20. I did a search through the entire vg. I do not want to have to reboot and start up in single user mode. Is there any way of unmounting?&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;Andy</description>
    <pubDate>Mon, 22 Jan 2001 20:16:20 GMT</pubDate>
    <dc:creator>Andy Sevastian</dc:creator>
    <dc:date>2001-01-22T20:16:20Z</dc:date>
    <item>
      <title>No unmount command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/no-unmount-command/m-p/2485240#M799262</link>
      <description>I am attempting to increase some of my logical volumes, I am finding I do not have an unmount command, I am running hp-ux 10.20. I did a search through the entire vg. I do not want to have to reboot and start up in single user mode. Is there any way of unmounting?&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;Andy</description>
      <pubDate>Mon, 22 Jan 2001 20:16:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/no-unmount-command/m-p/2485240#M799262</guid>
      <dc:creator>Andy Sevastian</dc:creator>
      <dc:date>2001-01-22T20:16:20Z</dc:date>
    </item>
    <item>
      <title>Re: No unmount command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/no-unmount-command/m-p/2485241#M799263</link>
      <description>/usr/sbin/umount&lt;BR /&gt;&lt;BR /&gt;is the command you want.  A filesystem may not be umounted while it is busy.  The fuser command will show you processes attached to a filesysem or logical volume.  Also, if you have online JFS on the server it is not necessary to umount the filesystem in order to increase the filesystem.  Simply extend the logical volume (using lvextend), then increase the size with the fsadm command (-b flag, size specified in Kb: man fsadm_vxfs for info)</description>
      <pubDate>Mon, 22 Jan 2001 20:21:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/no-unmount-command/m-p/2485241#M799263</guid>
      <dc:creator>Alan Riggs</dc:creator>
      <dc:date>2001-01-22T20:21:56Z</dc:date>
    </item>
    <item>
      <title>Re: No unmount command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/no-unmount-command/m-p/2485242#M799264</link>
      <description>Andy:&lt;BR /&gt;&lt;BR /&gt;See "man 1M mount" for mount or umount.  To un-mount&lt;BR /&gt;&lt;BR /&gt;/usr/sbin/umount&lt;BR /&gt;/sbin/umount&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Mon, 22 Jan 2001 20:22:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/no-unmount-command/m-p/2485242#M799264</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2001-01-22T20:22:24Z</dc:date>
    </item>
    <item>
      <title>Re: No unmount command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/no-unmount-command/m-p/2485243#M799265</link>
      <description>As they already mentioned the command is umount.&lt;BR /&gt;BUT...if your wanting to increase your logical volumes, have you checked to see if you have Online JFS (with this you do NOT need to umount any filesystems).&lt;BR /&gt;Do:&lt;BR /&gt;swlist | grep -i online&lt;BR /&gt;&lt;BR /&gt;If you do have this than you only need to do the &lt;BR /&gt;lvextend ......  command and then&lt;BR /&gt;fsadm -F vxfs -b &lt;NEWSIZE of="" filesystem="" in="" kb=""&gt; /filesys&lt;BR /&gt;       KB=MB * 1024&lt;BR /&gt;If you don't have Online JFS, than YES you will have to umount the filesystem and then extend. If it's on vg00 than I recommend rebooting and going to single user to do your extending.&lt;BR /&gt;&lt;BR /&gt;/rcw&lt;/NEWSIZE&gt;</description>
      <pubDate>Mon, 22 Jan 2001 20:31:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/no-unmount-command/m-p/2485243#M799265</guid>
      <dc:creator>Rita C Workman</dc:creator>
      <dc:date>2001-01-22T20:31:02Z</dc:date>
    </item>
    <item>
      <title>Re: No unmount command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/no-unmount-command/m-p/2485244#M799266</link>
      <description>Hi Andy,&lt;BR /&gt;&lt;BR /&gt;You're surely not the first one to be confused by the somewhat cryptic Unix names. ;-)&lt;BR /&gt;Many people talk about 'unmounting' a filesystem, but the real command name is 'umount' (no N..), located in /usr/sbin.&lt;BR /&gt;&lt;BR /&gt;See man 1M mount as this will give you the umount page as well.&lt;BR /&gt;&lt;BR /&gt;If I were you, I'd create the /usr/lib/whatis database which would allow you to search any command by keyword.&lt;BR /&gt;&lt;BR /&gt;# catman -w &lt;BR /&gt;&lt;BR /&gt;will create the 'whatis' database.&lt;BR /&gt;&lt;BR /&gt;Once created, you may use &lt;BR /&gt;# man -k keyword &lt;BR /&gt;to search for a given keyword in the whole set of manual pages.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Dan&lt;BR /&gt;</description>
      <pubDate>Tue, 23 Jan 2001 06:26:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/no-unmount-command/m-p/2485244#M799266</guid>
      <dc:creator>Dan Hetzel</dc:creator>
      <dc:date>2001-01-23T06:26:23Z</dc:date>
    </item>
  </channel>
</rss>

