- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Delete .old files
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
10-01-2008 07:31 AM
10-01-2008 07:31 AM
Delete .old files
/var/opt/ignite/recovery/2008-10-01,11:17/flist -a 8273690
* Preparing to create a system archive.
* Archiving contents of apple via tar image to local device /dev/rmt/0mn.
My question is that can I delete the .old files in /etc/lvmconf while the ignite backup is going on?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-01-2008 07:38 AM
10-01-2008 07:38 AM
Re: Delete .old files
But this will probably not give you a lot of free space ...
Hope this helps!
Regards
Torsten.
__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.
__________________________________________________
No support by private messages. Please ask the forum!
If you feel this was helpful please click the KUDOS! thumb below!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-01-2008 07:45 AM
10-01-2008 07:45 AM
Re: Delete .old files
as said by Torsten, yes, but what do you want?
How much files, how much disk space will this offer you?
You should try to solve the real problem - which root file system is full - where you want to take the ignite - than that doesn't matter at all.
At the system where you want to store the backup - then you'll have a bigger problem:
your system says:
Archiving contents of apple via tar image to local device /dev/rmt/0mn
This is a tape device - if this device doesn't exists, your /dev directory is just filled with an ignite image.
You have to stop the image creation and delete this image file!
Then start again with the proper path.
Volkmar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-01-2008 08:58 AM
10-01-2008 08:58 AM
Re: Delete .old files
Apart from this method you can search for big files, old core files which are taking more spaces or used lsof to check big open files.
find /yourpatch -xdev -type f -size +100000c
find / -name core -print
lsof +L1
Suraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-01-2008 12:45 PM
10-01-2008 12:45 PM
Re: Delete .old files
We can help you compare with our systems and maybe give you an idea of where to look.
One big reason typically for / to be full is a typo during a backup.
e.g. fbackup -f /dev/rmt/mn0 will create a file called mn0 in /dev/rmt.
find /dev -type f
should not return anything.
next steps would be running a du -sk on each non-mount point under / and comparing to a good system. (e.g. du -sk /etc, du -sk /sbin, du -sk /dev )