From owner-freebsd-current@FreeBSD.ORG Tue Jul 28 17:57:08 2009 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2A5B61065676 for ; Tue, 28 Jul 2009 17:57:08 +0000 (UTC) (envelope-from illoai@gmail.com) Received: from mail-gx0-f217.google.com (mail-gx0-f217.google.com [209.85.217.217]) by mx1.freebsd.org (Postfix) with ESMTP id DAE7E8FC12 for ; Tue, 28 Jul 2009 17:57:07 +0000 (UTC) (envelope-from illoai@gmail.com) Received: by gxk17 with SMTP id 17so299612gxk.19 for ; Tue, 28 Jul 2009 10:57:06 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=U1bCXQhZygAmsml6ImIbb/dsPm1k01QrjNiJ6ZSqx8I=; b=XoUAGCfo7+EfT7kduyxeyYtKFGj9kaJe0xYgjmepPsNQEK3+bh4WNrQXsWzuXYGqUY eVLZr8yvAFs/yqTG2raV7engHf6RRBXDJJQVKVxkvYsnV1VGJj2Yy95cFaKm7ktW3pTr 9oyFIlO3bexViqRlF4wvzA5zccu8xXhd4tpMQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=fylcYuUC9r/oaF1zmVIrJ/wLKT2EC26lUwQYyz91pwe0UKaEqNrOuXT9umwamGQavo b9r3pj3M1SBNc67+RcGNGhuu/23SJOd2JuEHfm3K2KrDHF1/iPFhyFzFt7e32p+QgUV1 PFnsQibHIr+pZAv4YNEsvylNKt8cxTADU4vU4= MIME-Version: 1.0 Received: by 10.90.35.9 with SMTP id i9mr7191137agi.81.1248803826550; Tue, 28 Jul 2009 10:57:06 -0700 (PDT) In-Reply-To: <4A6F30B3.20505@lissyara.su> References: <4A6F30B3.20505@lissyara.su> Date: Tue, 28 Jul 2009 13:57:06 -0400 Message-ID: From: "illoai@gmail.com" To: Alex Keda Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: FreeBSD Current Subject: Re: USB floppy X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 28 Jul 2009 17:57:08 -0000 2009/7/28 Alex Keda : > Hi, all =3D) > I have USB floppy. > When I plug it, I see in the messages log: > > Jul 28 21:05:02 HP kernel: ugen0.3: at usbus0 > Jul 28 21:05:02 HP kernel: umass0: rev 1.10/2.00, addr 3> on usbus0 > Jul 28 21:05:02 HP kernel: umass0: =A0SCSI over Bulk-Only; quirks =3D 0x0= 100 > Jul 28 21:05:03 HP kernel: umass0:2:0:-1: Attached to scbus2 > > But... What I can mount? =3D) > (I've never used a USB floppy, so I have a deficit of direct knowledge) You obviously won't be able to mount anything if there is no disk in the drive. As I recall (and it has been a few years since I even saw a floppy disk) most drives are not auto-sensing, so you have to rile it up a bit by trying to read /dev/fd0c (I think) dd if=3D/dev/fd0c of=3D/dev/null count=3D1 (or variations on that tune) (for all I know USB floppies are /dev/daN) I would look at the output of ls -lrt /dev/ | tail And see if anything interesting showed up. You can probably play with camcontrol(8) in this context too. Hopefully someone who has used one can give better help. --=20 --