- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Why does lvmtab have "DZ+%" ?
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-27-2006 08:33 AM
05-27-2006 08:33 AM
#################################
root[/etc]
# strings /etc/lvmtab
/dev/vg00
DZ+%
/dev/dsk/c2t0d0
/dev/dsk/c2t1d0
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-27-2006 08:47 AM
05-27-2006 08:47 AM
Re: Why does lvmtab have "DZ+%" ?
the "lvmtab" file is binary file. When you use "strings" command to see a binary file, it will show you ASCII strings encountered in the file.
In your case , the "strings" did find the
"DZ+%" ascii string and it is displayed besides the VG00 information.
Nothing to worry about that string.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-27-2006 08:49 AM
05-27-2006 08:49 AM
Solutioncat -v /etc/lvmtab
But buried in this binary file are strings of displayable ASCII characters which the strings command will find and display. The test for displayable characters is somewhat complex but since many of the binary codes look like displayable characters, you'll see a few meaningless strngs. lvmtab is decoded with the vgdisplay command but since it provides more details than needed, the strings command is often used as a shorcut. Only the device files and volume groups strings are valid.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-27-2006 08:49 AM
05-27-2006 08:49 AM
Re: Why does lvmtab have "DZ+%" ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-27-2006 08:56 AM
05-27-2006 08:56 AM
Re: Why does lvmtab have "DZ+%" ?
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-27-2006 09:11 AM
05-27-2006 09:11 AM
Re: Why does lvmtab have "DZ+%" ?
Thanks
Jerry Sims
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2006 01:01 AM
05-29-2006 01:01 AM
Re: Why does lvmtab have "DZ+%" ?
As any volume group name starts with /dev/ 6 chars is the minimum length.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2006 05:47 PM
05-29-2006 05:47 PM
Re: Why does lvmtab have "DZ+%" ?
Hi,
Since it is a binary file, strings command only looking for the ascii characters in that file and occassionaly strange character will appear. nothing to worry about that.
strings is not a command that suppose to tell all vg configuration, instead vgdisplay on individual vg will do.The strings command is just a way to "cheat" and see info on all the vg's at once. It depends how strings pulls ascii characters
out of unformated files and so if any strings of ascii characters exist other than the vg info then they will be displayed.
Ganesh.