{"id":512,"date":"2024-04-08T13:34:14","date_gmt":"2024-04-08T05:34:14","guid":{"rendered":"https:\/\/yiwanqi.top\/?p=512"},"modified":"2024-04-08T13:39:58","modified_gmt":"2024-04-08T05:39:58","slug":"%e5%9c%a8linux%e6%9c%8d%e5%8a%a1%e5%99%a8%e4%b8%8a%e4%bd%bf%e7%94%a8python%e4%bb%a3%e7%a0%81%e5%ae%9e%e7%8e%b0%e5%90%8e%e5%8f%b0%e8%bf%90%e8%a1%8c","status":"publish","type":"post","link":"https:\/\/yiwanqi.top\/index.php\/2024\/04\/08\/%e5%9c%a8linux%e6%9c%8d%e5%8a%a1%e5%99%a8%e4%b8%8a%e4%bd%bf%e7%94%a8python%e4%bb%a3%e7%a0%81%e5%ae%9e%e7%8e%b0%e5%90%8e%e5%8f%b0%e8%bf%90%e8%a1%8c\/","title":{"rendered":"\u5728Linux\u670d\u52a1\u5668\u4e0a\u4f7f\u7528Python\u4ee3\u7801\u5b9e\u73b0\u540e\u53f0\u8fd0\u884c"},"content":{"rendered":"\n<p>\u5f53\u9700\u8981\u5728\u8fdc\u7a0b\u670d\u52a1\u5668\u4e0a\u8fd0\u884c\u5927\u578b\u7a0b\u5e8f\u6216\u901a\u8fc7SSH\u8fdc\u7a0b\u767b\u5f55\u65f6\uff0c\u901a\u5e38\u9700\u8981\u5c06\u7a0b\u5e8f\u653e\u5728\u540e\u53f0\u8fd0\u884c\u3002<\/p>\n\n\n\n<p>\u4ee5\u4e0b\u662f\u5982\u4f55\u4f7f\u7528 nohup \u547d\u4ee4\u5c06 Python \u7a0b\u5e8f\u653e\u5728\u540e\u53f0\u8fd0\u884c\u7684\u65b9\u6cd5\uff1a<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>nohup python3 -u my_program.py > my_program.out 2>&amp;1 &amp;<\/code><\/pre>\n\n\n\n<p>\u89e3\u91ca\u5982\u4e0b\uff1a<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>&#8220;nohup&#8221;\uff1a\u786e\u4fdd\u7a0b\u5e8f\u4e0d\u4f1a\u6302\u8d77\uff1b<\/li>\n\n\n\n<li>&#8220;python3&#8243;\uff1a\u6307\u5b9a\u6267\u884c Python3 \u4ee3\u7801\uff1b<\/li>\n\n\n\n<li>&#8220;-u&#8221;\uff1a\u8868\u793a\u4e0d\u4f7f\u7528\u7f13\u5b58\uff0c\u5b9e\u65f6\u5c06\u8f93\u51fa\u4fe1\u606f\u6253\u5370\u5230\u65e5\u5fd7\u6587\u4ef6\uff08\u5982\u679c\u4e0d\u52a0\u6b64\u9009\u9879\uff0c\u4f7f\u7528 tail \u67e5\u770b\u65e5\u5fd7\u65f6\u5185\u5bb9\u4e0d\u4f1a\u5b9e\u65f6\u5237\u65b0\uff09\uff1b<\/li>\n\n\n\n<li>&#8220;my_program.py&#8221;\uff1a\u8981\u8fd0\u884c\u7684\u7a0b\u5e8f\uff1b<\/li>\n\n\n\n<li>&#8220;&gt;&#8221;\uff1a\u5c06\u8f93\u51fa\u4fe1\u606f\u91cd\u5b9a\u5411\u5230\u65e5\u5fd7\u6587\u4ef6\uff1b<\/li>\n\n\n\n<li>&#8220;my_program.out&#8221;\uff1a\u8f93\u51fa\u7684\u65e5\u5fd7\u6587\u4ef6\uff1b<\/li>\n\n\n\n<li>&#8220;2&gt;&amp;1&#8243;\uff1a\u5c06\u6807\u51c6\u9519\u8bef\u8f93\u51fa\u8f6c\u6362\u4e3a\u6807\u51c6\u8f93\u51fa\uff0c\u4ee5\u4fbf\u5c06\u9519\u8bef\u4fe1\u606f\u8f93\u51fa\u5230\u65e5\u5fd7\u6587\u4ef6\u4e2d\uff0c\u5176\u4e2d 0 \u8868\u793a stdin\uff0c1 \u8868\u793a stdout\uff0c2 \u8868\u793a stderr\uff1b<\/li>\n\n\n\n<li>&#8220;&amp;&#8221;\uff1a\u6700\u540e\u4e00\u4e2a &#8220;&amp;&#8221; \u8868\u793a\u5728\u540e\u53f0\u8fd0\u884c\u7a0b\u5e8f\u3002<\/li>\n<\/ul>\n\n\n\n<p>\u7a0b\u5e8f\u8fd0\u884c\u540e\u4f1a\u663e\u793a\u8fdb\u7a0b\u53f7\uff0c\u53ef\u4f7f\u7528\u4ee5\u4e0b\u547d\u4ee4\u67e5\u770b\u8fdb\u7a0b\uff1a<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>ps -ef | grep python3<\/code><\/pre>\n\n\n\n<p>\u8981\u7ec8\u6b62\u8fdb\u7a0b\uff0c\u8bf7\u4f7f\u7528 kill \u547d\u4ee4\uff1a<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>kill -9 \u8fdb\u7a0b\u53f7<\/code><\/pre>\n\n\n\n<p>\u4f7f\u7528 tail \u547d\u4ee4\u67e5\u770b\u65e5\u5fd7\u5185\u5bb9\uff1a<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>tail -f my_program.out<\/code><\/pre>\n\n\n\n<p>\u5728\u7a0b\u5e8f\u8fd0\u884c\u8fc7\u7a0b\u4e2d\uff0c\u60a8\u4e5f\u53ef\u4ee5\u4f7f\u7528 Ctrl+C \u9000\u51fa\u67e5\u770b\u65e5\u5fd7\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u5f53\u9700\u8981\u5728\u8fdc\u7a0b\u670d\u52a1\u5668\u4e0a\u8fd0\u884c\u5927\u578b\u7a0b\u5e8f\u6216\u901a\u8fc7SSH\u8fdc\u7a0b\u767b\u5f55\u65f6\uff0c\u901a\u5e38\u9700\u8981\u5c06\u7a0b\u5e8f\u653e\u5728\u540e\u53f0\u8fd0\u884c\u3002 \u4ee5\u4e0b\u662f\u5982\u4f55\u4f7f\u7528 nohu [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[20],"tags":[30,36,38,37],"class_list":["post-512","post","type-post","status-publish","format-standard","hentry","category-linux","tag-linux","tag-python","tag-38","tag-37"],"_links":{"self":[{"href":"https:\/\/yiwanqi.top\/index.php\/wp-json\/wp\/v2\/posts\/512","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/yiwanqi.top\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/yiwanqi.top\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/yiwanqi.top\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/yiwanqi.top\/index.php\/wp-json\/wp\/v2\/comments?post=512"}],"version-history":[{"count":2,"href":"https:\/\/yiwanqi.top\/index.php\/wp-json\/wp\/v2\/posts\/512\/revisions"}],"predecessor-version":[{"id":518,"href":"https:\/\/yiwanqi.top\/index.php\/wp-json\/wp\/v2\/posts\/512\/revisions\/518"}],"wp:attachment":[{"href":"https:\/\/yiwanqi.top\/index.php\/wp-json\/wp\/v2\/media?parent=512"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/yiwanqi.top\/index.php\/wp-json\/wp\/v2\/categories?post=512"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/yiwanqi.top\/index.php\/wp-json\/wp\/v2\/tags?post=512"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}