- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Disk maintenance
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-22-2000 06:56 AM
08-22-2000 06:56 AM
Disk maintenance
E.g., I sometimes get messages during fsck that a particular block cannot be read.
If that block is part of a file, it would be nice to know which file.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2000 07:03 AM
08-22-2000 07:03 AM
Re: Disk maintenance
Just play with edit commands (copy and past).
If you have CDE via Exeed into PC, play with the right button of the mouse->edit.
For xstart, it is the same highlight and copy and to past it you can use Past Special...
But, it is another easy way, doesn't matter what you use: redirect the output to a file #command >file. Attach the file direct to the forum or email it to yourself...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2000 07:03 AM
08-22-2000 07:03 AM
Re: Disk maintenance
Ive never heard of a way of finding out which file a particular block belongs to on HP-UX, but you could do it the other way around. For each file on a filesystem dd it to /dev/null and if that file is on a block which cant be read you will get an I/O error when accessing it. eg;
cd /tmp
for i in `find . -print`
do
echo $i
dd if=$i of=/dev/null bs=64k
done
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2000 07:04 AM
08-22-2000 07:04 AM
Re: Disk maintenance
man fsdb
man fsdb_hfs
man fsdb_vxfs
would be able to give you the information but only if you know what you are doing!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2000 07:06 AM
08-22-2000 07:06 AM
Re: Disk maintenance
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2000 07:17 AM
08-22-2000 07:17 AM
Re: Disk maintenance
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2000 07:45 AM
08-22-2000 07:45 AM
Re: Disk maintenance
ncheck it is suppose to give you a list of the path names from inode numbers. You might get it.
Good luck
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2000 07:56 AM
08-22-2000 07:56 AM
Re: Disk maintenance
Tony