- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Unable to mount a filesystem
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
04-11-2006 11:45 PM
04-11-2006 11:45 PM
When trying to mount a filesystem i get the following error:
vxfs mount: mount option(s) incompatible with file system /dev/vg01/lvol1
What is a solution to this?
Cheers
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2006 11:48 PM
04-11-2006 11:48 PM
Re: Unable to mount a filesystem
What have you got in your mount command? Post the output of "fstyp -v /dev/vg01/lvol1".
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2006 11:51 PM
04-11-2006 11:51 PM
Re: Unable to mount a filesystem
What options you see?
mount with those options. Or do a plain mount without any options.
mount /dev/vg01/lvol1 /mount_point
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-12-2006 01:11 AM
04-12-2006 01:11 AM
Re: Unable to mount a filesystem
#mount /dev/vgXX/lvolX /
#mount /dev/vg01/lvol1 /abc
Asif Sharif
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-12-2006 01:20 PM
04-12-2006 01:20 PM
Re: Unable to mount a filesystem
-check /etc/fstab and fsadm output on /dev/vg01/lvol1 to see their setting.
E.g
# more /etc/fstab
/dev/vg01/lvol1 /misc vxfs rw,suid,largefiles,delaylog,datainlog 0 2
# fsadm -F vxfs /dev/vg01/rlvol1
nolargefiles
-My example showing fstab for bootup setting has largefiles and fsadm showing no largefiles; this is causing the error. Or if the setting is the other way, you will get the same error too.
-For this case, i will use fsadm command to set the largefiles so that will be same with /etc/fstab setting.
# fsadm -o largefiles /dev/vg01/rlvol1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-12-2006 08:56 PM
04-12-2006 08:56 PM
Solutionvi /etc/fstab
2.) Check for an entry in the line for that file system that says:
largefiles
3.) Remove this entry from the line and that will fix the issue.
EXPLANATION: When the largefiles option is set in the fstab file the error message vxfs mount: mount option(s) incompatible with file system will appear. The reason is because the file system is not setup for largefiles. To setup the file system for largefiles run one of the following commands.
umount the file system umount /mountpoint and run the command:
#fsadm -F vxfs -o largefiles /dev/vgXX/rlvolX
or
With Online JFS or Advanced JFS just run the command:
#fsadm -F vxfs -o largefiles /mountpoint
Now the fstab entry for largefiles can be put back in, however the entry is not
needed for largefiles to be activated. Once the file system is setup for
largefiles, it will now be enabled for largefiles anytime it is mounted.
This same error could occur if nolargefiles is an option in /etc/fstab, and the
file system has large files enabled.
NOTE: To see if a file system is set to largefiles or nolargefiles do one of
the following:
1.) fsadm -F vxfs /mountpoint (vxfs only)
2.) mkfs -F vxfs -m /dev/vgXX/lvolX (vxfs only)
3.) fstyp -v /dev/vgXX/lvolX | grep f_flag
(f_flag: 0->nolargefiles, f_flag: 16->largefiles)
4.) fsadm -F hfs /dev/vgXX/rlvolX (hfs only)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-12-2006 09:03 PM
04-12-2006 09:03 PM
Re: Unable to mount a filesystem
# mkfs -F vxfs -m /dev/vgXX/lvolX
OR
# fstyp -v /dev/vgXX/lvolX
...it's hard to tell, so post the output of one of the above.
cheers!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-12-2006 09:39 PM
04-12-2006 09:39 PM