From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 4.0.0 (2022-12-14) on finch.gentoo.org X-Spam-Level: X-Spam-Status: No, score=-0.6 required=5.0 tests=DMARC_MISSING, MAILING_LIST_MULTI,RDNS_DYNAMIC autolearn=unavailable autolearn_force=no version=4.0.0 Received: from home.mando.org (bgp395946bgs.jersyc01.nj.comcast.net [68.36.76.46]) by chiba.3jane.net (Postfix) with SMTP id 9C2E620EE87E for ; Sun, 14 Apr 2002 19:07:54 -0500 (CDT) Received: (qmail 7764 invoked from network); 14 Apr 2002 20:07:39 -0000 Received: from unknown (HELO mando.org) (127.0.0.1) by localhost with SMTP; 14 Apr 2002 20:07:39 -0000 Message-ID: <3CB9E18B.2030200@mando.org> Date: Sun, 14 Apr 2002 16:07:39 -0400 From: Mando Escamilla User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.9) Gecko/20020411 X-Accept-Language: en-us, en MIME-Version: 1.0 To: gentoo-dev@gentoo.org Subject: Re: [gentoo-dev] how recompile kernel References: <200204142057.51205.dkerber1@terra.com.br> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: gentoo-dev-admin@gentoo.org Errors-To: gentoo-dev-admin@gentoo.org X-BeenThere: gentoo-dev@gentoo.org X-Mailman-Version: 2.0.6 Precedence: bulk Reply-To: gentoo-dev@gentoo.org List-Help: List-Post: List-Subscribe: , List-Id: Gentoo Linux developer list List-Unsubscribe: , List-Archive: X-Archives-Salt: 2c7946a9-df6a-4288-ad8a-f6fc380b5238 X-Archives-Hash: 9132ac76ea6f7424b4f5972da407ae43 Daniel Kerber wrote: >Hi... > >I need recompile the kernel for activate other settings..... no problem... > >The problem is: How acess the /boot partition to copying the new kernel... and >changes the menu.lst file (grub)? > >Thanks for your attention... > >Daniel Kerber. >_______________________________________________ >gentoo-dev mailing list >gentoo-dev@gentoo.org >http://lists.gentoo.org/mailman/listinfo/gentoo-dev > This should probably be on gentoo-user (or gentoo-newbie) rather than gentoo-dev, but here's the quick answer: # mount /boot That'll work if you added your boot partition to /etc/fstab (as the instructions clearly point out). If you didn't (shame, shame, shame), then add a line something like this to /etc/fstab: /dev/BOOTDEVICE /boot BOOTFSTYPE (ext3, ext2, xfs) noauto,noatime 1 1 then # mount /boot and you're set. -- Mando