- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- vxfs fsadm: /dev/vg01/lvol1 is not the root inode ...
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
01-31-2006 08:03 PM
01-31-2006 08:03 PM
I try to desfrag the disk as following:
/sbin/umount /dev/vg01/lvol1
/usr/sbin/fsadm -F vxfs -s -e -d /dev/vg01/lvol1
but get the error msg:
vxfs fsadm: /dev/vg01/lvol1 is not the root inode of a vxfs file sytem
Sorry but I don't understand what is wrong...
I have a HP 9000/800 HP-UX 11.0.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-31-2006 08:08 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-31-2006 08:09 PM
01-31-2006 08:09 PM
Re: vxfs fsadm: /dev/vg01/lvol1 is not the root inode of a vxfs file sytem
you need to put in raw vol name.
And if that does not work, then just extendfs will do just fine.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-31-2006 08:16 PM
01-31-2006 08:16 PM
Re: vxfs fsadm: /dev/vg01/lvol1 is not the root inode of a vxfs file sytem
If you have OnlineJFS installed try this.
# /sbin/mount /dev/vg01/lvol1
# /usr/sbin/fsadm -F vxfs -s -e -d /mountpoint
Best regards,
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-31-2006 08:29 PM
01-31-2006 08:29 PM
Re: vxfs fsadm: /dev/vg01/lvol1 is not the root inode of a vxfs file sytem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2006 06:43 PM
02-02-2006 06:43 PM
Re: vxfs fsadm: /dev/vg01/lvol1 is not the root inode of a vxfs file sytem
HELP!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2006 06:51 PM
02-02-2006 06:51 PM
Re: vxfs fsadm: /dev/vg01/lvol1 is not the root inode of a vxfs file sytem
Here's a little script for you:
# cat /usr/local/bin/fsadm.defrag
#!/bin/sh
# defrag all mounted file systems
LOG=/tmp/fsadm.defrag.log
if [ -f $LOG ]
then
mv $LOG $LOG.old
fi
cat /dev/null > $LOG
for i in `mount -l | grep -v stand |awk '{print $1}'`
do
echo "defraging " $i "at "`date` >> $LOG
fsadm -F vxfs -d -D -e -E $i >> $LOG
done
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2006 06:58 PM
02-02-2006 06:58 PM
Re: vxfs fsadm: /dev/vg01/lvol1 is not the root inode of a vxfs file sytem
A file system should be mounted when you are defragmenting it and the target mount point should be defined as the option with -d.
man fsadm_vxfs for details.
HTH,
Devender
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2006 07:02 PM
02-02-2006 07:02 PM
Re: vxfs fsadm: /dev/vg01/lvol1 is not the root inode of a vxfs file sytem
Check this first:
# fstyp /dev/vg01/lvol1
Then,
# fsadm -F vxfs -e -s -E
will do it.
--
Muthu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2006 10:29 PM
02-02-2006 10:29 PM
Re: vxfs fsadm: /dev/vg01/lvol1 is not the root inode of a vxfs file sytem
vxfs
# fsadm -F vxfs -e -s -t 10 -E /datos
fsadm: the -e option requires "HP OnLineJFS (Advanced Vxfs)"
But I haven't OnlineJS so seems that only can do a desfrag offline.... :-(
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-03-2006 03:31 AM
02-03-2006 03:31 AM
Re: vxfs fsadm: /dev/vg01/lvol1 is not the root inode of a vxfs file sytem
available only with the HP OnLineJFS product."
You will need to purchase OnlineJFS (well worth it - though I wish HP included it free across all OE's - not just Enterprise and MC - like AIX does).
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-08-2006 08:53 PM
02-08-2006 08:53 PM