Bonjour.

Je suis sur ubuntu 18.04. Tor version 0.3.2.10 (git-0edaa32732ec8930).

J'ai installé Tor et Polipo avec les configurations tel que:

/etc/tor/torcc

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
SOCKSPort 9050
ControlPort 9051
CookieAuthentication 1
/etc/tor/torsocks.conf
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
TorAddress 127.0.0.1 #déjà écrit comme tel je n'y ai pas touché
TorPort 9050
/etc/polipo/config

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
logSyslog = true
logFile = /var/log/polipo/polipo.log
socksParentProxy = localhost:9050
diskCacheRoot=""
disableLocalInterface=true
enfin le fichier de tor.service est tel que:
/lib/systemd/system/tor.service

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# This service is actually a systemd target,
# but we are using a service since targets cannot be reloaded.
 
[Unit]
Description=Anonymizing overlay network for TCP (multi-instance-master)
 
[Service]
Type=oneshot
RemainAfterExit=yes
ExecStart=/bin/true
ExecReload=/bin/true
 
[Install]
WantedBy=multi-user.target
J'ai tenté beaucoup de choses piochées par-ci par là mais j'ai toujours ce message:

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
(base) avy@avy-Moi:~$ sudo service tor status
● tor.service - Anonymizing overlay network for TCP (multi-instance-master)
   Loaded: loaded (/lib/systemd/system/tor.service; enabled; vendor preset: enab
   Active: active (exited) since Sun 2019-04-07 16:49:35 CEST; 3s ago
  Process: 2434 ExecStart=/bin/true (code=exited, status=0/SUCCESS)
 Main PID: 2434 (code=exited, status=0/SUCCESS)
 
avril 07 16:49:35 avy-Moi systemd[1]: Starting Anonymizing overlay network for T
avril 07 16:49:35 avy-Moi systemd[1]: Started Anonymizing overlay network for TC
lines 1-8/8 (END)
Comme ici j'ai bien tenté de faire:

Code : Sélectionner tout - Visualiser dans une fenêtre à part
service tor@default start
mais tout ce que j'obtiens c'est:
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
Job for tor@default.service failed because the control process exited with error code.
See "systemctl status tor@default.service" and "journalctl -xe" for details.
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
(base) avy@avy-Moi:~$ journalctl -xe
-- raison de sa configuration avec le paramètre Restart=.
avril 07 17:02:24 avy-Moi systemd[1]: Stopped Anonymizing overlay network for TC
-- Subject: L'unité (unit) tor@default.service a terminé son arrêt
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- L'unité (unit) tor@default.service a terminé son arrêt.
avril 07 17:02:24 avy-Moi systemd[1]: tor@default.service: Start request repeate
avril 07 17:02:24 avy-Moi systemd[1]: tor@default.service: Failed with result 'e
avril 07 17:02:24 avy-Moi systemd[1]: Failed to start Anonymizing overlay networ
-- Subject: L'unité (unit) tor@default.service a échoué
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- L'unité (unit) tor@default.service a échoué, avec le résultat RESULT.
avril 07 17:02:55 avy-Moi systemd[1]: Started Run anacron jobs.
-- Subject: L'unité (unit) anacron.service a terminé son démarrage
-- Defined-By: systemd
-- Support: http://www.ubuntu.com/support
-- 
-- L'unité (unit) anacron.service a terminé son démarrage, avec le résultat RESU
avril 07 17:02:55 avy-Moi anacron[3314]: Anacron 2.3 started on 2019-04-07
avril 07 17:02:55 avy-Moi anacron[3314]: Normal exit (0 jobs run)
Comment dois-je procéder ne serait-ce que pour diagnostiquer le problème? Et n'hésitez pas à me donner des détails comme si vous vous adressiez à quelqu'un qui n'y connaît pas grand chose pcq c'est le cas.