nohup command &

//指定输出
nohup command > myout.file 2>&1 &

// 不输出日志
 ./program >/dev/null 2>log &

//如果错误信息也不想要的话
./program >/dev/null 2>&1 &