Re: How to reconfigure system without downloads I did not order?

2020-11-28 Thread znavko
I restarted the process of reconfigure (usual without additional flags and hacks) for abput 25 times and at last it downloaded everything and finished successfully. I think Guix needs good infrastructure and some mechanism of checking optimal mirrors and recommendations for using them. To add

Re: What is 'Linux home' filesystem type in fdisk ?

2020-11-28 Thread Tobias Geerinckx-Rice
Heyo znavko, znavko--- via 写道: And I want to know what is '28 Linux home' file system? It's one of those systemd-only ‘standards’[0] (hence the ‘Linux’ misnomer). Can I use it? Yes, these subtypes are mostly ignored and treated as equivalent the regular ‘20 Linux filesystem’ type. I

Re: help with gitolite

2020-11-28 Thread Christopher Baines
Jesse Gibbons writes: > I am trying to set up gitolite on a server. I have been able to set it > up with my ssh key, but it fails when I reboot the server. I test it > with `ssh git@ip-address help`. It does work again when I once again > run guix deploy. Has anyone had a similar problem? I

Re: How to reconfigure system without downloads I did not order?

2020-11-28 Thread Tobias Geerinckx-Rice
Hullo znavko, znavko--- via 写道: I am sorry. How to prevent the process of system upgrade and just remain things as they are but only adding new disk to my system? Guix can't upgrade your system, it can only build a new one. It will merely re-use parts of the old system that they have in

How to reconfigure system without downloads I did not order?

2020-11-28 Thread znavko--- via
Hello! I have a little incomprehension that make solving a simple task so slow. I just want to say Guix to mount newly inserted SSD (3rd from all) after every start. I have just edited /root/config-2-disks.conf placing these lines: (operating-system (host-name "antelope") (timezone

Manual: why not restart service over killing the process

2020-11-28 Thread EuAndreh
Hi! The manual suggests a deploy-hook for the certbot-service-type that looks like this: (define %nginx-deploy-hook (program-file "nginx-deploy-hook" #~(let ((pid (call-with-input-file "/var/run/nginx/pid" read))) (kill pid SIGHUP Instead of requiring the deploy-hook to know

Re: How to reconfigure system without downloads I did not order?

2020-11-28 Thread znavko
I think you're good hacker, but I'm still using bandy hands. Yes, you are right, I made gc and deleted all previous generations 2 days ago, and now Guix has nothing work with. And I'm still in front of network a problem and cannot just apply new config file: Is a flag 'build from source' can

Re: How to reconfigure system without downloads I did not order?

2020-11-28 Thread jbranso
There is some code for guix that will allow guix to distribute software updates over IPFS. You are welcome to contribute to that! I believe that there is also some work that will allow people to fetch software updates over GNUnet. Both of these proposals would allow users from all over the

Trouble packaging a ruby dependency

2020-11-28 Thread Holger Peters
I have problems building `ruby-rugged'. The patch below is as far as I get, however it fails with an error message I cannot quite debug. Maybe part of the problem is that `ruby-rugged' bundls libgit and I try to have it use the system-provided on.

Re: Manual: why not restart service over killing the process

2020-11-28 Thread EuAndreh
Christopher Baines writes: > You're sort of right, but you've got the downsides the wrong way around. > > The key bit with the kill call is the SIGHUP but, not that it's not > SIGKILL. The current situation won't kill the NGinx process, but instead > just get it to reload the certificate (at