CFD Online Discussion Forums

CFD Online Discussion Forums (https://www.cfd-online.com/Forums/)
-   Main CFD Forum (https://www.cfd-online.com/Forums/main/)
-   -   Problems in a Background running of Intel Fortran (https://www.cfd-online.com/Forums/main/8683-problems-background-running-intel-fortran.html)

Minsuk Choi February 10, 2005 15:27

Problems in a Background running of Intel Fortran
 
Hello I'm using non-commercial Intel Fortran 8.0 to compile my CFD code. I have one big problem in a background running of this compiler. I've done my work like followings.

palgong> ifort rfdt.f -o rfdt -O2

palgong> ./rfdt &

It works well but after my logging out, the running program(rfdt) is stopped by system. So, I tested g77(f77) in comparison to ifort.

palgong> g77 rfdt.f -o rfdt -O2

palgong> ./rfdt &

It works well after my logging out.

I have a headache due to this problem. Thank you. ^^


Minsuk Choi February 10, 2005 16:47

Re: Problems in a Background running of Intel Fort
 
^^ I've got answer to refer discussions in this forum.

palgong> ifort rfdt.f -o rfdt -O2

palgong> ./rfdt > /dev/null &

^^ good luck!!

matej February 11, 2005 04:55

Re: Problems in a Background running of Intel Fort
 
you can also do it in more informative way to have the output.

try:

> nohup ./rfdt &

this will create nohup.out file with standart output written in there.

matej


All times are GMT -4. The time now is 01:04.