vBulletin Search Engine Optimization
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| Hello, Could someone tell me how to increase the size of the tmp directory on an HP-UX. It is a C3000 and has the 'sam' tool on it. Please post a reply as opposed to e-mailing as Google does not allow me to put no-spam, etc. in my e-mail address and therefore have disabled the above address (plus it helps others with the same problem). Thanks, Jim |
| |||
| If you have OnlineJFS installed on your system (and if your /tmp is not strictly contiguous, which is more than probable), you can simply do this : # lvextend -L total_size /dev/vg00/lvol4 (assuming your /tmp is the mount point of lvol4) # fsadm -b (total_size*1024) /tmp <deja@webfuture.com> a écrit dans le message de news: 1113243860.770300.221690@f14g2000cwb.googlegroups. com... > Hello, > > Could someone tell me how to increase the size of the tmp directory on > an HP-UX. It is a C3000 and has the 'sam' tool on it. Please post a > reply as opposed to e-mailing as Google does not allow me to put > no-spam, etc. in my e-mail address and therefore have disabled the > above address (plus it helps others with the same problem). > > Thanks, > > Jim > |
| ||||
| Hey; On 2005-04-11, deja@webfuture.com <deja@webfuture.com> wrote: > > > Hello, > > Could someone tell me how to increase the size of the tmp directory on > an HP-UX. It is a C3000 and has the 'sam' tool on it. Please post a > reply as opposed to e-mailing as Google does not allow me to put > no-spam, etc. in my e-mail address and therefore have disabled the > above address (plus it helps others with the same problem). > In the much more likely scenario that you don't have online JFS, you will have to boot to single user mode. The procedure is as follows: 1. Verify the logical volume and filesystem type hat tmp is using. It's more than likely /dev/vg00/lvol4 and vxfs, but may have changed. mount | grep "^/tmp" lv is the /dev/vg00 thing; if it says delaylog, its vxfs. 2. lvextend -L ${size_in_megs} ${tmp_lvol} 3. Reboot the system to single user mdoe: a. shutdown -r now b. Press space when you see the message about 10 seconds to interrupt the boot sequence. "Interact" with IPL c. At the IPL prompt, enter "hpux -is" w/o quotes 3. When you get a prompt, enter extendfs -F ${fs_type} ${raw_lv} if tmp_lvol = /dev/vg00/lvol4, raw_lv = /dev/vg00/rlvol4 4. shutdown -r now |