<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Running process in background in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/running-process-in-background/m-p/4091474#M30476</link>
    <description>I want to run a clone of a database in the background .. how do I submit stuff to run in background in oracle ? also I want to log the activity ? thanks &lt;BR /&gt;&lt;BR /&gt;Points will be assigned. &lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Wed, 24 Oct 2007 08:50:42 GMT</pubDate>
    <dc:creator>Ragni Singh</dc:creator>
    <dc:date>2007-10-24T08:50:42Z</dc:date>
    <item>
      <title>Running process in background</title>
      <link>https://community.hpe.com/t5/operating-system-linux/running-process-in-background/m-p/4091474#M30476</link>
      <description>I want to run a clone of a database in the background .. how do I submit stuff to run in background in oracle ? also I want to log the activity ? thanks &lt;BR /&gt;&lt;BR /&gt;Points will be assigned. &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 24 Oct 2007 08:50:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/running-process-in-background/m-p/4091474#M30476</guid>
      <dc:creator>Ragni Singh</dc:creator>
      <dc:date>2007-10-24T08:50:42Z</dc:date>
    </item>
    <item>
      <title>Re: Running process in background</title>
      <link>https://community.hpe.com/t5/operating-system-linux/running-process-in-background/m-p/4091475#M30477</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;- put all required commands in shell script e.g. 'do_it'&lt;BR /&gt;- first line should be something like&lt;BR /&gt;#!/bin/bash&lt;BR /&gt;- chmod +x do_it&lt;BR /&gt;- ./do_it &amp;amp;&lt;BR /&gt;&lt;BR /&gt;mfG Peter</description>
      <pubDate>Wed, 24 Oct 2007 12:18:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/running-process-in-background/m-p/4091475#M30477</guid>
      <dc:creator>Peter Nikitka</dc:creator>
      <dc:date>2007-10-24T12:18:59Z</dc:date>
    </item>
    <item>
      <title>Re: Running process in background</title>
      <link>https://community.hpe.com/t5/operating-system-linux/running-process-in-background/m-p/4091476#M30478</link>
      <description>You can also add "nohup" in front of it, especially if it takes longer; this way if you get disconnected it will continue running (hangup signals are ignored). You can even log out and it will continue running. If you have any output it will go to nohup.out file.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Ross</description>
      <pubDate>Wed, 24 Oct 2007 20:01:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/running-process-in-background/m-p/4091476#M30478</guid>
      <dc:creator>Ross Minkov</dc:creator>
      <dc:date>2007-10-24T20:01:43Z</dc:date>
    </item>
    <item>
      <title>Re: Running process in background</title>
      <link>https://community.hpe.com/t5/operating-system-linux/running-process-in-background/m-p/4091477#M30479</link>
      <description>or after you have executed the script,&lt;BR /&gt;&lt;BR /&gt;press &lt;CTRL-Z&gt;&lt;BR /&gt;and then type bg, to put the job in the background.&lt;/CTRL-Z&gt;</description>
      <pubDate>Wed, 14 Nov 2007 16:11:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/running-process-in-background/m-p/4091477#M30479</guid>
      <dc:creator>Wilfred Chau_1</dc:creator>
      <dc:date>2007-11-14T16:11:20Z</dc:date>
    </item>
    <item>
      <title>Re: Running process in background</title>
      <link>https://community.hpe.com/t5/operating-system-linux/running-process-in-background/m-p/4091478#M30480</link>
      <description>I am a big fan of the screen command.&lt;BR /&gt;&lt;BR /&gt;Just type screen, in the new "screen" run your command then hit ctrl-a d  to detach and go back to your original session.  This screen will remain there with whatever command you ran.  Just run screen -r to reattach to the screen.    &lt;BR /&gt;I do this when I have large filesystems to fsck and I know it will be after hours when they finish.  This way I can log out, take my laptop home and check later.</description>
      <pubDate>Wed, 14 Nov 2007 17:09:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/running-process-in-background/m-p/4091478#M30480</guid>
      <dc:creator>Justin_99</dc:creator>
      <dc:date>2007-11-14T17:09:04Z</dc:date>
    </item>
    <item>
      <title>Re: Running process in background</title>
      <link>https://community.hpe.com/t5/operating-system-linux/running-process-in-background/m-p/4091479#M30481</link>
      <description>To send a command into background just add &amp;amp; to the end of the command. To log the activity you need to redirect the "stdout" and "stderr" file descriptors. You have to use a command like this:&lt;BR /&gt;&lt;BR /&gt;command &amp;gt; /tmp/command.log 2&amp;gt;&amp;amp;1 &amp;amp;&lt;BR /&gt;&lt;BR /&gt;That will log activity to /tmp/command.log and send the command to background.</description>
      <pubDate>Wed, 14 Nov 2007 19:02:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/running-process-in-background/m-p/4091479#M30481</guid>
      <dc:creator>Ivan Ferreira</dc:creator>
      <dc:date>2007-11-14T19:02:00Z</dc:date>
    </item>
    <item>
      <title>Re: Running process in background</title>
      <link>https://community.hpe.com/t5/operating-system-linux/running-process-in-background/m-p/4091480#M30482</link>
      <description>I think what u want is to run a oracle command in backgroung in shell...&lt;BR /&gt;if no then above replies would do...&lt;BR /&gt;if yes then use,&lt;BR /&gt;export ORACLE_SID=XXXX&lt;BR /&gt;sqlplus username/passwd@oracle query&lt;BR /&gt;&lt;BR /&gt;Hope this help&lt;BR /&gt;BR,&lt;BR /&gt;Kapil</description>
      <pubDate>Thu, 15 Nov 2007 23:56:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/running-process-in-background/m-p/4091480#M30482</guid>
      <dc:creator>Kapil Jha</dc:creator>
      <dc:date>2007-11-15T23:56:08Z</dc:date>
    </item>
    <item>
      <title>Re: Running process in background</title>
      <link>https://community.hpe.com/t5/operating-system-linux/running-process-in-background/m-p/4091481#M30483</link>
      <description>hi,&lt;BR /&gt;   by giving '&amp;amp;' symbol u can run it in background. first check out weather that file has 'x' i.e. execution permission or not. if permission is not their give it.</description>
      <pubDate>Sun, 18 Nov 2007 23:47:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/running-process-in-background/m-p/4091481#M30483</guid>
      <dc:creator>Abhirama.M.V</dc:creator>
      <dc:date>2007-11-18T23:47:55Z</dc:date>
    </item>
  </channel>
</rss>

