all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Danny Milosavljevic <dannym@scratchpost.org>
To: Catonano <catonano@gmail.com>
Cc: 29934@debbugs.gnu.org
Subject: bug#29934: in virtual machines the graphical dektop environment randomly fails to show up
Date: Wed, 3 Jan 2018 02:03:15 +0100	[thread overview]
Message-ID: <20180103020315.7e9825fb@scratchpost.org> (raw)
In-Reply-To: <20180102181515.195ec353@scratchpost.org>

$ cat vm-config-desktop.scm

(operating-system
  (host-name "antelope")
  (timezone "Europe/Paris")
  (locale "it_IT.utf8")
  (kernel-arguments `("console=ttyS0"))

  ;; Assuming /dev/sdX is the target hard disk, and "my-root"
  ;; is the label of the target root file system.
  (bootloader (grub-configuration (device "/dev/sda")))

  (file-systems (cons (file-system
                        (device "my-root")
                        (title 'label)
                        (mount-point "/")
                        (type "ext4")
                       
                      )
                      %base-file-systems))

  (users (cons (user-account
                (name "catonano")
                (comment "Alice's brother")
                (group "users")
                (supplementary-groups '("wheel" "netdev"
                                        "audio" "video"))
                (home-directory "/home/catonano"))
               %base-user-accounts))

  ;; This is where we specify system-wide packages.
  (packages (cons* nss-certs         ;for HTTPS access
                   gvfs              ;for user mounts
                   %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* (postgresql-service #:locale "it_IT.UTF-8")
                   ;(service trytond-service-type)
                   (service agetty-service-type (agetty-configuration (tty "ttyS0")))
                   (gnome-desktop-service)
                   (xfce-desktop-service)
                   %desktop-services))

  ;; Allow resolution of '.local' host names with mDNS.
  (name-service-switch %mdns-host-lookup-nss))


And then 

$ `guix system vm ~/vm-config-desktop.scm    --image-size=10GB   --share=$HOME/tmp=/exchange` -serial stdio
...
This is the GNU system.  Welcome.
antelope login: 

  parent reply	other threads:[~2018-01-03  1:04 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-01-01 20:06 bug#29934: in virtual machines the graphical dektop environment randomly fails to show up Catonano
2018-01-01 20:47 ` Danny Milosavljevic
2018-01-01 22:18   ` Catonano
2018-01-02  8:58     ` Danny Milosavljevic
2018-01-02 11:17       ` Catonano
2018-01-02 11:51         ` Danny Milosavljevic
2018-01-02 11:52         ` Danny Milosavljevic
2018-01-02 12:08           ` Catonano
2018-01-02 14:17             ` Catonano
2018-01-02 14:19               ` Catonano
2018-01-02 14:28                 ` Catonano
2018-01-02 14:31                   ` Catonano
2018-01-02 17:15                     ` Danny Milosavljevic
2018-01-02 19:39                       ` Catonano
2018-01-03  1:03                       ` Danny Milosavljevic [this message]
2018-01-03  6:56                         ` Catonano
2018-01-02 17:11                   ` Danny Milosavljevic
2024-02-25  9:05 ` Ricardo Wurmus

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20180103020315.7e9825fb@scratchpost.org \
    --to=dannym@scratchpost.org \
    --cc=29934@debbugs.gnu.org \
    --cc=catonano@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.