From mboxrd@z Thu Jan 1 00:00:00 1970 From: erik quanstrom Date: Mon, 8 Sep 2008 13:29:16 -0400 To: antonin.vecera@gmail.com, 9fans@9fans.net Message-ID: <48bbb200ea124432072f4e35a0722f58@coraid.com> In-Reply-To: <10b109140809081017u77954f84r73d53887955cb087@mail.gmail.com> References: <10b109140809081017u77954f84r73d53887955cb087@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Subject: Re: [9fans] killing 'none' Topicbox-Message-UUID: 0df2448e-ead4-11e9-9d60-3106f5b1d025 > I run on my terminal a process, which switches user id to 'none' (f.e. tftpd). > I can't kill that process. > > ps | grep none > none 132 0:00 0:00 140K Open tftpd > > echo kill>/proc/132/note > /proc/132/note: rc: can't open: '/proc/132/note' permission denied > > Is it somehow possible to kill that process? > Or is it necessary to reboot? if you are the hostowner, then # chmod a+w /proc/132/note # echo kill>/proc/132/note - erik