- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Strange behaviour on a new FS
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-29-2002 06:11 AM
05-29-2002 06:11 AM
I created a HFS file system on a lvol. I mounted it and umounted fine.
Then I created a VxFS file system on the same lvol... I cannot mount it.
fstyp command returns different values:
fstyp /dev/vgXX/lvolA --> HFS
fstyp /dev/vgXX/rlvolA --> VxFS
Any idea ?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2002 06:16 AM
05-29-2002 06:16 AM
Re: Strange behaviour on a new FS
# lvremove lv_name
# lvcreate -L size -n lv_name
# newfs -F vxfs rlv_name
# mount lv_name /mount_point
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2002 06:16 AM
05-29-2002 06:16 AM
Re: Strange behaviour on a new FS
You have not used the correct device files while creating the filesystem.
Here you have used lvol for hfs fs and rlvol for vxfs filesystem.
While creating a filesystem you should always use a raw device file ie. rlvol
# newfs -F vxfs /dev/vg01/rlvol1
# newfs -F hfs /dev/vg01/rlvol1
You can do a lvremove of the lvol and recreate the lvol again
Piyush
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2002 06:19 AM
05-29-2002 06:19 AM
Re: Strange behaviour on a new FS
The logical volume "/dev/vgXX/lvolA" is not empty;
do you really want to delete the logical volume (y/n) : y
lvremove: Couldn't delete logical volume "/dev/vgXX/lvolA":
The specified logical volume is open, or
a sparing operation is in progress.
Volume Group configuration for /dev/vgXX has been saved in /etc/lvmconf/vgXX.conf
??????????????????????
Maybe this is the problem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2002 06:21 AM
05-29-2002 06:21 AM
Re: Strange behaviour on a new FS
# newfs -F vxfs /dev/vgXX/rlvolA
before you remount it back as a VXFS. Is that what you did ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2002 06:21 AM
05-29-2002 06:21 AM
Re: Strange behaviour on a new FS
I'm sure I used the raw special file.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2002 06:23 AM
05-29-2002 06:23 AM
Re: Strange behaviour on a new FS
All you do is to recreate the logical vloume , after deleteing the old one , and ofcourse run a newfs on the same .
Manoj Srivastava
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2002 06:28 AM
05-29-2002 06:28 AM
Solution- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2002 06:37 AM
05-29-2002 06:37 AM
Re: Strange behaviour on a new FS
# vgchange -a n vgXX
vgchange: Couldn't deactivate volume group "vgXX":
Device busy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2002 06:38 AM
05-29-2002 06:38 AM
Re: Strange behaviour on a new FS
Try lvremove with -f option, and if still you getting the error, then you may need to boot in single user mode, then execute 'lvremove -f'
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2002 06:45 AM
05-29-2002 06:45 AM
Re: Strange behaviour on a new FS
1) LVs on the VG is still mounted
2) Minor number conflict
For 2, check ..
# ll /dev/vg*/group
==> see if you got any 2 similar minor number.
Also the "sparing operation .." message kind of bothers me too. But only if you're using a PV (disk) solely as spare in your VG, otherwise the message is not applicable to you.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2002 06:48 AM
05-29-2002 06:48 AM
Re: Strange behaviour on a new FS
If you just want to get rid of the VG, you can do 'vgexport'. But make sure that you don't have any important LVs configured on this VG.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2002 06:54 AM
05-29-2002 06:54 AM
Re: Strange behaviour on a new FS
Manoj Srivastava
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-08-2004 08:46 PM
09-08-2004 08:46 PM