- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- what are the files in /var/tmp in hp-ux 11.11
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
09-18-2003 09:37 PM
09-18-2003 09:37 PM
Firstly its very Glad to meet u all !! and its very great from u all for u r very valuable contributions
Question :
can u please give me wot could be the files and thier purpose in "/var/tmp "
some of them are :
vmunix.noreloc ( this is very large file)
and lots of files of these names :
badlines27390...
baaaaXXXXX
aaaabXXXXXX
can we delete them ?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-18-2003 10:10 PM
09-18-2003 10:10 PM
Re: what are the files in /var/tmp in hp-ux 11.11
you can delete the files with modification time more than 7 days.
List the files
#find /var/tmp -type f -mtime +7 -exec ll {} \;
Remove the files
#find /var/tmp -type f -mtime +7 -exec rm {} \;
for dir's
#find /var/tmp -type d -mtime +7 -exec rm -r {} \;
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-18-2003 10:15 PM
09-18-2003 10:15 PM
Re: what are the files in /var/tmp in hp-ux 11.11
#find /var/tmp -type f -mtime +15 -exec rm {} \;
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-18-2003 10:35 PM
09-18-2003 10:35 PM
Re: what are the files in /var/tmp in hp-ux 11.11
We have a claims management system that relies on a folder within /var/tmp and I found out the hard way it shouldn't be removed. My understanding though is that is not common.
Jim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-24-2003 04:09 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-24-2003 04:14 AM
09-24-2003 04:14 AM
Re: what are the files in /var/tmp in hp-ux 11.11
No biggie.
There really isn't a lot in /var that you need to operate the machine. You need some of those logs to make sure you have an audit trail.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-24-2003 04:49 AM
09-24-2003 04:49 AM
Re: what are the files in /var/tmp in hp-ux 11.11
Then I might delete files last accessed prior to the current month:
ll -u /var/tmp | grep -v Sep | awk '{print "rm ",$NF}' > useme
chmod +x useme
./useme
The safest way would have you reboot the box and run something like the above after the reboot only substituting "Sep 24" for Sep ..
Best regards,
Kent M. Ostby
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-25-2003 02:33 AM
09-25-2003 02:33 AM