- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Checking RAW 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
08-23-2004 02:11 AM
08-23-2004 02:11 AM
Checking RAW Filesystem
What is the command to check raw filesystem on
on the system and their size.
Thank,
Amit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2004 02:19 AM
08-23-2004 02:19 AM
Re: Checking RAW Filesystem
Raw generally refers to devices, although you can have raw logical volumes. In the case of raw devices, "ll /dev/rdsk" will identify them and "diskinfo /dev/rdsk/cNtNdN" will report their size. In the case of raw logical volumes, "ll /dev/vg*/rlvol*" will identify them and lvdisplay will tell you their size.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2004 02:22 AM
08-23-2004 02:22 AM
Re: Checking RAW Filesystem
You could use the lvdisplay command to check the size of the raw volume, works the same as for volums with a filesystem.
test the swap volume.
# lvdisplay -v /dev/vg00/lvol2
Regards,
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2004 02:36 AM
08-23-2004 02:36 AM
Re: Checking RAW Filesystem
i think to meet your requirements you should do the following
lvdisplay (-v) /dev/vgXX/lvolXX
Regards
Franky
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2004 06:05 AM
08-23-2004 06:05 AM
Re: Checking RAW Filesystem
The lvdisplay /dev/vg
Regards,
Gideon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2004 06:29 AM
08-23-2004 06:29 AM
Re: Checking RAW Filesystem
Another simple check to see if the underlying media is okay is a dd.
e.g.
dd if=/dev/vg01/rlvol1 bs=64k of=/dev/null