- Community Home
- >
- Servers and Operating Systems
- >
- Legacy
- >
- HPE 9000 and HPE e3000 Servers
- >
- root Lvol 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
03-17-2001 01:35 AM
03-17-2001 01:35 AM
root Lvol full
One of our customer is having A-class server
in which root is full.root lvol is mounted separately. Pls help me. I am unable to find any file which can be removed from root to increase the free space in logical lvol.two days back.The DDS2 conected to the server was replaced. Now when i am trying to take the backup after starting the backup after some time Error comes of file system full.Tell me about Log files which can be removed. Or any dump files to be removed.Root file system is 80 mb.
thanks in Advance
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-17-2001 09:13 AM
03-17-2001 09:13 AM
Re: root Lvol full
1) Do an 'ioscan -fnC tape' to see what device files the tape is using. They probably changed after the drive was replaced.
2) cd to the /dev/rmt directory. Look in that directory for any tape device files that are unusually large, like more than 50,000,000 bytes. There is probably one there and it is probably the file that the tape drive WAS on before it got changed.
When the tape drive was replaced, the device files probably changed for some reason. If it was /dev/rmt/0m, it is now probably /dev/rmt/1m. So when you did your backup to /dev/rmt/0m, it created a file in /dev/rmt (which is in the / lv) called 0m and it probably filled up your root lvol.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2001 10:58 PM
03-18-2001 10:58 PM
Re: root Lvol full
Try a
find / -depth -mtime +1 -exec ll ${} \;
That should show you the files, which have been modified last. The big ones should be
among them.
Rgds
Alexander M. Ermes
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2001 11:02 PM
03-18-2001 11:02 PM
Re: root Lvol full
A better way to find the log files :
find / -depth -type f -name *.log
Rgds
Alexander M. Ermes
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-19-2001 01:17 AM
03-19-2001 01:17 AM
Re: root Lvol full
here's another way to get a list of big files:
du -akx / | sort -n
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2001 02:29 PM
03-21-2001 02:29 PM
Re: root Lvol full
Try this :
#find / -size +10000 -exec ls -l {} \;
it will show you all big files..