ps 输出中的“pts/6”或“?”是什么意思

ps 输出中的“pts/6”或“?”是什么意思

我在不同的端口运行比特币、莱特币、狗狗币、极光币和匿名币服务器。当我 grep 时,每个币都有不同的配置,如下所示。我不明白问号是什么,pts 是什么。跟着一些东西这里。我的配置正确吗??

$ ps -ef | grep bitcoin
1001     18662 18279  2 17:34 pts/6    00:00:02 bitcoind
1001     18751 18279  0 17:35 pts/6    00:00:00 grep bit
$ ps -ef | grep lite
1001     18712 18279  2 17:35 pts/6    00:00:01 ./litecoin-d/src/litecoind
1001     18754 18279  0 17:36 pts/6    00:00:00 grep lite
$ ps -ef | grep doge
1001     18719     1  6 17:35 ?        00:00:03 ./dogecoin-d/src/dogecoind
1001     18756 18279  0 17:36 pts/6    00:00:00 grep doge
$ ps -ef | grep auro
1001     18522     1  0 17:24 ?        00:00:06 ./auroracoin-d/src/auroracoind
1001     18758 18279  0 17:36 pts/6    00:00:00 grep auro
$ ps -ef | grep anon
1001     18743 18279  3 17:35 pts/6    00:00:01 ./anoncoin-d/src/anoncoind
1001     18762 18279  0 17:36 pts/6    00:00:00 grep anon

答案1

第六个字段表示命令正在哪个终端上运行。对于 grep 命令,它运行在 pts/6 或伪终端号 6 上,这恰好是分配给您打开的终端窗口的伪终端。守护进程不附加到任何终端;它们只是在后台运行,无需人工交互,因此有“?”。

相关内容