unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
* bug#36775: USB sticks can't be accessed on XFCE
@ 2019-07-23 21:54 goodoldpaul
  0 siblings, 0 replies; only message in thread
From: goodoldpaul @ 2019-07-23 21:54 UTC (permalink / raw)
  To: 36775

[-- Attachment #1: Type: text/plain, Size: 558 bytes --]

No USB flash drive can be mounted on XFCE. Both lsusb and lsblk 
correctly show the device, showing that the device is not 
malfunctioning.

Fdisk can access and modify the partitions on the device but gparted 
will segfault right after it finishes to search for devices. You can 
find my config.scm as an attachment.

This is the output of `guix describe`:

Generation 201	Jul 23 2019 21:53:47	(current)
   guix c42db89
     repository URL: https://git.savannah.gnu.org/git/guix.git
     branch: master
     commit: c42db89ff992037841e7937059db952571af86fa

[-- Attachment #2: config.scm --]
[-- Type: text/plain, Size: 2020 bytes --]

(use-modules (gnu))
(use-service-modules desktop nix networking ssh xorg)

(operating-system
  (locale "en_US.utf8")
  (timezone "Europe/Rome")
  (keyboard-layout
    (keyboard-layout "it" "nodeadkeys"))
  (bootloader
    (bootloader-configuration
      (bootloader grub-efi-bootloader)
      (target "/boot/efi")
      (keyboard-layout keyboard-layout)))
  (file-systems
    (cons* (file-system
             (mount-point "/home")
             (device
               (uuid "4d4c4af6-28ef-49ae-b08b-211b5648ebfc"
                     'ext4))
             (type "ext4"))
           (file-system
             (mount-point "/")
             (device
               (uuid "2125621a-4da2-42b7-88d7-2d0fa16157e1"
                     'ext4))
             (type "ext4"))
           (file-system
             (mount-point "/boot/efi")
             (device (uuid "E7FB-57B4" 'fat32))
             (type "vfat"))
           %base-file-systems))
  (swap-devices '("/dev/sda3"))
  (host-name "frastanato")
  (users (cons* (user-account
                  (name "orang3")
                  (comment "Giacomo Leidi")
                  (group "users")
                  (home-directory "/home/orang3")
                  (supplementary-groups
                    '("wheel" "netdev" "audio" "video" "kvm")))
                %base-user-accounts))
  (packages
    (append
     (list ;; Nix package manager
           (specification->package "nix")
	   ;; HTTPS
           (specification->package "nss-certs")
	   ;; User mounts
	   (specification->package "gvfs")
           (specification->package "font-dejavu"))
      %base-packages))
  (services
   (append
    (list (service xfce-desktop-service-type)
          (service tor-service-type)
          (service nix-service-type)
          (set-xorg-configuration
           (xorg-configuration
            (keyboard-layout keyboard-layout)))
          (extra-special-file "/usr/bin/env"
                              (file-append coreutils "/bin/env"))
          )
    %desktop-services)))

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2019-07-23 21:55 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-07-23 21:54 bug#36775: USB sticks can't be accessed on XFCE goodoldpaul

Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).