tor bridges in tor service

2022-02-23 Thread Adam Kandur
Hi guix! Is there a way to use tor bridges with tor service? As I know, there is the obfs4 package on debian which used to do this. Found nothing like this in guix packages. Maybe somebody has this issue or even uses tor service with bridges and has an example of config.

Re: Systemwide TOR Service

2020-08-26 Thread Joshua Branson
I believe that you want to use the tor-service-type. Take a look at the guix manual services section. That should give you all the info you need. -- Joshua Branson Sent from Emacs and Gnus

Re: Systemwide TOR Service

2020-08-20 Thread Julien Lepiller
In your system configuration, include the following to your list of services: (service tor-service-type) Reconfigure and enjoy! Note that if you checked to include tge tor service when installing the system, it's already running. See tor-service-type on https://guix.gnu.org/manual/dev

Systemwide TOR Service

2020-08-20 Thread julia . galaman--- via
Hello everyone, I'm going to reiterate, because I finally know how to ask this question. Does anybody know how to configure the systemwide TOR service you can include when installing the system? So that it's actually usable and visible to IceCat and such? Thanks in advance! -- B

Re: Tor Service

2019-05-31 Thread Raghav Gururajan
ccounts)) (packages (append (list nss-certs gvfs) %base-packages)) (services (append (list (extra-special-file "/usr/bin/env" (file-append coreutils "/bi

Re: Tor Service

2019-05-31 Thread Marius Bakke
; Nope! There was nothing related to tor in that interval. :-( > > I figured out why the Tor Service got TERM Signal out of no where. It is > because > of "tlp-service-type". I made a fresh re-install of guix system few days ago. > I > was enabling services one-by-one

Re: Tor Service

2019-05-30 Thread Raghav Gururajan
terval. :-( I figured out why the Tor Service got TERM Signal out of no where. It is because of "tlp-service-type". I made a fresh re-install of guix system few days ago. I was enabling services one-by-one and was checking tor service with herd status. As soon as I enable "tlp-servi

Re: Tor Service

2019-05-19 Thread Raghav Gururajan
> The Tor daemon received SIGTERM 10 minutes (or even 5 hours?) after it > had been started, so something must have happened. Is there anything > else in the log that could be useful in that interval? > Nope! There was nothing related to tor in that interval. :-(

Re: Tor Service

2019-05-19 Thread Ludovic Courtès
Hi, "Raghav Gururajan" skribis: > Apr 23 15:55:58 localhost shepherd[1]: Service tor has been started. > [...] > Apr 23 19:56:11 localhost Tor[1]: Bootstrapped 100%: Done > [...] > Apr 23 20:06:25 localhost Tor[1]: Catching signal TERM, exiting cleanly. The Tor daemon received SIGTERM 10 minut

Re: Tor Service

2019-05-17 Thread Raghav Gururajan
It appears the tor service starts and bootstraps well, but no idea why it stops after that. :-(

Re: Tor Service

2019-05-16 Thread Raghav Gururajan
>> Does /var/log/messages contain additional hints? > > Will look into it and get back to you. :-) Apr 23 19:55:57 localhost Tor[1]: Tor 0.3.4.11 (git-4fd31340f3355342) running on Linux with Libevent 2.1.8-stable, OpenSSL 1.0.2p, Zlib 1.2.11, Liblzma 5.2.4, and Libzstd 1.3.8. Apr 23 19:55:57 l

Re: Tor Service

2019-05-15 Thread Raghav Gururajan
> Does /var/log/messages contain additional hints? Will look into it and get back to you. :-) Regards, RG.

Re: Tor Service

2019-05-15 Thread Ludovic Courtès
Hi, "Raghav Gururajan" skribis: > When I check tor service with "herd status" as root, tor wasn't running. When > I did "herd start tor", I am getting error "service tor failed to start". Does /var/log/messages contain additional hints? Thanks, Ludo’.

Tor Service

2019-05-09 Thread Raghav Gururajan
Hello Guix! I added Tor Service with Default Configuration to my system config. I also added the user to Tor group. When I configured my browser to use localhost's tor port as proxy, I got error "proxy is refusing connection". When I check tor service with "herd status&

Re: Working example needed to extend tor-service with file-like object

2016-11-02 Thread ng0
want to understand how a file-like object would >> look like in the context of (services) in config.scm, so I can be >> sure I apply the correct thing. > > Oh, well: > > (tor-service (plain-file "tor.conf" "OptionOne Foo\nOptionTwo Bar\n“)) > > or: &g

Re: Working example needed to extend tor-service with file-like object

2016-11-02 Thread Ludovic Courtès
ke in the context of (services) in config.scm, so I can be > sure I apply the correct thing. Oh, well: (tor-service (plain-file "tor.conf" "OptionOne Foo\nOptionTwo Bar\n“)) or: (tor-service (local-file "../my-tor.conf")) HTH, Ludo’.

Re: Working example needed to extend tor-service with file-like object

2016-11-02 Thread ng0
Hi, l...@gnu.org (Ludovic Courtès) writes: > Hi! > > ng0 skribis: > >> Can someone give a working example for the tor-service? >> I volunteer to improve the documentation if I can get something >> out of this. > > I have something like this: Thanks, but ther

Re: Working example needed to extend tor-service with file-like object

2016-11-02 Thread Ludovic Courtès
Hi! ng0 skribis: > Can someone give a working example for the tor-service? > I volunteer to improve the documentation if I can get something > out of this. I have something like this: (services (cons* (lsh-service #:root-login? #t #:interfaces &#x

Working example needed to extend tor-service with file-like object

2016-10-30 Thread ng0
Hi, I'm trying to extend tor-service locally. I have read the documentation, but I really don't get at this moment how file-like objects can be included in the service. The documentation right now might have good intentions, and I do understand how each part works isolated, but for