- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- / is 100% - nothing to remove
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
04-22-2002 06:33 PM
04-22-2002 06:33 PM
/ is 100% - nothing to remove
on my internet server / is currently 100% , however when attempting to search for large files etc nothing is found. Do I need to reboot to clear ?
Thanks in advance
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-22-2002 06:37 PM
04-22-2002 06:37 PM
Re: / is 100% - nothing to remove
Use lsof to identify the processes holding on to opened files that have already been removed. You can get it from the following depot site.
http://hpux.connect.org.uk
Once you terminate the process, the space will be freed. Otherwise, a reboot suffices.
Hope this helps. Regards.
Steven Sim Kok Leong
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-22-2002 06:40 PM
04-22-2002 06:40 PM
Re: / is 100% - nothing to remove
Found it
-rw------- 1 root sys 65860608 Apr 23 02:52 /dev/rmt/1m
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-22-2002 06:47 PM
04-22-2002 06:47 PM
Re: / is 100% - nothing to remove
These are usually caused by misdirected backups that end up as an ordinary file. Suggest also that you implement a small script that identifies this type of problem on a regular basis if not already.
Cheers
~Michael~
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-24-2002 02:02 AM
04-24-2002 02:02 AM
Re: / is 100% - nothing to remove
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-24-2002 02:12 AM
04-24-2002 02:12 AM
Re: / is 100% - nothing to remove
ioscan -fnkCtape will get the device files. Change the backup script to use the correct device file.
Cheers,
Dave.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-24-2002 02:50 AM
04-24-2002 02:50 AM
Re: / is 100% - nothing to remove
# find /dev -size +10 -exec ls -ld {} \;