From owner-freebsd-questions@FreeBSD.ORG Wed Dec 7 11:28:01 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0CBC216A41F for ; Wed, 7 Dec 2005 11:28:01 +0000 (GMT) (envelope-from bkoenig@cs.tu-berlin.de) Received: from efacilitas.de (smtp.efacilitas.de [85.10.196.108]) by mx1.FreeBSD.org (Postfix) with ESMTP id 694C043D6D for ; Wed, 7 Dec 2005 11:27:55 +0000 (GMT) (envelope-from bkoenig@cs.tu-berlin.de) Received: from eurystheus.local (port-212-202-39-231.dynamic.qsc.de [212.202.39.231]) by efacilitas.de (Postfix) with ESMTP id C72624B103; Wed, 7 Dec 2005 12:34:50 +0100 (CET) Received: from [192.168.1.2] (muhkuh.local [192.168.1.2]) by eurystheus.local (Postfix) with ESMTP id 656715089C; Wed, 7 Dec 2005 12:25:21 +0100 (CET) Message-ID: <4396C6ED.1080201@cs.tu-berlin.de> Date: Wed, 07 Dec 2005 12:26:37 +0100 From: =?ISO-8859-1?Q?Bj=F6rn_K=F6nig?= User-Agent: Mozilla Thunderbird 1.0.7 (Windows/20050923) X-Accept-Language: de-DE, de, en-us, en MIME-Version: 1.0 To: spen References: <20051206162832.42345.qmail@web31114.mail.mud.yahoo.com> In-Reply-To: <20051206162832.42345.qmail@web31114.mail.mud.yahoo.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit Cc: freebsd-questions@freebsd.org Subject: Re: killing freezed tty's 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: Wed, 07 Dec 2005 11:28:01 -0000 spen schrieb: > hello all, > I am new to fbsd world and I have a question about how to kill a ttyv_ that has freezed. > I tried to ps -aux and did not see any PID that could relate to ttyv1. > When I am via ssh I can kill the proccess of ssh. > thank you and sorry if the question seems stupid. You get information about processes that use tty devices by using fstat, e.g. 'fstat /dev/ttyv1'. Björn