From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Reza Alizadeh Majd" Subject: mount store in a separated partition Date: Fri, 05 Jul 2019 01:10:35 +0430 Message-ID: <896e89a2-01ce-4675-bdcc-79fe7e87f58e@www.fastmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:49712) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hj8X2-0006dM-Mk for help-guix@gnu.org; Thu, 04 Jul 2019 16:40:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hj8X1-0002CS-NS for help-guix@gnu.org; Thu, 04 Jul 2019 16:40:40 -0400 Received: from out3-smtp.messagingengine.com ([66.111.4.27]:50945) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hj8X1-0002B7-F6 for help-guix@gnu.org; Thu, 04 Jul 2019 16:40:39 -0400 Received: from compute5.internal (compute5.nyi.internal [10.202.2.45]) by mailout.nyi.internal (Postfix) with ESMTP id 6C2A12013C for ; Thu, 4 Jul 2019 16:40:37 -0400 (EDT) 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: help-guix@gnu.org Hi Guix, I want to try `/gnu/store` to a separated partition, which has more capacity for packages, for this I use following configuration: --8<---------------cut here---------------start------------->8--- (operating-system ... (bootloader (bootloader-configuration (bootloader grub-bootloader) (target "/dev/vda"))) (file-systems (cons* (file-system (device "/dev/vda1") (mount-point "/") (type "ext4")) (file-system (device "/dev/sda1") (mount-point "/gnu/store") (needed-for-boot? #t) (type "ext4") (create-mount-point? #t)) %base-file-systems)) ... --8<---------------cut here---------------end--------------->8--- but using this configuration, GRUB theme wont boot correctly and I receive following error during boot: --8<---------------cut here---------------start------------->8--- error: no such device: /gnu/store/...-linux-libre-5.1.16/bzImage. error: file `/gnu/store/...-linux-libre-5.1.16/bzImage` not found. error: you need to load the kernel first. Press any key to continue... --8<---------------cut here---------------end--------------->8--- could anyone help me on this matter? Thanks, Reza