Re: How to run a vkernel as a background process

2019-04-28 Thread Antonio Huete Jiménez
Hi, vkernels can be started from rc.conf. Please check /etc/defaults/rc.conf to see the options. Regards, Antonio Huete Matthew Dillon escribió: Try redirecting stdout and stderr to a file. notty -12 blahblahblabhalh & /tmp/logfile That's with csh or tcsh . With sh it would be notty

Re: How to run a vkernel as a background process

2019-04-28 Thread Matthew Dillon
Try redirecting stdout and stderr to a file. notty -12 blahblahblabhalh >& /tmp/logfile That's with csh or tcsh . With sh it would be notty -12 blsahblahblbha > /tmp/logfile 2>&1 And then see what error you are getting. -Matt