Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

temp directory in AIX 1

Status
Not open for further replies.

twe

MIS
May 3, 2000
1
US
I keep running out of temporary space in /var/tmp.  Is there a way to redirect the temporary location to /tmp?
 
Might be safest to do this in single user mode, but if you're really sure that this is what you want to do:<br><FONT FACE=monospace><br>cd /var<br>rm -fr ./tmp<br>ln -s /tmp /var/tmp<br></font><br>This removes /var/tmp and then sets up a symbolic link from /tmp to /var/tmp.<br><br>Although this should work, there's a very slight possibility that this might cause applications to fail if they are expecting /var/tmp to be a &quot;real&quot; directory.<br><br>Another possiblity may be for you to extend the size of /var/tmp, if it is under volume manager control.&nbsp;&nbsp;This would probably be a better way of doing things.
 
Why don't you better make a new jfs filesystem for /var/tmp? You'll have better control of it -I guess-I hope it works
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top