From mboxrd@z Thu Jan 1 00:00:00 1970 From: Archetyp Jung Subject: Re: Problem with Tor & IceCat Date: Wed, 9 Jan 2019 17:09:04 +0100 Message-ID: <20190109170904.3666a2e1@e.mail.de> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([209.51.188.92]:38819) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ghGQE-0005Um-UV for help-guix@gnu.org; Wed, 09 Jan 2019 11:09:40 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ghGQD-0000Dc-7j for help-guix@gnu.org; Wed, 09 Jan 2019 11:09:38 -0500 Received: from shout01.mail.de ([2001:868:100:600::216]:43826) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1ghGQB-000086-3F for help-guix@gnu.org; Wed, 09 Jan 2019 11:09:35 -0500 Received: from postfix01.mail.de (postfix03.bt.mail.de [10.0.121.127]) by shout01.mail.de (Postfix) with ESMTP id 5D6F6100418 for ; Wed, 9 Jan 2019 17:09:25 +0100 (CET) Received: from smtp03.mail.de (smtp03.bt.mail.de [10.0.121.213]) by postfix01.mail.de (Postfix) with ESMTP id 4656B80067 for ; Wed, 9 Jan 2019 17:09:25 +0100 (CET) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp03.mail.de (Postfix) with ESMTPSA id 0FEDA80666 for ; Wed, 9 Jan 2019 17:09:23 +0100 (CET) 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@gnu.org Joshua Branson writes: Archetyp Jung writes: > Sorry Ludo, but I reinstalled the operating system yesterday. :-( > > Thanks to my customized config.scm, everything works fine here, > including Tor. ;-) > > BTW: I no longer use Tor in GNU IceCat with the Tor? browser button, > but directly via Proxy DNS when using SOCKS v5. Can you describe this setup? I would like to use Tor properly, and currently I cannot. :( -- Joshua Branson Sent from Emacs and Gnus Hello Joshua, this is my current config.scm: ;; This is an operating system configuration template ;; for a "desktop" setup with Xfce. (use-modules (gnu) (gnu system nss)) (use-service-modules desktop networking) (use-package-modules certs xfce) (operating-system (host-name "gnu") (timezone "Europe/Berlin") (locale "de_DE.UTF-8") ;; Assuming /dev/sda is the target hard disk, and "my-root" ;; is the label of the target root file system. (bootloader (grub-configuration (device "/dev/sda"))) (file-systems (cons (file-system (device "my-root") (title 'label) (mount-point "/") (type "ext4")) %base-file-systems)) (users (cons (user-account (name "user") (comment "") (group "users") (supplementary-groups '("wheel" "netdev" "audio" "video")) (home-directory "/home/user")) %base-user-accounts)) ;; This is where we specify system-wide packages. (packages (cons* nss-certs ;for HTTPS access %base-packages)) ;; Add GNOME and/or Xfce---we can choose at the log-in ;; screen with F1. Use the "desktop" services, which ;; include the X11 log-in service, networking with ;; NetworkManager, and more. (services (cons* (console-keymap-service "de") (service tor-service-type) (xfce-desktop-service) %desktop-services)) ;; Allow resolution of '.local' host names with mDNS. (name-service-switch %mdns-host-lookup-nss)) And here are the relevant entries for Tor: (use-service-modules desktop networking) (service tor-service-type) -- Sent from GNU