Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>This isn't really a programmer question; perhaps it'll be moved over to ServerFault.</p> <p>You didn't specifically state which operating system you're using, but I'm hazarding a guess at some Linux distribution. You have two options of figuring out what's wrong:</p> <ol> <li><p>Start your session in screen. <strong>Screen will live for as long as the actual machine is powered on</strong>, until you reboot the operating system (or you exit screen). </p> <p>you start screen like this</p> <pre><code>screen </code></pre> <p>and you get a new prompt where you can start your program (cd foo, jetty, etc). When you're happy and you just need to go somewhere, you can disconnect the screen by hitting CTRL+A and then CTRL+D. you'll drop back to the place you were before you invoked <code>screen</code>.</p> <p>To get back to seeing the <code>screen</code> you type <code>screen -R</code> which means to resume an existing screen. you should see jetty again.</p> <p>The nice thing is that if you lose connection (or you close putty by accident or whatever) then you can use <code>screen -list</code> to get a list of running screens, and then forcibly detach them <code>-D</code> and reattach them to the current putty <code>-R</code>, no harm done!</p></li> <li><p>Use nohup. Nohup more or less detaches the process you're running from the console, so <strong>none of its output comes to the terminal</strong>. You start your program in the normal fashion, but you add the word <code>nohup</code> to your command. </p> <p>For example:</p> <pre><code>nohup ls -l &amp; </code></pre> <p>After <code>ls -l</code> is complete, your output is stored in nohup.out.</p></li> </ol>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload