Results 1 to 2 of 2
Hi,
I want to modify the temporary directory location inorder to save the temporary files used by my application from /tmp to /jboss/tmp/vimal/
Can someone help me on how to ...
- 04-06-2009 #1Just Joined!
- Join Date
- Apr 2009
- Posts
- 1
Modify the temporary directory location
Hi,
I want to modify the temporary directory location inorder to save the temporary files used by my application from /tmp to /jboss/tmp/vimal/
Can someone help me on how to modify the temporary folder location?
- 06-07-2009 #2Just Joined!
- Join Date
- Jun 2009
- Posts
- 29
Just make a symlink
rm -fr /tmp
ln -fs /jboss/tmp/vimal/ /tmp
Mind it to backup important files from /tmp directory before running above command.


Reply With Quote