temp dir


 
Thread Tools Search this Thread
Operating Systems Solaris temp dir
# 8  
Old 11-14-2011
run the installer with the -h or --help option
# 9  
Old 11-14-2011
Code:
# export TMPDIR=/someplace/else
# example
mkdir /var/tmp
chmod 1777 /var/tmp
# put this in /etc/profile if you want this to be permanent
export TMPDIR=/var/tmp

# 10  
Old 11-14-2011
If you don't find a way to change the temporary directory used by your installer, you can use this alternative.
Before launching it, run these commands:
Code:
/usr/sbin/mkfile 2048m /export/home/swapfile
/usr/sbin/swap -a /export/home/swapfile

Your /tmp directory will then have 2GB more available space until next reboot after which you'll be able to either remove the swap file or make it permanent by adding this line in /etc/vfstab:
Code:
/export/home/swapfile - - swap - no -


Last edited by jlliagre; 11-15-2011 at 08:59 AM..
# 11  
Old 11-15-2011
jim mcnamara,
export command doesnot work has error :is not identifier

---------- Post updated at 07:45 AM ---------- Previous update was at 07:19 AM ----------

Hi,jlliagre
I made first command as you write , but swap -a give me error ( size is invalid),also can you please tell me why you put /use/sbin in first wherever installation file is /tmp?
Thanks,
Reham

---------- Post updated at 07:46 AM ---------- Previous update was at 07:45 AM ----------

Hi,jlliagre
I made first command as you write , but swap -a give me error ( size is invalid),also can you please tell me why you put /use/sbin in first wherever installation file is /tmp?
Thanks,
Reham
# 12  
Old 11-15-2011
The commands I suggested should just work (I just edit the second one for it to work even if /usr/sbin isn't in your PATH).

Please cut and paste the exact commands you type and the error messages you get.
# 13  
Old 11-15-2011
usr/sbin/mkfile 2048m /export/home/swapfile ( i have a swapfile on its directory)
/usr/sbin/swap -a /export/home/swapfile
/export/home/swapfile: size is invalid
#


# 14  
Old 11-15-2011
What Solaris release are you running, on what architecture, with a 32 or 64 bit kernel ?

Anyway, try again with a smaller swap file:
Code:
# /usr/sbin/mkfile 1024m /export/home/swapfile
# /usr/sbin/swap -a /export/home/swapfile

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. AIX

Assign read write permission to the user for specific dir and it's sub dir and files in AIX

I have searched this quite a long time but couldn't find the right method for me to use. I need to assign read write permission to the user for specific directories and it's sub directories and files. I do not want to use ACL. I do not want to assign user the same group of that directories too.... (0 Replies)
Discussion started by: blinkingdan
0 Replies

2. Shell Programming and Scripting

KSH - Find paths of multiple files in CC (dir and sub-dir))

Dear Members, I have a list of xml files like abc.xml.table prq.xml.table ... .. . in a txt file. Now I have to search the file(s) in all directories and sub-directories and print the full path of file in a output txt file. Please help me with the script or command to do so. ... (11 Replies)
Discussion started by: Yoodit
11 Replies

3. UNIX for Dummies Questions & Answers

How to list all files in dir and sub-dir's recursively along with file size?

I am very new to unix as well as shell scripting. I have to write a script for the following requirement. In have to list all the files in directory and its sub directories along with file path and size of the file Please help me in this regard and many thanks in advance. (3 Replies)
Discussion started by: nmakkena
3 Replies

4. Shell Programming and Scripting

moving files from a dir in one machine to a dir in another machines

Hi, I am a unix newbie.I need to write a shell script to move my oracle READ WRITE datafiles from one serevr to another. I need to move it from /u01/oradata/W1KK/.. to /u01/oradata/W2KK, /u02/oradata/W1KK/.. to /u02/oradata/W2KK. That is, I actaully am moving my datafiles from one database to... (2 Replies)
Discussion started by: mathews
2 Replies

5. Shell Programming and Scripting

Perform action in dir if dir has .git subdir

Hi, I want to run git status for the dir which has subdir ".git" in it with dir path mentioned in output log? If a dir does not have .git subdir then skip that dir. Dir will have 100 main dirs & 500 + subdirs and so on. I appreciate all your help :b: (4 Replies)
Discussion started by: dragon.1431
4 Replies

6. Shell Programming and Scripting

A script to find dir, delete files in, and then del dir?

Hello!! I have directories from 2008, with files in them. I want to create a script that will find the directoried from 2008 (example directory: drwxr-xr-x 2 isplan users 1024 Nov 21 2008 FILES_112108), delete the files within those directories and then delete the directories... (3 Replies)
Discussion started by: bigben1220
3 Replies

7. UNIX and Linux Applications

CPIO Problem, copy to the root dir / instead of current dir

HI all, I got a CPIO archive that contains a unix filesystem that I try to extract, but it extract to the root dir / unstead of current dir, and happily it detects my file are newer otherwise it would have overwrited my system's file! I tried all these commands cpio -i --make-directories <... (2 Replies)
Discussion started by: nekkro-kvlt
2 Replies

8. UNIX for Dummies Questions & Answers

What is the default temp dir for UNIX AIX 5.3 and cleanup guide.

Hi, I'm new with UNIX. In fact I'm just an Oracle Apps programmer runs and maintaining the system in UNIX platform. I've got this question, what is the UNIX AIX 5.3 default temp directory. Is it /tmp or /var/tmp. Additional to that I was noted that OS also created temp/swap files in this... (1 Reply)
Discussion started by: Alikuching
1 Replies

9. Shell Programming and Scripting

How do I define a particular dir in PATH variable and then unset that dir

How do I define a particular dir in front of PATH variable and then run some job and then at the end of job SET the PATH variable to original? in a script, WILL something like this work: ORIG_PATH=$PATH export PATH=/dir1/dir2:$PATH RUN SOME JOBS ..... unset PATH EXPORT... (2 Replies)
Discussion started by: Hangman2
2 Replies

10. Shell Programming and Scripting

a script to clone a dir tree, & overwrite the dir struct elsewhere?

hi all, i'm looking for a bash or tcsh script that will clone an empty dir tree 'over' another tree ... specifically, i'd like to: (1) specify a src directory (2) list the directory tree/hiearchy beneath that src dir, w/o files -- just the dirs (3) clone that same, empty dir hierarchy to... (2 Replies)
Discussion started by: OpenMacNews
2 Replies
Login or Register to Ask a Question