From owner-freebsd-newbies@FreeBSD.ORG Sat Aug 7 15:03:42 2004 Return-Path: Delivered-To: freebsd-newbies@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1969B16A4CE for ; Sat, 7 Aug 2004 15:03:42 +0000 (GMT) Received: from mproxy.gmail.com (rproxy.gmail.com [64.233.170.198]) by mx1.FreeBSD.org (Postfix) with ESMTP id B848743D2F for ; Sat, 7 Aug 2004 15:03:41 +0000 (GMT) (envelope-from torstenvl@gmail.com) Received: by mproxy.gmail.com with SMTP id 77so71801rnl for ; Sat, 07 Aug 2004 08:03:40 -0700 (PDT) Received: by 10.38.11.79 with SMTP id 79mr421050rnk; Sat, 07 Aug 2004 08:03:40 -0700 (PDT) Message-ID: <126eac4804080708032ed2e560@mail.gmail.com> Date: Sat, 7 Aug 2004 11:03:40 -0400 From: =?UTF-8?Q?Josh_=C5=8Cckert?= To: DerAlSem In-Reply-To: <41147A78.8090801@inbox.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit References: <41147A78.8090801@inbox.ru> cc: freebsd-newbies@freebsd.org Subject: Re: Enabling Linux Mode X-BeenThere: freebsd-newbies@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Gathering place for new users List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 Aug 2004 15:03:42 -0000 On Sat, 07 Aug 2004 10:45:12 +0400, DerAlSem wrote: > cd /usr/ports/emulators/linux_base > make install distclean > > blah-blah-blah... > > gmake[2]: Leaving directory `/usr/ports/archivers/rpm/work/rpm-3.0.6' > gmake[1]: Leaving directory `/usr/ports/archivers/rpm/work/rpm-3.0.6' > install -o root -g wheel -m 444 > /usr/ports/archivers/rpm/work/rpm-3.0.6/doc/gendiff.1 /usr/local/man/man1 > install -o root -g wheel -m 444 > /usr/ports/archivers/rpm/work/rpm-3.0.6/doc/rpm.8 /usr/local/man/man8 > install -o root -g wheel -m 444 > /usr/ports/archivers/rpm/work/rpm-3.0.6/doc/rpm2cpio.8 /usr/local/man/man8 > ===> Compressing manual pages for rpm-3.0.6_8 > ===> Running ldconfig > /sbin/ldconfig -m /usr/local/lib > ===> Registering installation for rpm-3.0.6_8 > ===> Returning to build of linux_base-7.1_5 > ===> Configuring for linux_base-7.1_5 > ===> Installing for linux_base-7.1_5 > Linux mode is not enabled. > Loading linux kernel module now... > kldload: can't load linux: No such file or directory > The linux kernel module could not be loaded. > Please enable linux mode manually and retry. > *** Error code 1 > > What's going on? ;-( > _______________________________________________ > freebsd-newbies@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-newbies > To unsubscribe, send any mail to "freebsd-newbies-unsubscribe@freebsd.org" > It seems like you have a custom kernel with MODULES_OVERRIDE set in your configuration file? Otherwise, the linux module should be on your system where kldload is looking for it. Try editing your configuration file and adding linux to MODULES_OVERRIDE. Then recompile your kernel. Specifics can be found in the FreeBSD Handbook available at: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/ Good luck