On Wed, Oct 31, 2012 at 12:34:54AM +0000, Alan Feuerbacher wrote: > I still can't get the LFS build to recognize hard drives other than the > one it's built on. Here is some output upon booting up: > > Immediately after booting up, I did these commands: > > ######### > root [ ~ ]# mount -l > /dev/sdc6 on / type ext3 (rw) > proc on /proc type proc (rw,noexec,nosuid,nodev) > sysfs on /sys type sysfs (rw,noexec,nosuid,nodev) > tmpfs on /run type tmpfs (rw) > devtmpfs on /dev type devtmpfs (rw,nosuid,mode=0755) > /dev/sdc1 on /boot type ext3 (rw) > /dev/sdc7 on /usr type ext3 (rw) > /dev/sdc8 on /opt type ext3 (rw) > /dev/sdc9 on /usr/local type ext3 (rw) > /dev/sdc10 on /usr/src type ext3 (rw) > /dev/sdc11 on /var type ext3 (rw) > /dev/sdc12 on /tmp type ext3 (rw) > /dev/sdc13 on /home type ext3 (rw) > devpts on /dev/pts type devpts (rw,gid=5,mode=620) > root [ ~ ]# mount /mnt/debian > mount: mount point /mnt/debian does not exist > root [ ~ ]# mount /dev/sdb2 > mount: mount point /mnt/debian does not exist > root [ ~ ]# mount -t ext3 /dev/sdb2 /mnt/debian > mount: mount point /mnt/debian does not exist > #########
I snipped the rest - I think you are looking in the wrong place! ls -l /mnt If you want to mount something, you have to ensure that the directory (where you wish to mount it) exists. So, as root: mkdir /mnt/debian ĸen -- das eine Mal als Tragödie, das andere Mal als Farce -- http://linuxfromscratch.org/mailman/listinfo/blfs-support FAQ: http://www.linuxfromscratch.org/blfs/faq.html Unsubscribe: See the above information page
