Date: Mon, 26 Oct 2015 23:39:16 -0400 From: Michael Powell <nightrecon@hotmail.com> To: freebsd-questions@freebsd.org Subject: Re: Adding 9.1 disk to 10.2 machine - correction of output Message-ID: <n0mrl6$k9q$1@ger.gmane.org> References: <005e01d1105c$34a21c50$9de654f0$@com.au>
next in thread | previous in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?n0mrl6$k9q$1>