From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Feng Shu" Subject: Re: "guix system vm": waiting for partition "my-home" to appear ... Date: Fri, 22 Sep 2017 06:51:44 +0800 Message-ID: <87h8vvwtq7.fsf@163.com> References: <87poajwu6i.fsf@163.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:55997) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dvAK0-0001Y0-NH for guix-devel@gnu.org; Thu, 21 Sep 2017 18:51:53 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dvAJx-0007nR-IU for guix-devel@gnu.org; Thu, 21 Sep 2017 18:51:52 -0400 Received: from m12-17.163.com ([220.181.12.17]:50707) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dvAJx-0007m0-5s for guix-devel@gnu.org; Thu, 21 Sep 2017 18:51:49 -0400 In-Reply-To: <87poajwu6i.fsf@163.com> (Feng Shu's message of "Fri, 22 Sep 2017 06:41:57 +0800") 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" To: guix-devel Cc: Feng Shu "Feng Shu" writes: > Yestaday, I guix pull, and run "guix system wm MYCONFIG.scm" > > which run success and generate a sh file > > > when I launch qemu with this sh file, I can see > > "waiting for partition XXX to appear ..." > > and can not boot properly. by the way, the below is my config: (use-modules (gnu) (gnu system nss)) (use-modules (gnu system locale)) (use-service-modules desktop) (use-package-modules certs gnome) (operating-system (host-name "tumashu") (timezone "Asia/Shanghai") (locale "zh_CN.UTF-8") (locale-definitions (cons* (locale-definition (name "zh_CN.GB2312") (source "zh_CN")) (locale-definition (name "zh_CN.GBK") (source "zh_CN")) (locale-definition (name "zh_CN.GB18030") (source "zh_CN")) (locale-definition (name "zh_TW.BIG5") (source "zh_TW")) (locale-definition (name "zh_TW.UTF-8") (source "zh_TW")) %default-locale-definitions)) ;; Assuming /dev/sdX is the target hard disk (bootloader (grub-configuration (target "/dev/sda"))) (file-systems (cons* (file-system (device "my-root") (title 'label) (mount-point "/") (type "ext4")) (file-system (device "my-home") (title 'label) (mount-point "/home") (type "ext4")) (file-system (device "my-backup1") (title 'label) (mount-point "/mnt/backup1") (type "ext4")) (file-system (device "my-backup2") (title 'label) (mount-point "/mnt/backup2") (type "ext4")) %base-file-systems)) (swap-devices '("/dev/sda8")) (users (cons (user-account (name "feng") (comment "Feng Shu") (group "users") (supplementary-groups '("wheel" "netdev" "audio" "video")) (home-directory "/home/feng")) %base-user-accounts)) ;; This is where we specify system-wide packages. (packages (append (map specification->package '("gvfs" "nss-certs" "network-manager-applet" "gtk-xfce-engine" "adwaita-icon-theme" "gnome-icon-theme" "gnome-themes-standard" "hicolor-icon-theme" "font-wqy-microhei")) %base-packages)) ;; Add GNOME and/or Xfce---we can choose at the log-in ;; screen with F1. Use the "desktop" services, which ;; include the X11 log-in service, networking with Wicd, ;; and more. (services (cons* (xfce-desktop-service) %desktop-services)) ;; Allow resolution of '.local' host names with mDNS. (name-service-switch %mdns-host-lookup-nss)) --