in our server the space in temp directory (located at /tmp) is 485 MB which is very low. I want to increase that space. can you suggest how can I increase that space.
If you server has space then you can create the partition and then
=============
--> /dev/sda
. type n
. type l
. press enter again
. enter +700M
. write w and press enter
--> write partprobe
--> mkfs.ext3 /dev/sda_what_ever_drive
--> umount /tmp
--> mount /dev/sda_what_ever_drive /tmp
==============
if you want the changes to be effective after even reboot then please add enteries in /etc/fstab
in our server the space in temp directory (located at /tmp) is 485 MB which is very low. I want to increase that space. can you suggest how can I increase that space.