我正在redhat 6上运行jupyter Lab 4.4.0。我试图在后台启动该实验室,以便该应用程序的输出不再出现在控制台中。
$ jupyer lab & > /dev/null 2>&1
但是控制台仍显示jupyter应用程序的输出(例如启动消息和任何保存日志)
答案 0 :(得分:1)
您应该这样重写命令:
$ jupyer lab >/dev/null 2>&1 &
添加nohup也是明智的选择,以免在您注销后停止应用程序
$ nohup jupyer lab >/dev/null 2>&1 &