From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Re: System installation from a USB stick Date: Mon, 21 Jul 2014 23:40:07 +0200 Message-ID: <87ha2a1jd4.fsf@gnu.org> References: <87y4xdhgn3.fsf@gnu.org> <877g3z2w60.fsf@gnu.org> <87r41jp2pa.fsf@gnu.org> <87bnslk4d6.fsf@gnu.org> <87vbqtfq0x.fsf@gnu.org> <87mwc5e2uj.fsf@gnu.org> <87k378be4g.fsf@gnu.org> <878unm4rtb.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:60193) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X9LJf-0007c6-HL for guix-devel@gnu.org; Mon, 21 Jul 2014 17:40:20 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1X9LJa-0004Kv-Ii for guix-devel@gnu.org; Mon, 21 Jul 2014 17:40:15 -0400 Received: from hera.aquilenet.fr ([2a01:474::1]:37270) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X9LJa-0004Kp-Bv for guix-devel@gnu.org; Mon, 21 Jul 2014 17:40:10 -0400 In-Reply-To: (Adam Pribyl's message of "Mon, 21 Jul 2014 21:02:10 +0200 (CEST)") List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: Adam Pribyl Cc: guix-devel Adam Pribyl skribis: > On Mon, 21 Jul 2014, Ludovic Court=C3=A8s wrote: > >> Adam Pribyl skribis: >> >>> Kernel in dmesg identifies the device like /dev/sdf, doing >>> mknod /dev/sdf b 8 80; mknod /dev/sdf1 b 8 81; mount /dev/sdf1 /mnt >>> solves the problem. So definitely the drive is at sdf. It looks to me >>> like there is some built in limit in udev for number of "scsi" devices >>> in this case or something. >> >> Hmm, I have no idea. We=E2=80=99re using a relatively old version of ud= ev, >> maybe that will be solved when upgrading. > > OK, I found it. The /dev/* files present there are just some static > version nodes. udev needs a /dev to be mounted as devtmpfs. Oh, udev creates things like /dev/disk/*, but it seems I wrongfully though it would create all the missing nodes. Per , seems we may need to mount /dev as devtmpfs as you wrote. (And I thought devtmpfs was the deprecated thing, but no, it=E2=80=99s devfs that=E2=80=99s deprecated. Oh well.) Ludo=E2=80=99.