From mboxrd@z Thu Jan 1 00:00:00 1970 From: myglc2 Subject: Re: how do I config freeipmi SOL (serial over LAN)? Date: Wed, 25 Jan 2017 19:48:41 -0500 Message-ID: <86d1faprx2.fsf@gmail.com> References: <86h94pwyli.fsf@gmail.com> <87mveh65f3.fsf@kirby.i-did-not-set--mail-host-address--so-tickle-me> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:39739) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cWYFG-0001S8-Az for help-guix@gnu.org; Wed, 25 Jan 2017 19:49:00 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cWYFC-0002Nz-E1 for help-guix@gnu.org; Wed, 25 Jan 2017 19:48:58 -0500 Received: from mail-qt0-x241.google.com ([2607:f8b0:400d:c0d::241]:35767) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cWYFC-0002Ns-Ak for help-guix@gnu.org; Wed, 25 Jan 2017 19:48:54 -0500 Received: by mail-qt0-x241.google.com with SMTP id f4so35023507qte.2 for ; Wed, 25 Jan 2017 16:48:54 -0800 (PST) List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-guix-bounces+gcggh-help-guix=m.gmane.org@gnu.org Sender: "Help-Guix" To: Marius Bakke Cc: help-guix@gnu.org On 01/23/2017 at 18:40 Marius Bakke writes: > myglc2 writes: > >> I am using freeipmi on a headless GuixSD server. >> >> I have SOL (serial over LAN) working to where 'ipmiconsole' shows the >> BIOS config and "Welcome to GRUB!" but nothing more. >> >> It seems I need to configure Grub and the Kernel to send output to SOL. > > Hi George, > > You probably need to pass the "console" argument to Linux command line. > If your IPMI SOL device is "/dev/ttyUSB0", try adding a > "kernel-arguments" like this in your guixSD configuration: > > (kernel-arguments '("console=ttyUSB0")) > > ...not sure how to make Grub output to a serial console. > > Hope this helps! It did. I ended up with ... (kernel-arguments '("console=tty0 console=ttyS1,115200")) ... which leaves the local console active _and_ ships a copy over SOL. This captures the boot messages when something awful happens and they don't end up in /var/log. And if/when Guix punts into the REPL, I can interact with it remotely. YEAH! Many Thanks! - George