Questions tagged «stdout»


2
如何查看启动应用程序的stdout / stderr?
登录时,我在启动应用程序中拥有的某些命令无法正常启动。(特别是我在使用gtk-redshift时遇到了麻烦。)为了进行调试,我希望能够查看stdout / stderr。我没有找到启动应用程序的日志文件。我尝试使用“ >> log.txt”重定向到文件,但未成功。 如何查看启动应用程序的stdout / stderr?更好的是,是否有启动应用程序的日志文件?

3
命令末尾&的含义是什么?
我有一个启动脚本行: pyprogramm >> /dev/null 2>&1 & 含义: >> /dev/null - redirect stdout to null device 2>&1 - redirect stderr to stdout (that is redirected to null device) 但是最后的&意思是什么?

2
15.04上的systemd不会记录单元的标准输出
我目前正在尝试将systemd单元用作网络服务器。目前,我的foo.service文件如下所示: [Unit] Description=The Foo Web Server [Service] Type=simple ExecStart=/opt/foo/.cabal-sandbox/bin/foo [Install] WantedBy=multi-user.target 该foo可执行文件会自动将所有HTTP请求记录到stdout-这是经过充分测试的。但是,当我使用查看日志时journalctl -u foo,只会得到如下输出: ... May 06 17:46:57 localhost systemd[1]: Stopping The Foo Web Server... May 06 17:46:57 localhost systemd[1]: Started Foo Web Server. May 06 17:46:57 localhost systemd[1]: Starting The Foo Web Server... May 06 17:47:08 localhost systemd[1]: Stopping …
12 15.04  log  logging  systemd  stdout 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.