- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- write failed, file system is full
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
01-21-2002 08:49 PM
01-21-2002 08:49 PM
I found a file system " / " which is full.
Since the spaces are good enough. I didn't find any big sized files during the happen. Does anyone have an idea? Thank you.
ajk
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-21-2002 08:55 PM
01-21-2002 08:55 PM
Re: write failed, file system is full
This is a very large file which was created when a user tried to perform a tar but using /dev/rmt/om instead of /dev/rmt/0m...
just a thought...
-Dan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-21-2002 09:22 PM
01-21-2002 09:22 PM
Re: write failed, file system is full
Another possibility is you have open file(s) residing in / These files have already been removed but processes are still writing to these opened file(s).
To verify, run lsof on / and check for any open file(s) that have already been physically removed. To remove such files, you have to terminate the process that is writing to these open file(s).
lsof can be downloaded from
http://hpux.asknet.de/hppd/hpux/Sysadmin/lsof-4.55/
Hope this helps. Regards.
Steven Sim Kok Leong
Hope this helps. Regards.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-21-2002 09:49 PM
01-21-2002 09:49 PM
SolutionTry these
1.#find / -depth -mtime +1 -exec ll ${} \;
That should show you the files, which have been modified last. The big ones should be
among them.
2.#find / -depth -type f -name *.log
3.#du -akx / | sort -n
4.#find / -size +10000 -exec ls -l {} \;
5.Any core file?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-21-2002 09:53 PM
01-21-2002 09:53 PM
Re: write failed, file system is full
we can't increase the / size since it will be contiguous allocation. remove any unwanted files. or you can shift your activity to another filesystem which has enough space