- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- problem with mounting a file system
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
09-16-2001 10:29 PM
09-16-2001 10:29 PM
problem with mounting a file system
My /home FS got currupted.so I removed everything(vg,lv etc)and created it afresh
now when I mount as
#mount -F vxfs /dev/vghome/lvol1 /home
it gives the error "mount- read of superblock on /dev/vghome/lvol1 failed, No such device or
address."
and when I give
#mount /dev/vghome/lvol1 /home(w/o -F vxfs)
it gives the error "unrecognised file system".
kindy help
Thanls in Advance..
Qamar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-16-2001 10:38 PM
09-16-2001 10:38 PM
Re: problem with mounting a file system
Did you create a new filesystem on that volume using vxfs.
newfs -F -o largefiles vxfs /dev/vghome/rlvol1
check your steps used in the VG/LV creation. you may have missed something, say assigning the size / extents to the LV or something minor, like that.
Hope this helps.
thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-16-2001 11:03 PM
09-16-2001 11:03 PM
Re: problem with mounting a file system
Your default fs may be hfs. Check out your /etc/default/fs file. If it shows LOCAL=hfs,
then your default lvcreate will create hfs logical volumes. Change it to LOCAL=vxfs.
Now try mounting your file system as hfs and see if it works.
mount -F hfs /dev/vghome/lvol1 /home.
If this doesn't work, then you can't do anything. Initialize the logical volume and restore from the backups.
newfs -F vxfs /dev/vghome/lvol1.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-16-2001 11:15 PM
09-16-2001 11:15 PM
Re: problem with mounting a file system
don't you use raw device for filesystem creation.
thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-16-2001 11:17 PM
09-16-2001 11:17 PM
Re: problem with mounting a file system
the newfs command should look like
newfs -F vxfs -o largefiles /dev/vghome/rlvol1
sorry.