- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- FSADM error
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
05-14-2002 05:17 AM
05-14-2002 05:17 AM
FSADM error
I am getting follwoing error.
is not the root inode of a vxfs file sytem
Please note I have OnlineJFS installed.
Thanks in advance
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2002 05:22 AM
05-14-2002 05:22 AM
Re: FSADM error
I am getting follwoing error.
is not the root inode of a vxfs file sytem
The error is telling you that you are trying to extend not at the mount point but further up the tree.
Revisit your command.
Paula
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2002 05:26 AM
05-14-2002 05:26 AM
Re: FSADM error
# lvextend -L 800 /dev/vg00/lvol12
# fsadm -b 819200 /opt
====> 800*1024=819200
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2002 05:34 AM
05-14-2002 05:34 AM
Re: FSADM error
and execute
fsadm -F vxfs -b 20480 /xx
it gives error as following
/xx is not a known mountpoint
and the raw device cannot be deduced
I am in a loop now.
Thanks in advance
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2002 05:37 AM
05-14-2002 05:37 AM
Re: FSADM error
/dev/vg00/rvol12
Thanks
G Manikandan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2002 05:39 AM
05-14-2002 05:39 AM
Re: FSADM error
Stupid question probably, but this is a vxfs filesystem we are talking about ... yes ?
You can check this the following way :
$fstyp /dev/vg00/rlvol1
vxfs
$fstyp /dev/vg00/rlvol2
hfs
fsadm would not work for the latter ...
Regards,
Tom
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2002 06:02 AM
05-14-2002 06:02 AM
Re: FSADM error
Then you should use the character device.
please check the link which should help you.
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xdbac79bffde7d4118fef0090279cd0f9,00.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2002 06:04 AM
05-14-2002 06:04 AM
Re: FSADM error
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2002 06:28 AM
05-14-2002 06:28 AM
Re: FSADM error
From the error listed in your second comment it appears that the mount point is not listed in /etc/fstab. Secondly, you may rty the following:
lvextend -L
fsadm -F vxfs -b
where the 'M' represents size in Megabytes versus using blocks.
HTH,
Dave
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2002 08:37 AM
05-14-2002 08:37 AM
Re: FSADM error
fsadm -b (size * 1024) /mountpoint
or add -F vxfs to fsadm if /etc/default/fs is not vxfs, and make sure /mountpoint is a valid mountpoint in /etc/fstab.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2002 02:07 PM
05-14-2002 02:07 PM
Re: FSADM error
Sorry, I actually meant /dev/vgXX not /dev/dsk in the lvextend line.
Dave