From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1PuW6b-0006Yu-5J for garchives@archives.gentoo.org; Tue, 01 Mar 2011 20:23:37 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4DEA3E0444; Tue, 1 Mar 2011 20:21:37 +0000 (UTC) Received: from mx.virtyou.com (mx.virtyou.com [94.23.166.77]) by pigeon.gentoo.org (Postfix) with ESMTP id 0F154E0444 for ; Tue, 1 Mar 2011 20:21:36 +0000 (UTC) Received: from weird.localnet (p57910296.dip.t-dialin.net [87.145.2.150]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx.virtyou.com (Postfix) with ESMTPSA id DE1D2496B02 for ; Tue, 1 Mar 2011 21:21:35 +0100 (CET) From: Alex Schuster To: gentoo-user@lists.gentoo.org Subject: Re: [gentoo-user] How can I move running proces to background & out of screen? Date: Tue, 1 Mar 2011 21:21:32 +0100 User-Agent: KMail/1.13.6 (Linux/2.6.37-ck; KDE/4.6.0; x86_64; ; ) References: <4D6D4168.5010500@gmail.com> In-Reply-To: <4D6D4168.5010500@gmail.com> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-user@lists.gentoo.org Reply-to: gentoo-user@lists.gentoo.org MIME-Version: 1.0 Content-Type: Text/Plain; charset="utf-8" Content-Transfer-Encoding: 7bit Message-Id: <201103012121.33930.wonko@wonkology.org> X-Archives-Salt: X-Archives-Hash: 500e28b9ef68c87f0b138c599d8f0e3b Jarry writes: > is there any way to move running (already started) process > to background, and disconnect it from screen/terminal > so that I could log off (without terminating the process)? Ctrl-Z bg But I really suggest using screen for this. Then you can detach the shell with Ctrl-A D, and re-attach later with screen -DR. Wonko