View Single Post
  #3  
Old 10-05-2006, 10:59 AM
eq4me
Hill Giant
 
Join Date: Jul 2006
Posts: 166
Default

You can detach it from the shell.

try

Code:
wine MiniLogin.exe > /tmp/Minilogin.log &
Minilogin is now working in the background and its output will be written into /tmp/Minilogin.log. I'll write an propper init script as soon as I have time.

You could also use the command nohup

Code:
nohup wine MiniLogin.exe
downside is that the output is always going to nohup.out.

You can find more about shell programming here:
http://www.freeos.com/guides/lsst/index.html

Last edited by eq4me; 10-05-2006 at 07:17 PM..
Reply With Quote