- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- unused lv format unrecognized
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
11-20-2000 03:51 PM
11-20-2000 03:51 PM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2000 05:57 PM
11-20-2000 05:57 PM
Re: unused lv format unrecognized
A logical volume that DOES NOT contain a file system cannot be mounted. If the mount command is used to attempt to mount a logical volume that doesn't contain a file system, an error message of: unrecognized file system will be given.
Once a file system is created, then the logical volume could be successfully mounted.
Elizabeth
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-21-2000 01:41 AM
11-21-2000 01:41 AM
SolutionTo create a filesystem use
newfs -F vxfs /dev/vg00/rlvol8 # for vxfs fs
(newfs -F hfs /dev/vg00/rlvol8 # for hfs)
But i noticed that you want to increase your /opt and /var filesystem.
For this issue you don't have to create a new lvol. Instead extending the existing lvols is required.
So remove the unused lvol8
lvremove /dev/vg00/lvol8
and extend /opt (ie: lvol6) and /var (ie: lvol7)
lvextend -L
lvextend -L
after that you have to extend the filesystem.
For this job you have to umount first. As you want to extend /opt and /var you have to boot into single user mode.
Then do
extendfs /dev/vg00/rlvol6
extendfs /dev/vg00/rlvol7
and boot back to mutil user mode.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-21-2000 02:13 AM
11-21-2000 02:13 AM
Re: unused lv format unrecognized
Backup all the data from the filesystem involved. Note the logical volume numbers.
Reboot to single user mode(to umount the filesystems)
Extend /var and /opt:
lvextend -L XXX /dev/vg00/lvoln(n for /var or /opt).
extendfs -F vxfs /dev/vg00/rlvoln
Mount the filesystems and restore the files
Then, Reboot the system
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-21-2000 03:41 PM
11-21-2000 03:41 PM