背景執行並隱藏輸出問題 - Linux

James avatar
By James
at 2022-01-31T21:36

Table of Contents

各位前輩好,

我有一支程序想要讓他在系統背景中執行,
查到的作法是在指令後面添加 & 符號。

https://imgur.com/ltYNjzl

所以我的執行指令是 python server.py & ,
但是當我 request 我的程序,
會看到 response 會從終端機直接顯示出來,如下圖。

https://imgur.com/ElvibN8

因為這會影響我的其他作業,我想請教如何隱藏這個 response ?
另外如果我想將每一次 response 寫入一個檔案 log 檔,
我試著用 python server.py > log & 指令,
但是沒有實現出來,請問針對這個問題要如何解決?

懇請指教,謝謝。

--
Tags: Linux

All Comments

Edith avatar
By Edith
at 2022-02-05T09:34
python server.py > log 2>&1 &
Suhail Hany avatar
By Suhail Hany
at 2022-02-09T21:32
nohup
Lydia avatar
By Lydia
at 2022-02-07T19:20
謝謝一樓,我去學習一下指令的意思,謝謝
Dinah avatar
By Dinah
at 2022-02-12T07:18
表示它 log 打在 stderr

Line視窗邊框置頂的解决方法

Elizabeth avatar
By Elizabeth
at 2022-01-29T12:19
* 問題 https://zhuanlan.zhihu.com/p/106926984 * 解決方法 我發現 line四個邊框分別屬於四個不同的視窗, 這四個邊框的 window ID分別是主視窗 ID + 10, ID + 14, ID + 18, ID + 22. 登入桌面環境後, 執行下列 scrip ...

Ubuntu文字符號輸入法

Catherine avatar
By Catherine
at 2022-01-29T11:10
我的Ubuntu是2004的版本,內建有酷音中文注音輸入法, 請問是否能在系統上安裝Google注音與微軟注音輸入法呢? 要打什麼的程式名字才可以在命令列下指令安裝呢? 我是菜鳥,只會基本安裝程式的指令,謝謝大家的回答.... - ...

tmux

Ethan avatar
By Ethan
at 2022-01-27T17:21
本來想問問題 結果google後解決 不過也許會有人也有機會卡到 寫一篇記錄一下 情況: 到新公司 發現有灌tmux 但是在~底下grep不到.tmux.conf 只有.cshrc 預設prefix是Ctrl+b 用不順手 想改掉 換成Ctrl+a 以前都是用人家弄好好的.conf 所以研究一下DIY要怎麼 ...

背景執行與輸出導向疑問

Charlie avatar
By Charlie
at 2022-01-25T22:47
cp -p dirA dirB andgt; /tmp/log 2andgt;andamp;1 andamp; 整段丟背景執行 cp -p dirA dirB andamp; andgt; /tmp/log 2andgt;andamp;1 前面丟背景執行,如有輸出再導向 哪個才是正確的作法呢? ...

用 fsarchiver 備份硬碟分割

Lauren avatar
By Lauren
at 2022-01-24T04:25
fsarchiver 可把某硬碟分割區,備份且壓縮成成 image,儲存在其它磁碟。 比 partimage 更多功能,且支援 ext4 和ntfs 等格式。 http://lycomputer.blogspot.com/2022/01/fsarchiver-partition.html - ...