bug-guix
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#43778: closed (Re: bug#43778: protonvpn-cli does not work after upda


From: znavko
Subject: bug#43778: closed (Re: bug#43778: protonvpn-cli does not work after update)
Date: Sun, 04 Oct 2020 16:14:49 +0000

Sorry, it still does not work! Before update, it sometimes could not find 
network, but stopping and starting wpa-supplicant and networking solved 
problem, restat was effective solution too.

But now protonvpn does not connect at all.


# protonvpn c
[!] There was an error connecting to the ProtonVPN API.
[!] Please make sure your connection is working properly!


# herd stop wpa-supplicant
# herd start wpa-supplcant
# herd stop networking
# herd start networking


# protonvpn c
[!] There was an error connecting to the ProtonVPN API.
[!] Please make sure your connection is working properly!


# restart
# protonvpn c
[!] There was an error connecting to the ProtonVPN API.
[!] Please make sure your connection is working properly!

# cat /etc/config.scm

;-*- mode: Scheme; -*-
;;this is znavko's cute config
;; for lightweight xfce4 desktop
;; without networkmanager but wpa_supplicant + dhcp-client instead

(use-modules (gnu) (gnu system nss)
             (gnu system locale) ;;for locale-definition
             (gnu services desktop)
             (srfi srfi-1)             ;;for remove function
             (gnu services networking) ;;for remove ntp
             (gnu services avahi)      ;;for remove avahi
             (gnu services xorg)
             (gnu packages admin) ;;for wpa_supplicant
             )

(use-service-modules desktop)
(use-package-modules certs gnome)

(operating-system (host-name "antelope") (timezone "Europe/Moscow") (locale 
"en_US.utf8")
                  (bootloader (bootloader-configuration (bootloader 
grub-efi-bootloader) (target "/boot/efi")))
                  (file-systems (cons* 
                                        (file-system (device "/dev/sda1") 
(mount-point "/boot/efi") (type "vfat"))
                                        (file-system (device "/dev/sda2") 
(mount-point "/") (type "ext4")) 
                                        (file-system (device "/dev/sdb1") 
(mount-point "/home/bob/plus") (type "ext4")) 
                                %base-file-systems))

                  (swap-devices '("/dev/sda3"))

                  (users (cons* (user-account (name "bob") (group "users")
                                              (supplementary-groups '("wheel" 
"netdev" "audio" "video"))
                                              (home-directory "/home/bob"))
                                (user-account (name "mom") (group "users")
                                              (supplementary-groups '("wheel" 
"netdev" "audio" "video"))
                                              (home-directory "/home/mom"))
                                %base-user-accounts))

                  ;; This is where we specify system-wide packages.
                  (packages (cons* nss-certs ;for HTTPS access
                                   gvfs      ;for user mounts
                                   wpa-supplicant
                                   %base-packages))

                  (services (cons* 
                             ;; xfce4 desktop, dhcp-client, slim
                             (service xfce-desktop-service-type)
                             (service dhcp-client-service-type)
                             (service slim-service-type)

                             (modify-services      
                              ;; removing unnecessary services
                              (remove (lambda (service)
                                        (member (service-kind service)
                                                (list ntp-service-type 
avahi-service-type 
                                                      bluetooth-service 
network-manager-service-type
                                                      gdm-service-type)))
                                      %desktop-services) ;end of remove lambda 
services

                              ;; wpa_supplicant + dhcp-client (above) instead 
of networkmanager
                              (wpa-supplicant-service-type config =>
                                                           
(wpa-supplicant-configuration
                                                            (interface 
"wlp0s20f0u1")
                                                            (config-file 
"/etc/wpa_supplicant/wpa_supplicant.conf")))

                              ) ;;end of modify-services
                             )) ;;end of services

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

                  ;;blacklist ugly sound speaker, blacklist ideapad_laptop for 
prevent soft blocking wlan
                  (kernel-arguments 
'("modprobe.blacklist=pcspkr,snd_pcsp,bluetooth"))

                  ) ;;end of operating-system


What to do?


October 3, 2020 2:54 PM, help-debbugs@gnu.org wrote:

> Your bug report
> 
> #43778: protonvpn-cli does not work after update
> 
> which was filed against the guix package, has been closed.
> 
> The explanation is attached below, along with your original report.
> If you require more details, please reply to 43778@debbugs.gnu.org.
> 
> -- 
> 43778: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=43778
> GNU Bug Tracking System
> Contact help-debbugs@gnu.org with problems





reply via email to

[Prev in Thread] Current Thread [Next in Thread]