- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- ll - hangs
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-28-2000 08:18 AM
11-28-2000 08:18 AM
Today Iam stuck with a small problem (May be turning big). I have a directory called ../..../temp in this thereis a 45GB file. When I try to ll on this director it indefinitely hangs. Iam not sure whats going on. Looks like filesystem corruption.
This is a vxfs filesystem.
How do I overcome this problem does fsck fix it ?
Any inputs are appreciated.
Thanks,
Madhu
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-2000 08:40 AM
11-28-2000 08:40 AM
Re: ll - hangs
If you have lsof, I would use it to find out what is writing to the file. else, try ps -ef | grep "FILENAME" to see if you can see what is writing to it. You need to kill that process, or you can not delete it.
You can also try to
>cat /dev/null > FILENAME which may give it a temporary zero bite size. Again though, if you dont know what is writing to it it will grow again, or not let you overwrite it.
Regards,
Shannon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-2000 08:41 AM
11-28-2000 08:41 AM
SolutionDo you know what process is generating such a big file (eg. fuser -fu /path/to/your/file or lsof) ? This may be the source of your problem.
You can also try to issue a fsck -F vxfs -o full /mountpoint after having unmounted it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-2000 08:41 AM
11-28-2000 08:41 AM
Re: ll - hangs
you said:
I have a directory called ../..../temp in this thereis a 45GB file
What's the full pathname of your directory?
What about using 'ls' instead of 'll' is it still hanging ?
By the way, is it where you put your tarfile that we were talking about this morning?
Best regards,
Dan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-2000 08:48 AM
11-28-2000 08:48 AM
Re: ll - hangs
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-2000 09:30 AM
11-28-2000 09:30 AM
Re: ll - hangs
Another thing that may be wrong is that you may have a disk going out. I have had this happen to me when I had a power supply on a tray (the old 6000 disk trays) go out and all 5 disks in one tray were down. Although if this is the case, I don't know why ls would work but ll would not.
I would definitely check for any runaway or other processes that might be writing to that file/directory.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-2000 09:38 AM
11-28-2000 09:38 AM
Re: ll - hangs
Iam sure no other process is writing to the file right now. Since it is being a production server, need to wait till some batch process is finished before I could run fsck.
What is the best tool available for full(A-Z) filesystem repair in the world ?
Thanks,
...Madhu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-2000 10:45 AM
11-28-2000 10:45 AM
Re: ll - hangs
You may also want to do a 'man fsadm_vxfs' to see what else is available to you. I don't remember if fsadm_vxfs requires the OnlineJFS product or not.