- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- increase logical volume
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2002 02:22 AM
03-04-2002 02:22 AM
I tried to use SAM to increase one logical volume, but I got the error message "the device is busy". I think it is because the directory need to unmount. But I try " umount /usr2", I still got "device busy" error.
Would someone help me to solve this problem?
Thanks a lot for your help.
Zhiong
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2002 02:24 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2002 02:28 AM
03-04-2002 02:28 AM
Re: increase logical volume
do a fuser -cu /usr1 to find otu what processes are using that file systems. kill all the processes.
either by
fuser -ku /usr1 or
kill processes one by one
this will help u
Vijeesh CTK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2002 02:29 AM
03-04-2002 02:29 AM
Re: increase logical volume
First you need to unmount the filesystem, but if anyone is working on any of the files located under this filesystem you will
receive the device is busy error message.
fuser will not always show you what process or user is working on /usr2 but maybe you should try lsof which will show you all open files under this directory.
Best is to install online jfs and get a license to use it. This will help you reduce downtime for the users and the system and you can perform almost all actions online while the filesystem is mounted.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2002 02:32 AM
03-04-2002 02:32 AM
Re: increase logical volume
Add the "-c" option since it is a mount-point:
fuser -c /usr2
otherwise it won't necessarily pick up all processes that have files open within the filesystem.
Rgds, Robin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2002 04:52 AM
03-04-2002 04:52 AM
Re: increase logical volume
Trond
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2002 06:09 AM
03-04-2002 06:09 AM
Re: increase logical volume
Try this,
fuser -cu /mount_point
This will list the user and the processes using the mount point. To kill all the processes or users,
fuser -ck /usr2
Check for the list of processes/users using this mount point once again. IF no process is listed, you should be able to unmount the filesystem. If there is a process you cannot kill, reboot of the system looks like your only choice.
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2002 07:21 AM
03-04-2002 07:21 AM
Re: increase logical volume
If you are not having online jfs then better to goto single user mode and do it.
you can either use sam or "lvextend and extendfs" combinations to acomplish the same.
-K.vijay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2002 08:04 AM
03-04-2002 08:04 AM
Re: increase logical volume
if you have Adv JFS installed, you don't need to unmount filesystem.
Manually, you can extend the fs as
lvextend -L size /dev/vgx/lvy
SIZE=size*1024
fsadm -b SIZE /mtpoint
Otherwise, unmount the filesystem after doing
fuser -cu
fuser -cuk
-raj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2002 11:08 AM
03-04-2002 11:08 AM
Re: increase logical volume
Thanks a lot for all your help. I really appreciated it.
I just solved this problem because of these good suggestion.
Have a good day.
Zhiyong