From owner-freebsd-questions@freebsd.org Tue Oct 27 03:39:38 2015 Return-Path: Delivered-To: freebsd-questions@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 293A4A1EAC5 for ; Tue, 27 Oct 2015 03:39:38 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from plane.gmane.org (plane.gmane.org [80.91.229.3]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E0B141A88 for ; Tue, 27 Oct 2015 03:39:36 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1Zqv6h-00020M-2D for freebsd-questions@freebsd.org; Tue, 27 Oct 2015 04:39:31 +0100 Received: from pool-72-66-1-32.washdc.fios.verizon.net ([72.66.1.32]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 27 Oct 2015 04:39:31 +0100 Received: from nightrecon by pool-72-66-1-32.washdc.fios.verizon.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 27 Oct 2015 04:39:31 +0100 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-questions@freebsd.org From: Michael Powell Subject: Re: Adding 9.1 disk to 10.2 machine - correction of output Date: Mon, 26 Oct 2015 23:39:16 -0400 Lines: 41 Message-ID: References: <005e01d1105c$34a21c50$9de654f0$@com.au> Reply-To: nightrecon@hotmail.com Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7Bit X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: pool-72-66-1-32.washdc.fios.verizon.net X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Oct 2015 03:39:38 -0000 Ian Fitzgerald wrote: > Correction: > > #mount -t ufs /dev/ada1p2 /data2 > > mount: /data2: No such file or directory > [snip] > then > [snip] > > #mount -t ufs /dev/ada1p2 /disk2 > > mount: /dev/ada1p2: No such file or directory ^^^^^^^^^^^ > > > (/disk2 already created by me) You probably should try and figure out how the drive was sliced and/or partitioned. The old style MBR and disklabel, or the newer GPT scheme(s). Try and see if these commands return any useful info: gpart status gpart show gpart list The /dev/whatever node which represents the drive and partitions will either look something like ada1p2 if partitioned as GPT, or the old ada1s1a format if MBR. Figure this out, use the correct item for the manual mount command to test. If it mounts successfully then adjust the fstab to match. -Mike