From mboxrd@z Thu Jan 1 00:00:00 1970 From: znavko@disroot.org Subject: Re: Cannot install Guix 1.0.1 on Asus K50C Date: Sat, 15 Jun 2019 18:22:00 +0000 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:42321) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hcDJZ-0002US-Fl for help-guix@gnu.org; Sat, 15 Jun 2019 14:22:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hcDJX-0004UU-89 for help-guix@gnu.org; Sat, 15 Jun 2019 14:22:09 -0400 Received: from knopi.disroot.org ([178.21.23.139]:51044) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hcDJW-0004Pv-GO for help-guix@gnu.org; Sat, 15 Jun 2019 14:22:07 -0400 Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id 4F5C834A72 for ; Sat, 15 Jun 2019 20:22:02 +0200 (CEST) Received: from knopi.disroot.org ([127.0.0.1]) by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id UsEvrIEI41Lh for ; Sat, 15 Jun 2019 20:22:00 +0200 (CEST) In-Reply-To: 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 I've changed config. Added initrd-modules that guix offered to me. And I= reinitialized system.=0AThis message appears above clocksource messages:= =0A=0ALoading kernel modules...=0AERROR: In procedure open-file: No such = file or directory: "/gnu/store/qvhashahsh-linux-modules/sata-sis.ko"=0AEn= tering a new prompt. Type ',bt' for a backtrace or ',q' to continue.=0AGN= U Guile 2.2.4=0A...=0A=0AHumm. My another laptop parted only to root part= ition and swap, and it works. But here no any variant works.=0A=0AConfig:= this http://termbin.com/ni3a=0A=0A;-*- mode: Scheme; -*-=0A;;this is zna= vko's cute config=0A=0A(use-modules (gnu) (gnu system nss)=0A (gnu s= ystem locale) ;;for locale-definition=0A (gnu services desktop)=0A = (srfi srfi-1) ;;for remove function=0A (gnu services netw= orking) ;;for remove ntp=0A (gnu services avahi) ;;for remove a= vahi=0A (gnu services xorg)=0A (gnu packages admin) ;;for wpa_s= upplicant=0A )=0A=0A(use-service-modules desktop)=0A(use-package-mod= ules certs gnome)=0A=0A(operating-system (host-name "antelope") (timezone= "Europe/Moscow") (locale "en_US.utf8")=0A (bootloader (bootloader-con= figuration =0A (bootloader grub-bootloader) =0A (target "/dev/sdb")= ))=0A (file-systems (cons (file-system =0A (device "/dev/sdb2") = =0A (mount-point "/") =0A (type "ext4")) =0A %base-file-system= s))=0A (swap-devices '("/dev/sdb3"))=0A=0A (initrd-modules (append = (list "sata-sis")=0A %base-initrd-modules))=0A=0A (users (cons* = (user-account (name "bob") (group "users")=0A (supplementary-gr= oups '("wheel" "netdev" "audio" "video"))=0A (home-directory "/= home/bob"))=0A (user-account (name "mom") (group "users")=0A = (supplementary-groups '("wheel" "netdev" "audio" "video"))=0A = (home-directory "/home/mom"))=0A %base-user-accounts))=0A=0A ;; Thi= s is where we specify system-wide packages.=0A (packages (cons* nss-ce= rts ;for HTTPS access=0A gvfs ;for user mounts=0A wpa-su= pplicant=0A %base-packages))=0A=0A (services (cons* =0A ;= ; xfce4 desktop, dhcp-client, slim=0A (service xfce-desktop-servic= e-type)=0A (service dhcp-client-service-type)=0A ;; slim co= nfig for enabling touchpad tap=0A (service slim-service-type=0A = (slim-configuration=0A (xorg-configuration=0A (xorg-confi= guration=0A (extra-config =0A '("Section \"InputClass\"=0AI= dentifier \"touchpad\"=0ADriver \"libinput\"=0AMatchIsTouchpad \"on\"=0AO= ption \"Tapping\" \"on\"=0AEndSection")=0A ))))=0A )=0A= =0A (modify-services =0A ;; removing unnecessary serv= ices=0A (remove (lambda (service)=0A (member (service-kind se= rvice)=0A (list ntp-service-type avahi-service-type =0A b= luetooth-service network-manager-service-type=0A gdm-service-t= ype)))=0A %desktop-services) ;end of remove lambda services=0A= =0A ;; wpa_supplicant + dhcp-client (above) instead of networkman= ager=0A (wpa-supplicant-service-type config =3D>=0A (wpa= -supplicant-configuration=0A (interface "wlp2s0")=0A = (config-file "/etc/wpa_supplicant/wpa_supplicant.conf")))=0A=0A ;= ; disabling sleep on closing notebook lid=0A (elogind-service-typ= e=0A c =3D> (elogind-configuration (handle-lid-switch 'ignore)))= =0A ) ;;end of modify-services=0A )) ;;end of services=0A= =0A ;; Allow resolution of '.local' host names with mDNS.=0A (name-= service-switch %mdns-host-lookup-nss)=0A=0A ;;blacklist ugly sound spe= aker, blacklist ideapad_laptop for prevent soft blocking wlan=0A (kern= el-arguments '("modprobe.blacklist=3Dpcspkr,snd_pcsp,bluetooth"))=0A=0A = ) ;;end of operating-system=0A=0A =0A=0A=0AJune 15, 2019 4:46 PM, znavk= o@disroot.org wrote:=0A=0A> Hello! I have a buggy laptop Asus K50C. Time = always breaks there (maybe battery but I do not want=0A> to solve).=0A> I= 've installed Guix using manual installation method.=0A> Notebook booting= and during boot it stops after these lines:=0A> =0A> "[1.664111] tsc: Re= fined TSC clocksource calliration: 1500.340 MHz=0A> [1.664170] clocksourc= e: tsc: mask: 0xffffffffffffffff max_cycles: 0x15a063d2c74, max_idle_ns:= =0A> 440795230855 ns=0A> [1.664253] clocksource: Switched to clocksource = tsc "=0A> =0A> this is the end. I press 'enter' it only adds new lines. I= press Ctrl+C and get the=0A> 'bournish@(guile-user)> ' line.=0A> =0A> I'= ve parted my disk like this:=0A> /dev/sdb1 1Mb Linux filesystem=0A> /dev/= sdb2 50Gb Linux filesystem=0A> /dev/sdb3 14Gb Linux Swap=0A> =0A> Also, I= 've made ext4 on sdb2 and for /dev/sdb1 this:=0A> parted /dev/sdb set 1 b= ios_grub on=0A> I may have errors in config. This is my config I used for= guix system init:=0A> http://termbin.com/67pf=0A> =0A> --------=0A> =0A>= ;-*- mode: Scheme; -*- ;;this is znavko's cute config (use-modules (gnu)= (gnu system nss) (gnu=0A> system locale) ;;for locale-definition (gnu se= rvices desktop) (srfi srfi-1) ;;for remove function=0A> (gnu services net= working) ;;for remove ntp (gnu services avahi) ;;for remove avahi (gnu se= rvices=0A> xorg) (gnu packages admin) ;;for wpa_supplicant ) (use-service= -modules desktop)=0A> (use-package-modules certs gnome) (operating-system= (host-name "antelope") (timezone=0A> "Europe/Moscow") (locale "en_US.utf= 8") (bootloader (bootloader-configuration (bootloader=0A> grub-bootloader= ) (target "/dev/sdb"))) (file-systems (cons (file-system (device "/dev/sd= a2")=0A> (mount-point "/") (type "ext4")) %base-file-systems)) (swap-devi= ces '("/dev/sda3")) (users (cons*=0A> (user-account (name "bob") (group "= users") (supplementary-groups '("wheel" "netdev" "audio"=0A> "video")) (h= ome-directory "/home/bob")) (user-account (name "mom") (group "users")=0A= > (supplementary-groups '("wheel" "netdev" "audio" "video")) (home-direct= ory "/home/mom"))=0A> %base-user-accounts)) ;; This is where we specify s= ystem-wide packages. (packages (cons* nss-certs=0A> ;for HTTPS access gvf= s ;for user mounts wpa-supplicant %base-packages)) (services (cons* ;; xf= ce4=0A> desktop, dhcp-client, slim (service xfce-desktop-service-type) (s= ervice dhcp-client-service-type)=0A> ;; slim config for enabling touchpad= tap (service slim-service-type (slim-configuration=0A> (xorg-configurati= on (xorg-configuration (extra-config '("Section "InputClass" Identifier "= touchpad"=0A> Driver "libinput" MatchIsTouchpad "on" Option "Tapping" "on= " EndSection") )))) ) (modify-services=0A> ;; removing unnecessary servic= es (remove (lambda (service) (member (service-kind service) (list=0A> ntp= -service-type avahi-service-type bluetooth-service network-manager-servic= e-type=0A> gdm-service-type))) %desktop-services) ;end of remove lambda s= ervices ;; wpa_supplicant +=0A> dhcp-client (above) instead of networkman= ager (wpa-supplicant-service-type config =3D>=0A> (wpa-supplicant-configu= ration (interface "wlp2s0") (config-file=0A> "/etc/wpa_supplicant/wpa_sup= plicant.conf"))) ;; disabling sleep on closing notebook lid=0A> (elogind-= service-type c =3D> (elogind-configuration (handle-lid-switch 'ignore))) = ) ;;end of=0A> modify-services )) ;;end of services ;; Allow resolution o= f '.local' host names with mDNS.=0A> (name-service-switch %mdns-host-look= up-nss) ;;blacklist ugly sound speaker, blacklist=0A> ideapad_laptop for = prevent soft blocking wlan (kernel-arguments=0A> '("modprobe.blacklist=3D= pcspkr,snd_pcsp,bluetooth")) ) ;;end of operating-system ----------- I'd= =0A> better prefer to use chat for solving this, but due to I use free VP= N, freenode does not work for=0A> me. Please, what to do?