On Tue, Feb 16, 2021 at 1:37 PM Bartek Krawczyk <bbartlomiej.m...@gmail.com> wrote: > > Hi, > is there any program in base which allows to daemonize programs which > don't detach from console, don't have any "-daemon" option etc.? There > are sysutils/daemond and sysutils/daemonize in pkgsrc of course but do > we have anything like "daemon" in FreeBSD base? > > As a workaround I'm using "&" from /bin/sh at the moment. >
Classic nohup ./prog 2>&1 & should be an upgrade to what you are currently doing, then :)