unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
* bug#44437: Best way to install package in Guix System
@ 2020-11-04  7:25 musics--- via Bug reports for GNU Guix
  2020-11-04 13:36 ` Danny Milosavljevic
                   ` (11 more replies)
  0 siblings, 12 replies; 18+ messages in thread
From: musics--- via Bug reports for GNU Guix @ 2020-11-04  7:25 UTC (permalink / raw)
  To: 44437

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

What is the best way to install a package in Guix System? For installation (network-manager-openvpn), I put "guix install network-manager-openvpn" then "guix pull" and then "sudo guix system reconfigure /etc/config.scm" to complete the installation, but the package Not installed!

[-- Attachment #2: Type: text/html, Size: 1020 bytes --]

^ permalink raw reply	[flat|nested] 18+ messages in thread

* bug#44437: Best way to install package in Guix System
  2020-11-04  7:25 bug#44437: Best way to install package in Guix System musics--- via Bug reports for GNU Guix
@ 2020-11-04 13:36 ` Danny Milosavljevic
  2020-11-04 13:48 ` Tobias Geerinckx-Rice via Bug reports for GNU Guix
                   ` (10 subsequent siblings)
  11 siblings, 0 replies; 18+ messages in thread
From: Danny Milosavljevic @ 2020-11-04 13:36 UTC (permalink / raw)
  To: 44437; +Cc: musics

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

Hi,

On Wed, 4 Nov 2020 08:25:05 +0100 (CET)
musics--- via Bug reports for GNU Guix <bug-guix@gnu.org> wrote:

> What is the best way to install a package in Guix System? For installation (network-manager-openvpn), I put "guix install network-manager-openvpn" then "guix pull" and then "sudo guix system reconfigure /etc/config.scm" to complete the installation, but the package Not installed!

That is the correct way to install a package into your default user profile.

If you want to install a system service, however, that needs to be declared in
/etc/config.scm instead.

In this case, the operating-system's network-manager-service-type has a
<network-manager-configuration> record containing a field VPN-PLUGINS which
should list the packages you want as VPN plugins.  The default is the empty
list.

If your "services" field in operating-system in /etc/config.scm has
%desktop-services (which is likely), then you need to replace the
text %desktop-services by

            (modify-services %desktop-services
              (network-manager-type config =>
                (network-manager-configuration
                  (inherit config)
                  (vpn-plugins
                   (list network-manager-openvpn)))))

after you added

(use-package-modules gnome)

at the top of /etc/config.scm .

After that, invoke

  sudo guix system reconfigure /etc/config.scm

.

I checked and saw that this is documented in our info manual.

However, long term it would be better if the system installer or a system
configurer could do that via a text or graphical user interface.

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 18+ messages in thread

* bug#44437: Best way to install package in Guix System
  2020-11-04  7:25 bug#44437: Best way to install package in Guix System musics--- via Bug reports for GNU Guix
  2020-11-04 13:36 ` Danny Milosavljevic
@ 2020-11-04 13:48 ` Tobias Geerinckx-Rice via Bug reports for GNU Guix
  2020-11-04 14:50 ` musics--- via Bug reports for GNU Guix
                   ` (9 subsequent siblings)
  11 siblings, 0 replies; 18+ messages in thread
From: Tobias Geerinckx-Rice via Bug reports for GNU Guix @ 2020-11-04 13:48 UTC (permalink / raw)
  To: musics; +Cc: 44437

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

Musics,

musics--- via Bug reports for GNU Guix 写道:
> "guix install network-manager-openvpn" then "guix pull" and then
> "sudo guix system reconfigure /etc/config.scm"

‘guix pull’ updates the versions of packages that are *available* 
(guix package --list-available), but does not update any packages 
currently *installed* on your system.  For example:

  $ guix package --list-available=icecat
  icecat	78.3.0-guix0-preview1	...

  $ guix install icecat

  $ icecat --version
  GNU IceCat 78.3.0esr

  $ guix pull

  $ guix package --list-available=icecat
  icecat	78.4.1-guix0-preview1	...

  $ icecat --version
  GNU IceCat 78.3.0esr

  $ guix upgrade icecat # or guix install icecat

  $ icecat --version
  GNU IceCat 78.4.1esr

Kind regards,

T G-R

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 247 bytes --]

^ permalink raw reply	[flat|nested] 18+ messages in thread

* bug#44437: Best way to install package in Guix System
  2020-11-04  7:25 bug#44437: Best way to install package in Guix System musics--- via Bug reports for GNU Guix
  2020-11-04 13:36 ` Danny Milosavljevic
  2020-11-04 13:48 ` Tobias Geerinckx-Rice via Bug reports for GNU Guix
@ 2020-11-04 14:50 ` musics--- via Bug reports for GNU Guix
  2020-11-04 15:56   ` Tobias Geerinckx-Rice via Bug reports for GNU Guix
  2020-11-04 16:48   ` Danny Milosavljevic
  2020-11-04 16:55 ` musics--- via Bug reports for GNU Guix
                   ` (8 subsequent siblings)
  11 siblings, 2 replies; 18+ messages in thread
From: musics--- via Bug reports for GNU Guix @ 2020-11-04 14:50 UTC (permalink / raw)
  To: 44437

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

Many thanks to Danny and Tobias
I changed the config.scm file, after running "sudo guix system reconfigure /etc/config.scm" it displayed:
/etc/config.scm:31:6: error: network-manager-type: unbound variable
hint: Did you forget a ʻuse-modules' form?

[-- Attachment #2: Type: text/html, Size: 3390 bytes --]

^ permalink raw reply	[flat|nested] 18+ messages in thread

* bug#44437: Best way to install package in Guix System
  2020-11-04 14:50 ` musics--- via Bug reports for GNU Guix
@ 2020-11-04 15:56   ` Tobias Geerinckx-Rice via Bug reports for GNU Guix
  2020-11-04 16:48   ` Danny Milosavljevic
  1 sibling, 0 replies; 18+ messages in thread
From: Tobias Geerinckx-Rice via Bug reports for GNU Guix @ 2020-11-04 15:56 UTC (permalink / raw)
  To: musics; +Cc: 44437

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

Musics,

musics--- via Bug reports for GNU Guix 写道:
> I changed the config.scm file, after running "sudo guix system 
> reconfigure /etc/config.scm" it displayed:
> /etc/config.scm:31:6: error: network-manager-type: unbound 
> variable
> hint: Did you forget a ʻuse-modules' form?

You need to import the module that provides 
‘network-manager-type’.  Sometimes Guix suggests the module name 
in the hint, but not here.

You can find out the file name with ‘guix system search 
network-manager’ (eventually you'll ‘just know’, or grep the 
source ;-)

If the file name is gnu/services/networking.scm, the Guile module 
name is (gnu services networking).  This is a rule.

If you're using regular Guile use-modules syntax:

  (use-modules ...
               (gnu services networking)
               ...)

Or the Guix-specific use-service-modules syntax:

  (use-service-modules ...
                       networking
                       ...)

The latter is less verbose over time but both do the exact same 
thing.

Kind regards,

T G-R

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 247 bytes --]

^ permalink raw reply	[flat|nested] 18+ messages in thread

* bug#44437: Best way to install package in Guix System
  2020-11-04 14:50 ` musics--- via Bug reports for GNU Guix
  2020-11-04 15:56   ` Tobias Geerinckx-Rice via Bug reports for GNU Guix
@ 2020-11-04 16:48   ` Danny Milosavljevic
  1 sibling, 0 replies; 18+ messages in thread
From: Danny Milosavljevic @ 2020-11-04 16:48 UTC (permalink / raw)
  To: 44437; +Cc: musics

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

On Wed, 4 Nov 2020 15:50:17 +0100 (CET)
musics--- via Bug reports for GNU Guix <bug-guix@gnu.org> wrote:

> Many thanks to Danny and Tobias
> I changed the config.scm file, after running "sudo guix system reconfigure /etc/config.scm" it displayed:
> /etc/config.scm:31:6: error: network-manager-type: unbound variable
> hint: Did you forget a ʻuse-modules' form?

I'm sorry, I made a typo in the suggestion.

It should have been:

            (modify-services %desktop-services
              (network-manager-service-type config =>
                (network-manager-configuration
                  (inherit config)
                  (vpn-plugins
                   (list network-manager-openvpn)))))

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 18+ messages in thread

* bug#44437: Best way to install package in Guix System
  2020-11-04  7:25 bug#44437: Best way to install package in Guix System musics--- via Bug reports for GNU Guix
                   ` (2 preceding siblings ...)
  2020-11-04 14:50 ` musics--- via Bug reports for GNU Guix
@ 2020-11-04 16:55 ` musics--- via Bug reports for GNU Guix
  2020-11-04 17:20 ` musics--- via Bug reports for GNU Guix
                   ` (7 subsequent siblings)
  11 siblings, 0 replies; 18+ messages in thread
From: musics--- via Bug reports for GNU Guix @ 2020-11-04 16:55 UTC (permalink / raw)
  To: 44437

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

Thank you Tobias,

(use-modules ... (gnu services networking) ...)
Where do I put this? At top of the file?

[-- Attachment #2: Type: text/html, Size: 926 bytes --]

^ permalink raw reply	[flat|nested] 18+ messages in thread

* bug#44437: Best way to install package in Guix System
  2020-11-04  7:25 bug#44437: Best way to install package in Guix System musics--- via Bug reports for GNU Guix
                   ` (3 preceding siblings ...)
  2020-11-04 16:55 ` musics--- via Bug reports for GNU Guix
@ 2020-11-04 17:20 ` musics--- via Bug reports for GNU Guix
  2020-11-04 18:44 ` musics--- via Bug reports for GNU Guix
                   ` (6 subsequent siblings)
  11 siblings, 0 replies; 18+ messages in thread
From: musics--- via Bug reports for GNU Guix @ 2020-11-04 17:20 UTC (permalink / raw)
  To: 44437

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

Thanks so much Danny, it's right.

[-- Attachment #2: Type: text/html, Size: 173 bytes --]

^ permalink raw reply	[flat|nested] 18+ messages in thread

* bug#44437: Best way to install package in Guix System
  2020-11-04  7:25 bug#44437: Best way to install package in Guix System musics--- via Bug reports for GNU Guix
                   ` (4 preceding siblings ...)
  2020-11-04 17:20 ` musics--- via Bug reports for GNU Guix
@ 2020-11-04 18:44 ` musics--- via Bug reports for GNU Guix
  2020-11-04 19:44   ` Danny Milosavljevic
  2020-11-04 20:15 ` bug#44437: musics--- via Bug reports for GNU Guix
                   ` (5 subsequent siblings)
  11 siblings, 1 reply; 18+ messages in thread
From: musics--- via Bug reports for GNU Guix @ 2020-11-04 18:44 UTC (permalink / raw)
  To: 44437

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

But now the Add option to save the VPN is disabled. Cannot add an ovpn file. Is this related to this issue?

[-- Attachment #2: Type: text/html, Size: 247 bytes --]

^ permalink raw reply	[flat|nested] 18+ messages in thread

* bug#44437: Best way to install package in Guix System
  2020-11-04 18:44 ` musics--- via Bug reports for GNU Guix
@ 2020-11-04 19:44   ` Danny Milosavljevic
  0 siblings, 0 replies; 18+ messages in thread
From: Danny Milosavljevic @ 2020-11-04 19:44 UTC (permalink / raw)
  To: 44437; +Cc: musics

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

On Wed, 4 Nov 2020 19:44:44 +0100 (CET)
musics--- via Bug reports for GNU Guix <bug-guix@gnu.org> wrote:

> But now the Add option to save the VPN is disabled. Cannot add an ovpn file. Is this related to this issue?

I'm sorry, I do not understand what you mean.

Can you make a screenshot?

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 18+ messages in thread

* bug#44437:
  2020-11-04  7:25 bug#44437: Best way to install package in Guix System musics--- via Bug reports for GNU Guix
                   ` (5 preceding siblings ...)
  2020-11-04 18:44 ` musics--- via Bug reports for GNU Guix
@ 2020-11-04 20:15 ` musics--- via Bug reports for GNU Guix
  2020-11-04 20:39   ` bug#44437: Tobias Geerinckx-Rice via Bug reports for GNU Guix
  2020-11-04 20:46   ` bug#44437: Tobias Geerinckx-Rice via Bug reports for GNU Guix
  2020-11-04 20:47 ` bug#44437: musics--- via Bug reports for GNU Guix
                   ` (4 subsequent siblings)
  11 siblings, 2 replies; 18+ messages in thread
From: musics--- via Bug reports for GNU Guix @ 2020-11-04 20:15 UTC (permalink / raw)
  To: 44437


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



[-- Attachment #1.2: Type: text/html, Size: 140 bytes --]

[-- Attachment #2: Screenshot.png --]
[-- Type: image/png, Size: 48400 bytes --]

[-- Attachment #3: 60.127.203.32.ovpn --]
[-- Type: application/octet-stream, Size: 9377 bytes --]

###############################################################################
# OpenVPN 2.0 Sample Configuration File
# for PacketiX VPN / SoftEther VPN Server
# 
# !!! AUTO-GENERATED BY SOFTETHER VPN SERVER MANAGEMENT TOOL !!!
# 
# !!! YOU HAVE TO REVIEW IT BEFORE USE AND MODIFY IT AS NECESSARY !!!
# 
# This configuration file is auto-generated. You might use this config file
# in order to connect to the PacketiX VPN / SoftEther VPN Server.
# However, before you try it, you should review the descriptions of the file
# to determine the necessity to modify to suitable for your real environment.
# If necessary, you have to modify a little adequately on the file.
# For example, the IP address or the hostname as a destination VPN Server
# should be confirmed.
# 
# Note that to use OpenVPN 2.0, you have to put the certification file of
# the destination VPN Server on the OpenVPN Client computer when you use this
# config file. Please refer the below descriptions carefully.


###############################################################################
# Specify the type of the layer of the VPN connection.
# 
# To connect to the VPN Server as a "Remote-Access VPN Client PC",
#  specify 'dev tun'. (Layer-3 IP Routing Mode)
#
# To connect to the VPN Server as a bridging equipment of "Site-to-Site VPN",
#  specify 'dev tap'. (Layer-2 Ethernet Bridgine Mode)

dev tun


###############################################################################
# Specify the underlying protocol beyond the Internet.
# Note that this setting must be correspond with the listening setting on
# the VPN Server.
# 
# Specify either 'proto tcp' or 'proto udp'.

proto udp


###############################################################################
# The destination hostname / IP address, and port number of
# the target VPN Server.
# 
# You have to specify as 'remote <HOSTNAME> <PORT>'. You can also
# specify the IP address instead of the hostname.
# 
# Note that the auto-generated below hostname are a "auto-detected
# IP address" of the VPN Server. You have to confirm the correctness
# beforehand.
# 
# When you want to connect to the VPN Server by using TCP protocol,
# the port number of the destination TCP port should be same as one of
# the available TCP listeners on the VPN Server.
# 
# When you use UDP protocol, the port number must same as the configuration
# setting of "OpenVPN Server Compatible Function" on the VPN Server.

remote 60.127.203.32 1305


###############################################################################
# The HTTP/HTTPS proxy setting.
# 
# Only if you have to use the Internet via a proxy, uncomment the below
# two lines and specify the proxy address and the port number.
# In the case of using proxy-authentication, refer the OpenVPN manual.

;http-proxy-retry
;http-proxy [proxy server] [proxy port]


###############################################################################
# The encryption and authentication algorithm.
# 
# Default setting is good. Modify it as you prefer.
# When you specify an unsupported algorithm, the error will occur.
# 
# The supported algorithms are as follows:
#  cipher: [NULL-CIPHER] NULL AES-128-CBC AES-192-CBC AES-256-CBC BF-CBC
#          CAST-CBC CAST5-CBC DES-CBC DES-EDE-CBC DES-EDE3-CBC DESX-CBC
#          RC2-40-CBC RC2-64-CBC RC2-CBC
#  auth:   SHA SHA1 MD5 MD4 RMD160

cipher AES-128-CBC
auth SHA1


###############################################################################
# Other parameters necessary to connect to the VPN Server.
# 
# It is not recommended to modify it unless you have a particular need.

resolv-retry infinite
nobind
persist-key
persist-tun
client
verb 3
#auth-user-pass


###############################################################################
# The certificate file of the destination VPN Server.
# 
# The CA certificate file is embedded in the inline format.
# You can replace this CA contents if necessary.
# Please note that if the server certificate is not a self-signed, you have to
# specify the signer's root certificate (CA) here.

<ca>
-----BEGIN CERTIFICATE-----
MIIF3jCCA8agAwIBAgIQAf1tMPyjylGoG7xkDjUDLTANBgkqhkiG9w0BAQwFADCB
iDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0pl
cnNleSBDaXR5MR4wHAYDVQQKExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNV
BAMTJVVTRVJUcnVzdCBSU0EgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMTAw
MjAxMDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBiDELMAkGA1UEBhMCVVMxEzARBgNV
BAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQKExVU
aGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBSU0EgQ2Vy
dGlmaWNhdGlvbiBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIK
AoICAQCAEmUXNg7D2wiz0KxXDXbtzSfTTK1Qg2HiqiBNCS1kCdzOiZ/MPans9s/B
3PHTsdZ7NygRK0faOca8Ohm0X6a9fZ2jY0K2dvKpOyuR+OJv0OwWIJAJPuLodMkY
tJHUYmTbf6MG8YgYapAiPLz+E/CHFHv25B+O1ORRxhFnRghRy4YUVD+8M/5+bJz/
Fp0YvVGONaanZshyZ9shZrHUm3gDwFA66Mzw3LyeTP6vBZY1H1dat//O+T23LLb2
VN3I5xI6Ta5MirdcmrS3ID3KfyI0rn47aGYBROcBTkZTmzNg95S+UzeQc0PzMsNT
79uq/nROacdrjGCT3sTHDN/hMq7MkztReJVni+49Vv4M0GkPGw/zJSZrM233bkf6
c0Plfg6lZrEpfDKEY1WJxA3Bk1QwGROs0303p+tdOmw1XNtB1xLaqUkL39iAigmT
Yo61Zs8liM2EuLE/pDkP2QKe6xJMlXzzawWpXhaDzLhn4ugTncxbgtNMs+1b/97l
c6wjOy0AvzVVdAlJ2ElYGn+SNuZRkg7zJn0cTRe8yexDJtC/QV9AqURE9JnnV4ee
UB9XVKg+/XRjL7FQZQnmWEIuQxpMtPAlR1n6BB6T1CZGSlCBst6+eLf8ZxXhyVeE
Hg9j1uliutZfVS7qXMYoCAQlObgOK6nyTJccBz8NUvXt7y+CDwIDAQABo0IwQDAd
BgNVHQ4EFgQUU3m/WqorSs9UgOHYm8Cd8rIDZsswDgYDVR0PAQH/BAQDAgEGMA8G
A1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEMBQADggIBAFzUfA3P9wF9QZllDHPF
Up/L+M+ZBn8b2kMVn54CVVeWFPFSPCeHlCjtHzoBN6J2/FNQwISbxmtOuowhT6KO
VWKR82kV2LyI48SqC/3vqOlLVSoGIG1VeCkZ7l8wXEskEVX/JJpuXior7gtNn3/3
ATiUFJVDBwn7YKnuHKsSjKCaXqeYalltiz8I+8jRRa8YFWSQEg9zKC7F4iRO/Fjs
8PRF/iKz6y+O0tlFYQXBl2+odnKPi4w2r78NBc5xjeambx9spnFixdjQg3IM8WcR
iQycE0xyNN+81XHfqnHd4blsjDwSXWXavVcStkNr/+XeTWYRUc+ZruwXtuhxkYze
Sf7dNXGiFSeUHM9h4ya7b6NnJSFd5t0dCy5oGzuCr+yDZ4XUmFF0sbmZgIn/f3gZ
XHlKYC6SQK5MNyosycdiyA5d9zZbyuAlJQG03RoHnHcAP9Dc1ew91Pq7P8yF1m9/
qS3fuQL39ZeatTXaw2ewh0qpKJ4jjv9cJ2vhsE/zB+4ALtRZh8tSQZXq9EfX7mRB
VXyNWQKV3WKdwrnuWih0hKWbt5DHDAff9Yk2dDLWKMGwsAvgnEzDHNb842m1R0aB
L6KCq9NjRHDEjf8tM7qtj3u1cIiuPhnPQCjY/MiQu12ZIvVS5ljFH4gxQ+6IHdfG
jjxDah2nGN59PRbxYvnKkKj9
-----END CERTIFICATE-----

</ca>


###############################################################################
# The client certificate file (dummy).
# 
# In some implementations of OpenVPN Client software
# (for example: OpenVPN Client for iOS),
# a pair of client certificate and private key must be included on the
# configuration file due to the limitation of the client.
# So this sample configuration file has a dummy pair of client certificate
# and private key as follows.

<cert>
-----BEGIN CERTIFICATE-----
MIICxjCCAa4CAQAwDQYJKoZIhvcNAQEFBQAwKTEaMBgGA1UEAxMRVlBOR2F0ZUNs
aWVudENlcnQxCzAJBgNVBAYTAkpQMB4XDTEzMDIxMTAzNDk0OVoXDTM3MDExOTAz
MTQwN1owKTEaMBgGA1UEAxMRVlBOR2F0ZUNsaWVudENlcnQxCzAJBgNVBAYTAkpQ
MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5h2lgQQYUjwoKYJbzVZA
5VcIGd5otPc/qZRMt0KItCFA0s9RwReNVa9fDRFLRBhcITOlv3FBcW3E8h1Us7RD
4W8GmJe8zapJnLsD39OSMRCzZJnczW4OCH1PZRZWKqDtjlNca9AF8a65jTmlDxCQ
CjntLIWk5OLLVkFt9/tScc1GDtci55ofhaNAYMPiH7V8+1g66pGHXAoWK6AQVH67
XCKJnGB5nlQ+HsMYPV/O49Ld91ZN/2tHkcaLLyNtywxVPRSsRh480jju0fcCsv6h
p/0yXnTB//mWutBGpdUlIbwiITbAmrsbYnjigRvnPqX1RNJUbi9Fp6C2c/HIFJGD
ywIDAQABMA0GCSqGSIb3DQEBBQUAA4IBAQChO5hgcw/4oWfoEFLu9kBa1B//kxH8
hQkChVNn8BRC7Y0URQitPl3DKEed9URBDdg2KOAz77bb6ENPiliD+a38UJHIRMqe
UBHhllOHIzvDhHFbaovALBQceeBzdkQxsKQESKmQmR832950UCovoyRB61UyAV7h
+mZhYPGRKXKSJI6s0Egg/Cri+Cwk4bjJfrb5hVse11yh4D9MHhwSfCOH+0z4hPUT
Fku7dGavURO5SVxMn/sL6En5D+oSeXkadHpDs+Airym2YHh15h0+jPSOoR6yiVp/
6zZeZkrN43kuS73KpKDFjfFPh8t4r1gOIjttkNcQqBccusnplQ7HJpsk
-----END CERTIFICATE-----

</cert>

<key>
-----BEGIN RSA PRIVATE KEY-----
MIIEpAIBAAKCAQEA5h2lgQQYUjwoKYJbzVZA5VcIGd5otPc/qZRMt0KItCFA0s9R
wReNVa9fDRFLRBhcITOlv3FBcW3E8h1Us7RD4W8GmJe8zapJnLsD39OSMRCzZJnc
zW4OCH1PZRZWKqDtjlNca9AF8a65jTmlDxCQCjntLIWk5OLLVkFt9/tScc1GDtci
55ofhaNAYMPiH7V8+1g66pGHXAoWK6AQVH67XCKJnGB5nlQ+HsMYPV/O49Ld91ZN
/2tHkcaLLyNtywxVPRSsRh480jju0fcCsv6hp/0yXnTB//mWutBGpdUlIbwiITbA
mrsbYnjigRvnPqX1RNJUbi9Fp6C2c/HIFJGDywIDAQABAoIBAERV7X5AvxA8uRiK
k8SIpsD0dX1pJOMIwakUVyvc4EfN0DhKRNb4rYoSiEGTLyzLpyBc/A28Dlkm5eOY
fjzXfYkGtYi/Ftxkg3O9vcrMQ4+6i+uGHaIL2rL+s4MrfO8v1xv6+Wky33EEGCou
QiwVGRFQXnRoQ62NBCFbUNLhmXwdj1akZzLU4p5R4zA3QhdxwEIatVLt0+7owLQ3
lP8sfXhppPOXjTqMD4QkYwzPAa8/zF7acn4kryrUP7Q6PAfd0zEVqNy9ZCZ9ffho
zXedFj486IFoc5gnTp2N6jsnVj4LCGIhlVHlYGozKKFqJcQVGsHCqq1oz2zjW6LS
oRYIHgECgYEA8zZrkCwNYSXJuODJ3m/hOLVxcxgJuwXoiErWd0E42vPanjjVMhnt
KY5l8qGMJ6FhK9LYx2qCrf/E0XtUAZ2wVq3ORTyGnsMWre9tLYs55X+ZN10Tc75z
4hacbU0hqKN1HiDmsMRY3/2NaZHoy7MKnwJJBaG48l9CCTlVwMHocIECgYEA8jby
dGjxTH+6XHWNizb5SRbZxAnyEeJeRwTMh0gGzwGPpH/sZYGzyu0SySXWCnZh3Rgq
5uLlNxtrXrljZlyi2nQdQgsq2YrWUs0+zgU+22uQsZpSAftmhVrtvet6MjVjbByY
DADciEVUdJYIXk+qnFUJyeroLIkTj7WYKZ6RjksCgYBoCFIwRDeg42oK89RFmnOr
LymNAq4+2oMhsWlVb4ejWIWeAk9nc+GXUfrXszRhS01mUnU5r5ygUvRcarV/T3U7
TnMZ+I7Y4DgWRIDd51znhxIBtYV5j/C/t85HjqOkH+8b6RTkbchaX3mau7fpUfds
Fq0nhIq42fhEO8srfYYwgQKBgQCyhi1N/8taRwpk+3/IDEzQwjbfdzUkWWSDk9Xs
H/pkuRHWfTMP3flWqEYgW/LW40peW2HDq5imdV8+AgZxe/XMbaji9Lgwf1RY005n
KxaZQz7yqHupWlLGF68DPHxkZVVSagDnV/sztWX6SFsCqFVnxIXifXGC4cW5Nm9g
va8q4QKBgQCEhLVeUfdwKvkZ94g/GFz731Z2hrdVhgMZaU/u6t0V95+YezPNCQZB
wmE9Mmlbq1emDeROivjCfoGhR3kZXW1pTKlLh6ZMUQUOpptdXva8XxfoqQwa3enA
M7muBbF0XN7VO80iJPv+PmIZdEIAkpwKfi201YB+BafCIuGxIF50Vg==
-----END RSA PRIVATE KEY-----

</key>


^ permalink raw reply	[flat|nested] 18+ messages in thread

* bug#44437:
  2020-11-04 20:15 ` bug#44437: musics--- via Bug reports for GNU Guix
@ 2020-11-04 20:39   ` Tobias Geerinckx-Rice via Bug reports for GNU Guix
  2020-11-04 20:46   ` bug#44437: Tobias Geerinckx-Rice via Bug reports for GNU Guix
  1 sibling, 0 replies; 18+ messages in thread
From: Tobias Geerinckx-Rice via Bug reports for GNU Guix @ 2020-11-04 20:39 UTC (permalink / raw)
  To: musics; +Cc: 44437

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

musics--- via Bug reports for GNU Guix 写道:
> 60.127.203.32.ovpn

I'm compelled to point out that this file contains private keys. 
You should change them immediately if that was unintentional.

Kind regards,

T G-R

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 247 bytes --]

^ permalink raw reply	[flat|nested] 18+ messages in thread

* bug#44437:
  2020-11-04 20:15 ` bug#44437: musics--- via Bug reports for GNU Guix
  2020-11-04 20:39   ` bug#44437: Tobias Geerinckx-Rice via Bug reports for GNU Guix
@ 2020-11-04 20:46   ` Tobias Geerinckx-Rice via Bug reports for GNU Guix
  1 sibling, 0 replies; 18+ messages in thread
From: Tobias Geerinckx-Rice via Bug reports for GNU Guix @ 2020-11-04 20:46 UTC (permalink / raw)
  To: musics; +Cc: 44437

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

> a dummy pair of client certificate
> and private key

Never mind, I can't read.  Or rather I refuse to.

Kind regards,

T G-R

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 247 bytes --]

^ permalink raw reply	[flat|nested] 18+ messages in thread

* bug#44437:
  2020-11-04  7:25 bug#44437: Best way to install package in Guix System musics--- via Bug reports for GNU Guix
                   ` (6 preceding siblings ...)
  2020-11-04 20:15 ` bug#44437: musics--- via Bug reports for GNU Guix
@ 2020-11-04 20:47 ` musics--- via Bug reports for GNU Guix
  2020-11-04 21:09 ` bug#44437: musics--- via Bug reports for GNU Guix
                   ` (3 subsequent siblings)
  11 siblings, 0 replies; 18+ messages in thread
From: musics--- via Bug reports for GNU Guix @ 2020-11-04 20:47 UTC (permalink / raw)
  To: 44437

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

I downloaded this from vpngate.net, I need a password?

[-- Attachment #2: Type: text/html, Size: 194 bytes --]

^ permalink raw reply	[flat|nested] 18+ messages in thread

* bug#44437:
  2020-11-04  7:25 bug#44437: Best way to install package in Guix System musics--- via Bug reports for GNU Guix
                   ` (7 preceding siblings ...)
  2020-11-04 20:47 ` bug#44437: musics--- via Bug reports for GNU Guix
@ 2020-11-04 21:09 ` musics--- via Bug reports for GNU Guix
  2020-11-05 10:38 ` bug#44437: musics--- via Bug reports for GNU Guix
                   ` (2 subsequent siblings)
  11 siblings, 0 replies; 18+ messages in thread
From: musics--- via Bug reports for GNU Guix @ 2020-11-04 21:09 UTC (permalink / raw)
  To: 44437

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

in Debian, I used this method to connect.

[-- Attachment #2: Type: text/html, Size: 181 bytes --]

^ permalink raw reply	[flat|nested] 18+ messages in thread

* bug#44437:
  2020-11-04  7:25 bug#44437: Best way to install package in Guix System musics--- via Bug reports for GNU Guix
                   ` (8 preceding siblings ...)
  2020-11-04 21:09 ` bug#44437: musics--- via Bug reports for GNU Guix
@ 2020-11-05 10:38 ` musics--- via Bug reports for GNU Guix
  2020-11-06 15:01 ` bug#44437: musics--- via Bug reports for GNU Guix
  2020-11-06 15:14 ` bug#44437: musics--- via Bug reports for GNU Guix
  11 siblings, 0 replies; 18+ messages in thread
From: musics--- via Bug reports for GNU Guix @ 2020-11-05 10:38 UTC (permalink / raw)
  To: 44437

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

this is a Guix System bug?

[-- Attachment #2: Type: text/html, Size: 166 bytes --]

^ permalink raw reply	[flat|nested] 18+ messages in thread

* bug#44437:
  2020-11-04  7:25 bug#44437: Best way to install package in Guix System musics--- via Bug reports for GNU Guix
                   ` (9 preceding siblings ...)
  2020-11-05 10:38 ` bug#44437: musics--- via Bug reports for GNU Guix
@ 2020-11-06 15:01 ` musics--- via Bug reports for GNU Guix
  2020-11-06 15:14 ` bug#44437: musics--- via Bug reports for GNU Guix
  11 siblings, 0 replies; 18+ messages in thread
From: musics--- via Bug reports for GNU Guix @ 2020-11-06 15:01 UTC (permalink / raw)
  To: 44437

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

Fortunately, the problem was solved.
It had a simple solution,
I copied the private key of the last part of the ovpn file from under <key> and pasted it into another file and saved it with the "key" extension; In the last step, after inserting the ovpn file, I put the key file in the last place (called "User private key") and successfully turned on the VPN.

[-- Attachment #2: Type: text/html, Size: 533 bytes --]

^ permalink raw reply	[flat|nested] 18+ messages in thread

* bug#44437:
  2020-11-04  7:25 bug#44437: Best way to install package in Guix System musics--- via Bug reports for GNU Guix
                   ` (10 preceding siblings ...)
  2020-11-06 15:01 ` bug#44437: musics--- via Bug reports for GNU Guix
@ 2020-11-06 15:14 ` musics--- via Bug reports for GNU Guix
  11 siblings, 0 replies; 18+ messages in thread
From: musics--- via Bug reports for GNU Guix @ 2020-11-06 15:14 UTC (permalink / raw)
  To: 44437-done

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



[-- Attachment #2: Type: text/html, Size: 140 bytes --]

^ permalink raw reply	[flat|nested] 18+ messages in thread

end of thread, other threads:[~2020-11-06 15:44 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-04  7:25 bug#44437: Best way to install package in Guix System musics--- via Bug reports for GNU Guix
2020-11-04 13:36 ` Danny Milosavljevic
2020-11-04 13:48 ` Tobias Geerinckx-Rice via Bug reports for GNU Guix
2020-11-04 14:50 ` musics--- via Bug reports for GNU Guix
2020-11-04 15:56   ` Tobias Geerinckx-Rice via Bug reports for GNU Guix
2020-11-04 16:48   ` Danny Milosavljevic
2020-11-04 16:55 ` musics--- via Bug reports for GNU Guix
2020-11-04 17:20 ` musics--- via Bug reports for GNU Guix
2020-11-04 18:44 ` musics--- via Bug reports for GNU Guix
2020-11-04 19:44   ` Danny Milosavljevic
2020-11-04 20:15 ` bug#44437: musics--- via Bug reports for GNU Guix
2020-11-04 20:39   ` bug#44437: Tobias Geerinckx-Rice via Bug reports for GNU Guix
2020-11-04 20:46   ` bug#44437: Tobias Geerinckx-Rice via Bug reports for GNU Guix
2020-11-04 20:47 ` bug#44437: musics--- via Bug reports for GNU Guix
2020-11-04 21:09 ` bug#44437: musics--- via Bug reports for GNU Guix
2020-11-05 10:38 ` bug#44437: musics--- via Bug reports for GNU Guix
2020-11-06 15:01 ` bug#44437: musics--- via Bug reports for GNU Guix
2020-11-06 15:14 ` bug#44437: musics--- via Bug reports for GNU Guix

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).