Operating System - HP-UX
1753894 Members
7493 Online
108809 Solutions
New Discussion юеВ

Compile time problems with pxdb

 
SOLVED
Go to solution
Ben Larwood
Occasional Contributor

Compile time problems with pxdb

Hello,

I am running a b2000 HP-UX workstation, on which i want to compile my code with -g. However, when the code links, I get the message:

vxfs: mesg 001: vx+nospace - /dev/vg00/lvol4 file system fill.

This is the /tmp directory, and only has 192142 Kb. Is it possible to change the temporary directory that pxdb uses?

Thanks in advance

Ben
2 REPLIES 2
A. Clay Stephenson
Acclaimed Contributor
Solution

Re: Compile time problems with pxdb

Well-written UNIX programs follow the convention of looking for the environment variable TMP before defaulting to /tmp, /var/tmp, or on really old versions of UNIX /usr/tmp. Set and export TMPDIR and try it.

e.g

export TMPDIR=/xxx/yyy
If it ain't broke, I can fix that.
Ben Larwood
Occasional Contributor

Re: Compile time problems with pxdb


Great, that did it!

Thanks for the quick response.