- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- unix administrator
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
Discussions
Discussions
Discussions
Forums
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
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-09-2007 07:59 PM
тАО04-09-2007 07:59 PM
Server say /tmp 100 full
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-09-2007 08:14 PM
тАО04-09-2007 08:14 PM
Solution$ bdf /tmp
Is /tmp on its own filesystem? If not, you would have to search more places than in the following.
What large files are there??
$ du -kxs /tmp/*
If the above command shows a directory, do that du command in for that directory.
If you figure out these files are useless, you would have to remove them, or move them elsewhere.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-10-2007 12:03 AM
тАО04-10-2007 12:03 AM
Re: unix administrator
by definition the /tmp directory is for temporary files. Delete anything in it older than two weeks (this can be done via a cron job)
It is probably a good idea to backup the tmp directory before you initially erase the files as some programmers do not understand the word temporary
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-10-2007 12:33 AM
тАО04-10-2007 12:33 AM
Re: unix administrator
or
if you got this error while you try to install oracle, then you have to change the oratmp variable to another dir path; normally /var/tmp is good for this.
Rasheed Tamton.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-10-2007 12:43 AM
тАО04-10-2007 12:43 AM
Re: unix administrator
Welcome to ITRC.
Setting the TEMP variable to another location prior to starting the Oracle installer will solve the problem.
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
тАО04-10-2007 02:03 AM
тАО04-10-2007 02:03 AM
Re: unix administrator
Your shell scripts should be modified to do something like this:
TDIR=${TMPDIR:-/var/tmp}
TFILE1=${TDIR}/X${$}_1.tmp
TFILE2=${TDIR}/X${$}_2.tmp
...
...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-10-2007 02:16 PM
тАО04-10-2007 02:16 PM
Re: unix administrator
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-10-2007 02:47 PM
тАО04-10-2007 02:47 PM
Re: unix administrator
See: http://forums1.itrc.hp.com/service/forums/helptips.do?#28
Regards,
Hein.
[ 0 point for this please ]