Différences
Ci-dessous, les différences entre deux révisions de la page.
Les deux révisions précédentes Révision précédente Prochaine révision | Révision précédente | ||
drcom [Le 26/11/2009, 04:41] 213.95.41.13 |
— (Version actuelle) | ||
---|---|---|---|
Ligne 1: | Ligne 1: | ||
- | {{tag>Karmic réseau BROUILLON}} | ||
- | ---- | ||
- | |||
- | ====== drcom : Client DoctorCom pour Linux ====== | ||
- | |||
- | Drcom est un client d'identification pour les réseaux (d'université principalement) : une IP, une personne. | ||
- | |||
- | C'est une version libre du client DocteurCom, réalisé initialement pour windows. | ||
- | |||
- | |||
- | ===== Pré-requis ===== | ||
- | |||
- | * Disposer des [[:sudo|droits d'administration]]. | ||
- | * Disposer d'une connexion à Internet configurée et activée. | ||
- | |||
- | ===== Installation ===== | ||
- | |||
- | ==== Ubuntu 9.10 ==== | ||
- | Télécharger le packet Karmic ici : http://ppa.launchpad.net/drcom-client/ppa/ubuntu/pool/main/d/drcom-pum/drcom-pum_1.0-0ubuntu1~ppa2~karmic1_i386.deb | ||
- | Lorsque vous l'installez, vous aurez un message d'erreur vous disant que la compilation a échouée. | ||
- | |||
- | Vous pouvez alors vous rendre dans le répertoire /usr/share/drcom/src/kmod/ puis appliquer le patch suivant : | ||
- | |||
- | Créez le fichier drcom.patch contenant : | ||
- | |||
- | <code> | ||
- | --- /usr/share/drcom/src/kmod/drcom.c 2009-06-24 16:18:28.000000000 +0800 | ||
- | +++ kmod/drcom.c 2009-11-25 22:16:33.000000000 +0800 | ||
- | @@ -683,7 +683,7 @@ | ||
- | csum_partial((char *)tcph, tcph->doff << 2, skb->csum)); | ||
- | |||
- | iph->tot_len = htons(skb->len); | ||
- | - __ip_select_ident(iph, skb->dst, 0); | ||
- | + __ip_select_ident(iph, (struct dst_entry *) skb->_skb_dst, 0); | ||
- | ip_send_check(iph); | ||
- | |||
- | return skb; | ||
- | @@ -720,7 +720,7 @@ | ||
- | csum_partial((char *)tcph, skb->len-ip_hdrlen(skb), skb->csum)); | ||
- | |||
- | iph->tot_len = htons(skb->len); | ||
- | - __ip_select_ident(iph, skb->dst, 0); | ||
- | + __ip_select_ident(iph, (struct dst_entry *) skb->_skb_dst, 0); | ||
- | ip_send_check(iph); | ||
- | |||
- | return skb; | ||
- | </code> | ||
- | |||
- | Ensuite appliquer le patch comme ceci | ||
- | |||
- | <code>sudo patch -N drcom.c < drcom.patch</code> | ||
- | |||
- | Vous pouvez maintenant relancer la compilation comme ceci : | ||
- | |||
- | <code>sudo drcom start</code> | ||
- | |||
- | Vous devez redémarrer, puis vous pouvez utiliser drcom via le menu Internet. Avec une jolie intégration à Ubuntu Gnome. | ||
- | |||
- | ==== Ubuntu 9.04 et antérieurs ==== | ||
- | |||
- | Vous pouvez simplement installer le paquet drcom correspondant à votre architecture. | ||
- | [[http://ppa.launchpad.net/drcom-client/ppa/ubuntu/pool/main/d/drcom-pum/]] | ||
- | |||
- | ===== Liens ===== | ||
- | |||
- | * **(en)** [[http://www.drcom-client.org/en/downloads/linux.html|Site officiel de drcom-project]] | ||
- | * **(zh)** [[http://bbs.szu.edu.cn/wForum/disparticle.php?boardName=Linux_Unix&ID=9348|Proposition originale de modification pour drcom]] | ||
- | * Portail [[Chinois]] | ||
- | ---- | ||
- | |||
- | //Contributeurs principaux : [[utilisateurs:Natim|Rémy Hubscher]]// |