From owner-freebsd-questions@FreeBSD.ORG Sat Oct 8 16:11:46 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 F1F4E16A41F for ; Sat, 8 Oct 2005 16:11:46 +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 8A58943D45 for ; Sat, 8 Oct 2005 16:11:46 +0000 (GMT) (envelope-from bkoenig@cs.tu-berlin.de) Received: from eurystheus.local (port-212-202-37-195.dynamic.qsc.de [212.202.37.195]) by efacilitas.de (Postfix) with ESMTP id 655344AE59; Sat, 8 Oct 2005 18:18:05 +0200 (CEST) Received: from [192.168.1.67] (eurystheus.local [192.168.1.67]) by eurystheus.local (Postfix) with ESMTP id 0E4B2332A39; Sat, 8 Oct 2005 18:11:33 +0200 (CEST) Message-ID: <4347EFB5.7010606@cs.tu-berlin.de> Date: Sat, 08 Oct 2005 18:11:33 +0200 From: =?ISO-8859-1?Q?Bj=F6rn_K=F6nig?= User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.10) Gecko/20050824 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Carstea Catalin References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit Cc: freebsd-questions@freebsd.org Subject: Re: Mount the stick 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: Sat, 08 Oct 2005 16:11:47 -0000 Carstea Catalin wrote: > What is the simple way to know my memory stick name? > .... > With dmesg i know if my memory stick is mount but i want to know the > complete name. > Ex.: da0s1 > ... You'll get all information about your memory stick after you have connected it in /var/log/messages, e.g. its manufacturer, model and the device name (da0): "tail /var/log/messages". The nodes of the partitions will be created dynamically in /dev too. Just type "ls -l /dev/da0*" to see them. Björn