- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- unable to extend LV
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
10-16-2002 08:07 AM
10-16-2002 08:07 AM
The command used to resize a VxFS f/s has failed.
vxfs fsadm: /var/adm/sw is not the root inode of a vxfs file system.
The LV as listed in /etc/fstab:
/dev/vg00/var_adm_sw /var/adm/sw vxfs delaylog 0 2
Show's up as a LV in SAM (from
which I tried to extend it)?
Thanks,
Randy
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-16-2002 08:12 AM
10-16-2002 08:12 AM
Re: unable to extend LV
Sandip
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-16-2002 08:15 AM
10-16-2002 08:15 AM
Re: unable to extend LV
What does the server think is mounted
grep /var/adm/sw /etc/mnttab
Regards
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-16-2002 08:16 AM
10-16-2002 08:16 AM
Re: unable to extend LV
shows which fs's are currently mounted,
mount -a
will mount all in /etc/fstab,
what is your commandline:
lvextend -L new_MB_size /dev/vg00/var/adm/sw
or are you doing and
extendfs -F vxfs /var/adm/sw
?
Later,
Bill
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-16-2002 08:18 AM
10-16-2002 08:18 AM
Re: unable to extend LV
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-16-2002 08:52 AM
10-16-2002 08:52 AM
Re: unable to extend LV
I was using SAM to extend it. I had stopped "swagentd" prior to and umounted it manually first. When mounted the device name is the same in both /etc/fstab and etc/mnttab. Strange thing is now:
SAM is showing it as being extended (to 700MB) while
a "bdf -l" shows it at 400MB
when mounted.
Now what?
Points assigned.
Thanks,
Randy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-16-2002 09:00 AM
10-16-2002 09:00 AM
Solution# vgdisplay -v vg00|more
=> Does the "var_adm_sw" LV shows the new size that you have extended to ?
# bdf -l
=> Again run this, does the FS size match up with that of LV size ?
If not manually umount it again and run extendfs on it.
# umount /var/adm/sw
# extendfs -F vxfs /dev/vg00/rvar_adm_sw
# mount -a
# bdf -l
Does it shows up fine now ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-16-2002 09:19 AM
10-16-2002 09:19 AM
Re: unable to extend LV
# lvdisplay -v /dev/vg00/var_adm_sw
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-16-2002 09:43 AM
10-16-2002 09:43 AM
Re: unable to extend LV
can you run it from the command line like
lvextend -L (size)/dev/vg00/rvar_adm_sw
and then fsadm /var/adm/sw
Manoj Srivastava
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-16-2002 10:22 AM
10-16-2002 10:22 AM
Re: unable to extend LV
The vgdisplay showed it at 700MB, but "bdf -l" did not. I umounted it and was able to extend it via the command line. SAM... ughhh!
S.K. and Manoj,
Do I still need to run "fsadm", I have already remounted it and "bdf -l" is now showing the correct size.
Thanks all, points assigned!
Randy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-16-2002 10:27 AM
10-16-2002 10:27 AM
Re: unable to extend LV
- increasing mounted FS on-the-fly
- fragmentation report
- defragmentation
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-16-2002 10:40 AM
10-16-2002 10:40 AM
Re: unable to extend LV
Randy