From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Paul Newsgroups: gmane.emacs.help Subject: Re: tramp: how kill process Date: Sun, 22 Nov 2015 21:21:03 +0100 Message-ID: <565223AF.8060603@gmail.com> References: <56520381.3090900@gmail.com> <87vb8tc1oq.fsf@gmx.de> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1448223698 17754 80.91.229.3 (22 Nov 2015 20:21:38 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 22 Nov 2015 20:21:38 +0000 (UTC) Cc: help-gnu-emacs@gnu.org To: Michael Albinus Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sun Nov 22 21:21:24 2015 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1a0b8R-0007pm-BQ for geh-help-gnu-emacs@m.gmane.org; Sun, 22 Nov 2015 21:21:19 +0100 Original-Received: from localhost ([::1]:57352 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a0b8R-0003gS-94 for geh-help-gnu-emacs@m.gmane.org; Sun, 22 Nov 2015 15:21:19 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:46937) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a0b8G-0003gL-Ns for help-gnu-emacs@gnu.org; Sun, 22 Nov 2015 15:21:09 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1a0b8D-0002HH-JD for help-gnu-emacs@gnu.org; Sun, 22 Nov 2015 15:21:08 -0500 Original-Received: from mail-lb0-x22e.google.com ([2a00:1450:4010:c04::22e]:33453) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a0b8D-0002HC-BD for help-gnu-emacs@gnu.org; Sun, 22 Nov 2015 15:21:05 -0500 Original-Received: by lbbkw15 with SMTP id kw15so86159456lbb.0 for ; Sun, 22 Nov 2015 12:21:04 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=subject:to:references:cc:from:message-id:date:user-agent :mime-version:in-reply-to:content-type:content-transfer-encoding; bh=cOSHAIo7pm+m88g+rqL6+bvEfStMSSBG/p7JU6adM4k=; b=QUNzuWdSurA+XiwaE1bIcBWp1+3PE07mdqPibntmRvxmsmnkvlxq4Rl+5PYXaKOF5f Uk1KntRNN5vcSDvN3zVPV+g567F7Mv33Ta/zZ/zOlwG6QnwXRWq6zPQN8QYdMYoQiGyq IIY+A8vp503tdISIbapuPOvfpYydCkG/Q5UQjcUGtMtoeKDusAVQPJXGQSO5lam4tJcO bm5GgwmE5XXtmEG2nAv82PRl5N0ZF/kPXZh3Bx+uLQ0DDRFWc6BYLs8xX4ExI6thSPaX Pt6Tdw7y3ckYVtY5F8pNNsNdkXGiEvydurludswvri25SgbN6NqeXGmqT3E+6xBO0sP+ 0WVA== X-Received: by 10.112.130.195 with SMTP id og3mr8032061lbb.69.1448223664549; Sun, 22 Nov 2015 12:21:04 -0800 (PST) Original-Received: from [192.168.20.129] (89-71-25-26.dynamic.chello.pl. [89.71.25.26]) by smtp.googlemail.com with ESMTPSA id o67sm1379035lfo.33.2015.11.22.12.21.03 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 22 Nov 2015 12:21:03 -0800 (PST) User-Agent: Mozilla/5.0 (X11; Linux i686; rv:38.0) Gecko/20100101 Thunderbird/38.3.0 In-Reply-To: <87vb8tc1oq.fsf@gmx.de> X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2a00:1450:4010:c04::22e X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:108184 Archived-At: I also just installed list-processes+, but no success with killing this process. also M-x list-processes-kill-process (provided by list-processes+) does not kill it. On 22.11.2015 19:46, Michael Albinus wrote: > Paul writes: > >> Hallo people. > > Hi, > >> When on "/sudo::/root" tramp buffer, I run the following command: >> >> (start-file-process "my-process-name" (get-buffer-create >> "*my-process-output*") "pathToProcess") >> >> I can see it in M-x list-processes. >> >> Unfortunatelly the following does not kill it: >> >> C-x C-f "/sudo::/root" >> M-x: (kill-process "my-process-name") > > `kill-process' needs a process as argument, not a process name. > >> How to do it in elegant way then? > > M-x list-processes > > Move to the process to kill, and enter "d". > >> regards > > Best regards, Michael. >