<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: How to Run Linux Commands in Background and Detach in Terminal	</title>
	<atom:link href="https://www.tecmint.com/run-linux-command-in-background/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.tecmint.com/run-linux-command-in-background/</link>
	<description>Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks.</description>
	<lastBuildDate>Thu, 13 Jul 2023 18:34:10 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: Maska		</title>
		<link>https://www.tecmint.com/run-linux-command-in-background/comment-page-1/#comment-2023845</link>

		<dc:creator><![CDATA[Maska]]></dc:creator>
		<pubDate>Thu, 08 Jun 2023 21:43:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=23041#comment-2023845</guid>

					<description><![CDATA[Hey, Thanks for this little Linux tip, useful for me to make my Linux commands run in the background...]]></description>
			<content:encoded><![CDATA[<p>Hey, Thanks for this little Linux tip, useful for me to make my Linux commands run in the background&#8230;</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Gustav Streicher		</title>
		<link>https://www.tecmint.com/run-linux-command-in-background/comment-page-1/#comment-1703644</link>

		<dc:creator><![CDATA[Gustav Streicher]]></dc:creator>
		<pubDate>Mon, 17 Jan 2022 23:50:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=23041#comment-1703644</guid>

					<description><![CDATA[A slight improvement:
&lt;pre&gt;
firefox /dev/null &#038; disown
&lt;/pre&gt;
Without the &quot;&lt;strong&gt;disown&lt;/strong&gt;&quot; you&#039;ll get the following output in the source terminal after the given program is closed:

&quot;[1]+  Done                    firefox  /dev/null&quot;

This only happens the next time something is put out to the terminal&#039;s output stream. So, the next time command runs that writes to the output stream.

To test this, run it without &quot;disown&quot;, close firefox, and then run &quot;ls&quot;.]]></description>
			<content:encoded><![CDATA[<p>A slight improvement:</p>
<pre>
firefox /dev/null &amp; disown
</pre>
<p>Without the &#8220;<strong>disown</strong>&#8221; you&#8217;ll get the following output in the source terminal after the given program is closed:</p>
<p>&#8220;[1]+  Done                    firefox  /dev/null&#8221;</p>
<p>This only happens the next time something is put out to the terminal&#8217;s output stream. So, the next time command runs that writes to the output stream.</p>
<p>To test this, run it without &#8220;disown&#8221;, close firefox, and then run &#8220;ls&#8221;.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Eric Brooks		</title>
		<link>https://www.tecmint.com/run-linux-command-in-background/comment-page-1/#comment-1319638</link>

		<dc:creator><![CDATA[Eric Brooks]]></dc:creator>
		<pubDate>Sun, 01 Mar 2020 21:24:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=23041#comment-1319638</guid>

					<description><![CDATA[I see this is an old post but I think my question is sort of in the ballpark. what I would like to do is open the console of the process that was started with &lt;strong&gt;systemd&lt;/strong&gt; with a no GUI flag. what this pertains to the Minecraft server. 

so I made a &lt;strong&gt;systemd&lt;/strong&gt; service file and the execution command is &quot;&lt;strong&gt;java -jar server.jar nogui&lt;/strong&gt;&quot; now once the system is up and running, I would like to open the GUI or console of the Minecraft server to issue commands without having to open a Minecraft launcher like you would play the game. I know I have done something like this in the past on other platforms but I just don&#039;t know enough about Minecraft/java to make this happen.

I am using ubuntu 18.04 and the current version of the Minecraft is 1.15.2]]></description>
			<content:encoded><![CDATA[<p>I see this is an old post but I think my question is sort of in the ballpark. what I would like to do is open the console of the process that was started with <strong>systemd</strong> with a no GUI flag. what this pertains to the Minecraft server. </p>
<p>so I made a <strong>systemd</strong> service file and the execution command is &#8220;<strong>java -jar server.jar nogui</strong>&#8221; now once the system is up and running, I would like to open the GUI or console of the Minecraft server to issue commands without having to open a Minecraft launcher like you would play the game. I know I have done something like this in the past on other platforms but I just don&#8217;t know enough about Minecraft/java to make this happen.</p>
<p>I am using ubuntu 18.04 and the current version of the Minecraft is 1.15.2</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Aaron Kili		</title>
		<link>https://www.tecmint.com/run-linux-command-in-background/comment-page-1/#comment-1158936</link>

		<dc:creator><![CDATA[Aaron Kili]]></dc:creator>
		<pubDate>Fri, 31 May 2019 12:36:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=23041#comment-1158936</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/run-linux-command-in-background/comment-page-1/#comment-1158863&quot;&gt;bala divvela&lt;/a&gt;.

@Bala

You can run this command: 
&lt;code&gt;ps -fu username&lt;/code&gt;        #replace username with your real username
OR
&lt;code&gt;ps -x&lt;/code&gt;]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/run-linux-command-in-background/comment-page-1/#comment-1158863">bala divvela</a>.</p>
<p>@Bala</p>
<p>You can run this command:<br />
<code>ps -fu username</code>        #replace username with your real username<br />
OR<br />
<code>ps -x</code></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: bala divvela		</title>
		<link>https://www.tecmint.com/run-linux-command-in-background/comment-page-1/#comment-1158863</link>

		<dc:creator><![CDATA[bala divvela]]></dc:creator>
		<pubDate>Fri, 31 May 2019 01:23:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=23041#comment-1158863</guid>

					<description><![CDATA[How to see the jobs running in the previous session? I have submitted jobs in nohup and logged out. After logging again if i wanna see the jobs and if I wanna kill, how to do so]]></description>
			<content:encoded><![CDATA[<p>How to see the jobs running in the previous session? I have submitted jobs in nohup and logged out. After logging again if i wanna see the jobs and if I wanna kill, how to do so</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
