From owner-freebsd-questions@FreeBSD.ORG Fri Jun 29 12:32:05 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id ADA6B16A400 for ; Fri, 29 Jun 2007 12:32:05 +0000 (UTC) (envelope-from sacchi@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.172]) by mx1.freebsd.org (Postfix) with ESMTP id 45C2613C45B for ; Fri, 29 Jun 2007 12:32:04 +0000 (UTC) (envelope-from sacchi@gmail.com) Received: by ug-out-1314.google.com with SMTP id o4so359157uge for ; Fri, 29 Jun 2007 05:32:03 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:sender:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references:x-google-sender-auth; b=mXY3gCxG7RhUDqTN+MvskP7tpQZPkEhwWJhpKud4YFJ44pb6zKaJv/oIBwBvJmAQU+GcqXYa1xecMQYKpUK+z9n3NIapcU6IQevQF9l+uz10CTgNvzMJSi1rA8erYDARp2AW2ezUrxr6Aj31ZxAOi2fGpghUK5utnmADCpvmHgM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:sender:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references:x-google-sender-auth; b=goDlQN/mbudckgNnVK7piGGOeTI29/rPfD1F260sGucMvMRPDymTt1Wd7FiAMELwmpxi/+BzPluXCOw2sMz7ky5U9hjBHOMQiLSP/WZx1v2GxdQWEH1Q4OkcmbwKiRpT0XcPrrcbbuqLe4Rp9x7C6yEKOFf6Ojb06acdgb4sfR8= Received: by 10.78.171.20 with SMTP id t20mr1569987hue.1183120322798; Fri, 29 Jun 2007 05:32:02 -0700 (PDT) Received: by 10.78.158.19 with HTTP; Fri, 29 Jun 2007 05:32:02 -0700 (PDT) Message-ID: Date: Fri, 29 Jun 2007 18:02:02 +0530 From: sac Sender: sacchi@gmail.com To: oim In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: X-Google-Sender-Auth: d4ddc7856baef595 Cc: freebsd-questions@freebsd.org Subject: Re: Hello 1 question about close console X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Jun 2007 12:32:05 -0000 On 6/25/07, oim wrote: > Hello! > > I have a question about this situation. > > In home work Pc with FreeBSD Server, real ip and real domain name. > When i remote connect ssh2 (consose) from my work.. make on server some.. compile program from ports > > And some time later i need to close console, but i want, what session not close and compile processing. > > If i disconect from console all job stop. How disconect from console and come back to my session? > Hi, The most simplest solution to your problem is to `disown' the process. For eg: $ some_process & $ disown And if you are using zsh there it is much easier: $ some_process &! And when you exit, the processes will not be killed. Regards, sac.