From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andreas Enge Subject: Re: Everything segfaults Date: Thu, 9 Jun 2016 19:28:25 +0200 Message-ID: <20160609172825.GA2080@solar> References: <87bn3a2xtl.fsf@Cage.localdomain> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:60992) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bB3kx-00070l-3t for help-guix@gnu.org; Thu, 09 Jun 2016 13:28:36 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bB3ks-00047o-Ji for help-guix@gnu.org; Thu, 09 Jun 2016 13:28:35 -0400 Received: from mailrelay2.public.one.com ([91.198.169.125]:36036) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bB3ks-00046N-5L for help-guix@gnu.org; Thu, 09 Jun 2016 13:28:30 -0400 Content-Disposition: inline In-Reply-To: <87bn3a2xtl.fsf@Cage.localdomain> 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: Paul van der Walt Cc: help-guix@gnu.org Hello, the following looks very strange: On Thu, Jun 09, 2016 at 05:20:38PM +0200, Paul van der Walt wrote: > execve("/home/paul/.guix-profile/bin/less", ["less"], [/* 55 vars */]) = 0 > ... > open("/usr/lib/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = 3 > read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0p*\0\0\0\0\0\0"..., 832) = 832 > ... > open("/usr/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = 3 > read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0`\10\2\0\0\0\0\0"..., 832) = 832 > fstat(3, {st_mode=S_IFREG|0755, st_size=1960968, ...}) = 0 Your Guix less seems to open libraries from your Arch system, which are incompatible. Did you set LD_LIBRARY_PATH? Maybe you could try "ldd /home/paul/.guix-profile/bin/less". Andreas