Re: Réglage résolution écran

2010-09-14 Thread moi-meme
Le Mon, 13 Sep 2010 22:30:02 +0200, Jean-Yves F. Barbier a écrit :

 Pour les LCD, c'est autre chose (et bien franchement je ne sais pas
 quoi): par exemple j'ai un 24 IIYAMA branché sur une CM mini-itx de
 chez ASUS et si j'indique les fréquences de synchronisation H+V dans
 /etc/X11/xorg.conf, je me retrouve le même PB que toi!

je n'ai pas de problème de CRT : ça marche out of the box (merci).

J'ai eu quelques problèmes du style avec un vieux CRT mais c'était en 
sortie auxiliaire sur un eeePC et je forçais un peu la mise.

Pour ta ligne  Modeline penches toi sur cvt : ça aide.

et son copain xrandr (ou grandr) je ne sais pas sur quoi tu tournes

-- 
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/4c8f25b6$0$10450$426a7...@news.free.fr



Re: pb connexion wifi.

2010-09-14 Thread C. Mourad Jaber

 Le 12/09/2010 19:18, Michaël Van Nieuwenhoven a écrit :

Le 12/09/2010 15:07, Sylvain L. Sauvage a écrit :

Le samedi 11 septembre 2010 à 23:15:33, Michaël Van Nieuwenhoven
a écrit :

Bonsoir,

’jour,


Bonsoir,

Depuis pas mal de temps, j'essaye de résoudre un problème
récurrent : utiliser une connexion wifi gérée par
NetworkManager. En effet, lors de mise à jour de la version
Sid, je dois procéder à plusieurs initialisations de la
carte pour que le processus arrive à son terme.
J'ai le même type de problème, avec le WEP, c'est catastrophique, + d'une dizaine de 
tentative avant que ça marche !
Pour le WPA c'est une ou 2 fois en général sauf pour les clés longues ( 50 caractères) où 
là, c'est impossible de se connecter 
(http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=593988)...



NetworkManager est bien intégré au sein de Kde, il devrait-être pleinement 
fonctionnel !
Le module KDE network manager est expérimental, c'est pour cela que les fonctionnalités 
sont un peu aléatoires !

Michaël


++

Mourad

--
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/4c8f3214.8090...@nativobject.net



Re: [HS] Help pour débuter avec iptables

2010-09-14 Thread giggz
Pascal Hambourg a écrit :
 giggz a écrit :
 Le 11/09/2010 12:48, Pascal Hambourg a écrit :
 [...]
 Oui, même si le traitement d'ICMPv6 pourrait être affiné un poil.
 ok. j'ai mis ça:
 -A INPUT -p icmpv6 --icmpv6-type echo-request -j ACCEPT
 
 Euh, là ça devient un peu trop restrictif. Je pensais plutôt à autoriser
 les types ICMPv6 impliqués dans le protocole Neighbour Discovery (NDP) :
 neighbour-solicitation, neighbour-advertisement (équivalents d'ARP
 request et reply) et, pour les interfaces en auto-configuration sans
 état, router-advertisement ou au contraire router-solicitation pour une
 machine fonctionnant en routeur IPv6 avec radvd dessus. Les paquets de
 type redirect sont normalement classés RELATED donc pas besoin de s'en
 occuper spécifiquement.
 

ok. j'ai lu un peu de doc:
pour l'instant j'ai ça:
-A INPUT -i eth1 -p icmpv6 --icmpv6-type packet-too-big -j ACCEPT
-A INPUT -i eth1 -p icmpv6 --icmpv6-type destination-unreachable -j ACCEPT
-A INPUT -i eth1 -p icmpv6 --icmpv6-type time-exceeded -j ACCEPT
-A INPUT -i eth1 -p icmpv6 --icmpv6-type parameter-problem -j ACCEPT
-A INPUT -i eth1 -p icmpv6 --icmpv6-type echo-request -j ACCEPT
-A INPUT -i eth1 -p icmpv6 --icmpv6-type echo-reply -j ACCEPT
-A INPUT -i eth1 -p icmpv6 --icmpv6-type router-advertisement -j ACCEPT
-A INPUT -i eth1 -p icmpv6 --icmpv6-type neighbour-solicitation -j ACCEPT
-A INPUT -i eth1 -p icmpv6 --icmpv6-type neighbour-advertisement -j ACCEPT


mais sur un site j'ai vu des règles plus fines:

# Allow some ICMPv6 types in the INPUT chain
# Using ICMPv6 type names to be clear.

ip6tables -A INPUT -p icmpv6 --icmpv6-type destination-unreachable -j ACCEPT
ip6tables -A INPUT -p icmpv6 --icmpv6-type packet-too-big -j ACCEPT
ip6tables -A INPUT -p icmpv6 --icmpv6-type time-exceeded -j ACCEPT
ip6tables -A INPUT -p icmpv6 --icmpv6-type parameter-problem -j ACCEPT

# Allow some other types in the INPUT chain, but rate limit.
ip6tables -A INPUT -p icmpv6 --icmpv6-type echo-request -m limit --limit
600/min -j ACCEPT
ip6tables -A INPUT -p icmpv6 --icmpv6-type echo-reply -m limit --limit
600/min -j ACCEPT

# Allow others ICMPv6 types but only if the hop limit field is 255.

ip6tables -A INPUT -p icmpv6 --icmpv6-type router-advertisement   -m hl
--hl-eq 255 -j ACCEPT
ip6tables -A INPUT -p icmpv6 --icmpv6-type neighbor-solicitation  -m hl
--hl-eq 255 -j ACCEPT
ip6tables -A INPUT -p icmpv6 --icmpv6-type neighbor-advertisement -m hl
--hl-eq 255 -j ACCEPT
ip6tables -A INPUT -p icmpv6 --icmpv6-type redirect   -m hl
--hl-eq 255 -j ACCEPT


qu'en penses tu ?

Pour répondre à ta question: est ce qu'on utilise ipv6 ? je crois bien
que non en ce moment. mais bon un jour ou l'autre ça va nous tomber
dessus. donc je prépare un peu le terrain ;)

 Bon j'ai lu encore un peu de doc sur iptables. On peut paufiner les
 règles avec --match limit. Je suppose qu'il faut que j'attende un peu
 avant de me lancer dedans non ?
 
 Comme la correspondance recent, c'est à manier avec précaution et il
 faut regarder si c'est vraiment utile.
 

ok. pour l'instant je me renseigne juste sur la chose.

merci!

-- 
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/i6nfjs$le...@dough.gmane.org



plantages d'emacs 23

2010-09-14 Thread Pierre Crescenzo
Bonjour,

Depuis sa dernière mise à jour (testing), mon emacs (23.2+1-4) plante
beaucoup, et de plus en plus souvent (des dizaines de fois par
jour). (Je l'utilise en permanence avec GNUS et BBDB.) Avez-vous
expérimenté ce genre de choses ?

Ce que je vois par exemple dans /var/log/syslog (je n'ai pas (encore)
trouvé le rapport de bug correspondant) :

Sep 14 11:58:30 tpol kernel: [15508.307516] emacs23[24445]: segfault at
8a5cbe6d ip b6a806d7 sp bf9b4d60 error 4 in
libc-2.11.2.so[b6a0c000+14]

Merci. A+

[CITATION ALÉATOIRE : On ne couche pas avec les femmes de ses amis. Mais
 alors avec lesquelles ? Sacha Guitry]

-- 
  Pierre Crescenzo
mailto:pie...@crescenzo.nom.fr
http://www.crescenzo.nom.fr/

--
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/87eicwfxnr@tpol.unice.fr



Re: plantages d'emacs 23

2010-09-14 Thread bernard . schoenacker

- Mail d'origine -
De: Pierre Crescenzo pie...@crescenzo.nom.fr
À: Liste debian-user-french debian-user-french@lists.debian.org
Envoyé: Tue, 14 Sep 2010 12:05:12 +0200 (CEST)
Objet: plantages d'emacs 23

Bonjour,

Depuis sa dernière mise à jour (testing), mon emacs (23.2+1-4) plante
beaucoup, et de plus en plus souvent (des dizaines de fois par
jour). (Je l'utilise en permanence avec GNUS et BBDB.) Avez-vous
expérimenté ce genre de choses ?

Ce que je vois par exemple dans /var/log/syslog (je n'ai pas (encore)
trouvé le rapport de bug correspondant) :

Sep 14 11:58:30 tpol kernel: [15508.307516] emacs23[24445]: segfault at
8a5cbe6d ip b6a806d7 sp bf9b4d60 error 4 in
libc-2.11.2.so[b6a0c000+14]

Merci. A+

[CITATION ALÉATOIRE : On ne couche pas avec les femmes de ses amis. Mais
 alors avec lesquelles ? Sacha Guitry]

-- 
  Pierre Crescenzo
mailto:pie...@crescenzo.nom.fr
http://www.crescenzo.nom.fr/

bonjour,

serait il possible de vérifier la compatibilité  des versions :

- gnus 
- bbdb

vis à vis de emacs23 ...

autrement mh-e pourrai servir de roue de secours

slt
bernard

--
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: 
http://lists.debian.org/1577126790.1691284459876290.javamail.r...@zimbra28-e5.priv.proxad.net



Re: plantages d'emacs 23

2010-09-14 Thread Pierre Crescenzo
Bonjour,

 Depuis sa dernière mise à jour (testing), mon emacs (23.2+1-4) plante
 beaucoup, et de plus en plus souvent (des dizaines de fois par
 jour). (Je l'utilise en permanence avec GNUS et BBDB.) Avez-vous
 expérimenté ce genre de choses ?
[...]

 serait il possible de vérifier la compatibilité des versions :
 - gnus
 - bbdb
 vis à vis de emacs23 ...

J'ai emacs 23.2+1-4, GNUS 5.13 (fourni avec emacs) et BBDB 2.36-1. Ce
sont les actuelles versions, mises à jour quotidiennement, de testing.

 autrement mh-e pourrai servir de roue de secours

Ah non ! Au secours ! ;-) Pas possible avec plusieurs dizaines
d'adresses de courriel, des milliers de messages quotidiens et GNUS et
BBDB longuement configurés au fil des années pour cela.

(Je ne sais d'ailleurs même pas si GNUS et/ou BBDB sont impliqués dans
les plantages.)

Merci. A+

[CITATION ALÉATOIRE : Ne remets pas à demain ce que tu peux faire
 après-demain. Alphonse Allais]

-- 
  Pierre Crescenzo
mailto:pie...@crescenzo.nom.fr
http://www.crescenzo.nom.fr/

--
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/87vd68ehht@tpol.unice.fr



Re: [HS] Help pour débuter avec iptables

2010-09-14 Thread Pascal Hambourg
giggz a écrit :
 
 pour l'instant j'ai ça:
 -A INPUT -i eth1 -p icmpv6 --icmpv6-type packet-too-big -j ACCEPT
 -A INPUT -i eth1 -p icmpv6 --icmpv6-type destination-unreachable -j ACCEPT
 -A INPUT -i eth1 -p icmpv6 --icmpv6-type time-exceeded -j ACCEPT
 -A INPUT -i eth1 -p icmpv6 --icmpv6-type parameter-problem -j ACCEPT

Les paquets de ces types (types d'erreurs) sont normalement classés dans
l'état RELATED lorsqu'ils sont liés à une connexion existante et INVALID
dans le cas contraire, donc pas besoin de les traiter spécifiquement.

 -A INPUT -i eth1 -p icmpv6 --icmpv6-type echo-request -j ACCEPT

Ok pour autoriser le ping en entrée.

 -A INPUT -i eth1 -p icmpv6 --icmpv6-type echo-reply -j ACCEPT

Normalement classé ESTABLISHED si correspond à une requête émise et
INVALID sinon, donc pas besoin de traiter spécifiquement.

 -A INPUT -i eth1 -p icmpv6 --icmpv6-type router-advertisement -j ACCEPT

Utile pour une interface d'hôte en autoconf, mais pas pour un routeur.

 -A INPUT -i eth1 -p icmpv6 --icmpv6-type neighbour-solicitation -j ACCEPT

Utile pour un routeur seulement.

 -A INPUT -i eth1 -p icmpv6 --icmpv6-type neighbour-advertisement -j ACCEPT

Ok. Il faut aussi accepter le type neighbour-solicitation.

 mais sur un site j'ai vu des règles plus fines:
[...]
 # Allow some other types in the INPUT chain, but rate limit.
 ip6tables -A INPUT -p icmpv6 --icmpv6-type echo-request -m limit --limit
 600/min -j ACCEPT

Ça se défend, notamment dans le cas d'une liaison à débits asymétriques
de type ADSL.

 ip6tables -A INPUT -p icmpv6 --icmpv6-type echo-reply -m limit --limit
 600/min -j ACCEPT

Là par contre, je ne vois pas l'intérêt. Si on reçoit des réponses,
c'est normalement qu'on a envoyé les requêtes et donc qu'on attend ces
réponses. La correspondance avec l'état ESTABLISHED me semble plus
pertinente pour vérifier que ce sont bien des réponses attendues.

 # Allow others ICMPv6 types but only if the hop limit field is 255.
 
 ip6tables -A INPUT -p icmpv6 --icmpv6-type router-advertisement   -m hl
 --hl-eq 255 -j ACCEPT
 ip6tables -A INPUT -p icmpv6 --icmpv6-type neighbor-solicitation  -m hl
 --hl-eq 255 -j ACCEPT
 ip6tables -A INPUT -p icmpv6 --icmpv6-type neighbor-advertisement -m hl
 --hl-eq 255 -j ACCEPT
 ip6tables -A INPUT -p icmpv6 --icmpv6-type redirect   -m hl
 --hl-eq 255 -j ACCEPT

La vérification du champ HL (hop limit, équivalent au TTL d'IPv4) à 255
pour les types NDP de portée limitée au lien est une bonne mesure pour
vérifier que ces messages viennent bien d'un voisin du réseau local et
pas de plus loin, même si tout routeur bien constitué ne devrait jamais
retransmettre ces messages.

-- 
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/4c8f5df5.6050...@plouf.fr.eu.org



Re: pb connexion wifi.

2010-09-14 Thread Sylvain L. Sauvage
’jour,

Le lundi 13 septembre 2010 à 20:10:38, Michaël Van Nieuwenhoven 
a écrit :
[…]
 Pourquoi passes-tu par une nouvelle connexion, ta
 connexion
  
  habituelle n’est pas mémorisée ?  Note aussi que cocher la
  case « connexion automatique » simplifie la vie.
 
 Elle est nommée new wireless connection et elle est
 mémorisée.

  Argh, encore pour tromper l’ennemi ? ;o)

[…]
 La mise à jour de sid d'aujourd'hui étant légère, j'ai essayé
 de télécharger la Debian-506-amd64-businesscard.iso
 Et le téléchargement s'est arrêté à 17.6 Mo sur 37.1 Mo (234
 ko/s), je transmets donc les logs à l'instant T pour que le
 déterminisme puisse jouer son rôle...
 
 Sep 13 19:10:02 debian rsyslogd: [origin software=rsyslogd
 swVersion=4.6.4 x-pid=1189
 x-info=http://www.rsyslog.com;] rsyslogd was HUPed, type
 'lightweight'.
 Sep 13 19:11:43 debian anacron[1286]: Job `cron.daily'
 terminated Sep 13 19:11:43 debian anacron[1286]: Normal exit
 (1 job run) Sep 13 19:16:34 debian kernel: [  707.132256]
 CCMP: received packet without ExtIV flag from
 42:c1:e0:d5:7a:08
 Sep 13 19:16:34 debian kernel: [  707.132430] CCMP: received
 packet without ExtIV flag from 42:c1:e0:d5:7a:08
 Sep 13 19:16:34 debian kernel: [  707.132952] CCMP: received
 packet without ExtIV flag from 42:c1:e0:d5:7a:08

  D’après ce que j’en comprends, ce serait la FB qui t’envoie 
des paquets incorrects/non chiffrés. Peut-être la source de la 
déconnexion.

 Sep 13 19:16:34 debian kernel: [  707.645417] Associated
 successfully Sep 13 19:16:34 debian kernel: [  707.645426]
 Using G rates Sep 13 19:16:34 debian NetworkManager[1305]:
 info (wlan0): supplicant connection state:  completed -
 associated
 Sep 13 19:16:34 debian wpa_supplicant[1335]: Associated with
 42:c1:e0:d5:7a:08
[ ad lib ]

  Hmm, il n’y a pas de trace d’une déconnexion, juste toutes ces 
ré-associations. C’est étrange (pour moi en tout cas) de ne pas 
avoir de trace de déconnexion…

  Ça déconnecte seulement quand tu t’en sers ou à n’importe quel 
moment ?
Il doit y avoir un « rekeying » (re-échange de clefs) 
régulièrement (toutes les 10 min). Ça apparaît dans les logs.
Si tu ne les vois jamais, ça peut être un indice.

  syslog devrait contenir toutes les traces, mais as-tu regardé 
s’il n’y avait rien de bizarre ailleurs ?

  Tu peux aussi ajouter
[logging]
level=debug

dans /etc/NetworkManager/NetworkManager.conf (ce fichier a sa 
page de man).

-- 
 Sylvain Sauvage

--
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/201009141427.43291.sylvain.l.sauv...@free.fr



Re: pb connexion wifi.

2010-09-14 Thread Sylvain L. Sauvage
Le mardi 14 septembre 2010 à 10:28:04, C. Mourad Jaber a écrit :
[…]
  NetworkManager est bien intégré au sein de Kde, il
  devrait-être pleinement fonctionnel !
 
 Le module KDE network manager est expérimental, c'est pour
 cela que les fonctionnalités sont un peu aléatoires !

  Gni ?
  network-manager-kde a mis un peu de temps à être porté de 
KDE 3 à KDE 4 mais c’est le même (vieil) outil. Cette applet 
peut servir dans n’importe quel DE/WM.

  plasma-widget-networkmanagement est plus récent (et plus sympa 
aussi) mais je n’ai pas expérimenté de problème avec lui non 
plus. Cette applet ne peut fonctionner qu’avec Plasma.

  Les deux discutent avec NM via D-Bus donc les problèmes se 
divisent en deux :
— ceux de NM (en général des problèmes de pilote) ;
— des problèmes de stockage ou passage des paramètres par 
  l’applet (p.ex. quand ils ont décidé d’utiliser de vrais UUID
  dans le fichier de conf. de kn-m, ce qui a invalidé les 
  anciennes conf.).

-- 
 Sylvain Sauvage

--
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/201009141445.44176.sylvain.l.sauv...@free.fr



Re: Utilisation stable de l'intégralité de la ram disponible

2010-09-14 Thread Thibaut Chèze
Bonjour,

Après tests et surveillance, mes barrettes ne dépassent jamais les 45°C,
et sont le plus souvent à 42°C (:-)), la différence est dû à la
température de l'air qui entre dans la tour, non à l'utilisation de la ram.
Le voltage oscile entre 2.14V et 2.16V...
Je ne pense pas que le problème soit physique du coup...

Et la franchement, je ne vois pas quoi changer dans la conf pour changer
cela.

Le 12/09/2010 17:47, Thibaut Chèze a écrit :
 Bonjour
   
   Reste à voir la stabilité avec 8 Gio. Là-dessus, mon avis est 
 de faire gaffe à la température (donc aussi à la tension) : la 
 RAM semble perdre en cohérence quand elle a chaud. (4 barrettes 
 sont aussi plus difficiles à refroidir que 2 (plus serrées, 
 etc.).) 
   
 
 En effet, perso, quand je les touches, elles ne sont pas très chaudes,
 il y a un ventilateur d'extraction de 12cm 3cm au dessus d'elles.
 Les sensors m'indiquent qu'elles sont à 45°C en usage normal (pas
 spécialement stressant). Je ferais un retour si jamais elle augmente
 significativement lors d'une opération la sollicitant fortement.

 Autrement, le voltage est réglé à 2.10V dans le Bios, et le capteur
 indique 2.14 V, mais je ne pense pas qu'une si faible différence soit la
 cause des problèmes (Je regarderai egalement si cette valeur change
 lorsque le système est chargé).


   



signature.asc
Description: OpenPGP digital signature


Re: pb connexion wifi.

2010-09-14 Thread C. Mourad Jaber



Le 14/09/2010 14:45, Sylvain L. Sauvage a écrit :

Le mardi 14 septembre 2010 à 10:28:04, C. Mourad Jaber a écrit :

[…]

NetworkManager est bien intégré au sein de Kde, il
devrait-être pleinement fonctionnel !

Le module KDE network manager est expérimental, c'est pour
cela que les fonctionnalités sont un peu aléatoires !

   Gni ?
   network-manager-kde a mis un peu de temps à être porté de
KDE 3 à KDE 4 mais c’est le même (vieil) outil. Cette applet
peut servir dans n’importe quel DE/WM.

   plasma-widget-networkmanagement est plus récent (et plus sympa
aussi) mais je n’ai pas expérimenté de problème avec lui non
plus. Cette applet ne peut fonctionner qu’avec Plasma.

   Les deux discutent avec NM via D-Bus donc les problèmes se
divisent en deux :
— ceux de NM (en général des problèmes de pilote) ;
— des problèmes de stockage ou passage des paramètres par
   l’applet (p.ex. quand ils ont décidé d’utiliser de vrais UUID
   dans le fichier de conf. de kn-m, ce qui a invalidé les
   anciennes conf.).

le network-manager-kde n'est plus compatible avec KDE3 depuis plus d'1 an, c'est une 
version spécifique à KDE4 :

Package: network-manager-kde
Priority: optional
Section: kde
Installed-Size: 276
Maintainer: Debian KDE Extras Team pkg-kde-ext...@lists.alioth.debian.org
Architecture: amd64
Source: plasma-widget-networkmanagement (0.1~svn1141976-1)
Version: 1:0.9~svn1141976-1
Provides: knetworkmanager
Depends: kdebase-runtime, knm-runtime (= 0.1~svn1141976-1+kde45), libc6 (= 2.2.5), 
libgcc1 (= 1:4.1.1), libkdecore5 (= 4:4.4.0), libkdeui5 (= 4:4.4.0), libqt4-dbus (= 
4:4.6.0), libqt4-network (= 4:4.6.0), libqt4-svg (= 4:4.6.0), libqtcore4 (= 4:4.6.1), 
libqtgui4 (= 4:4.6.0), libsolid4 (= 4:4.4.0), libsolidcontrol4a (= 4:4.4.0), libstdc++6 
(= 4.1.1)


Il est experimental (version svn) et à des comportements capricieux en particulier avec la 
gestion des profils de connexion, il pilote de manière assez bizarre NetworkManager d'où 
le problèmes de connexion !


++

Mourad

--
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/4c8f71b9.1090...@nativobject.net



Re: [HS] Help pour débuter avec iptables

2010-09-14 Thread Pascal Hambourg
Pascal Hambourg a écrit :
 giggz a écrit :
 
 -A INPUT -i eth1 -p icmpv6 --icmpv6-type neighbour-solicitation -j ACCEPT
 
 Utile pour un routeur seulement.

Oups, j'ai confondu avec router-solicitation. Ok.

 -A INPUT -i eth1 -p icmpv6 --icmpv6-type neighbour-advertisement -j ACCEPT
 
 Ok. Il faut aussi accepter le type neighbour-solicitation.

-- 
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/4c8f7cc2.1040...@plouf.fr.eu.org



Re: pb connexion wifi.

2010-09-14 Thread Sylvain L. Sauvage
Le mardi 14 septembre 2010 à 14:59:37, C. Mourad Jaber a écrit :
[…]
 Gni ?
 network-manager-kde a mis un peu de temps à être porté
  de KDE 3 à KDE 4 mais c’est le même (vieil) outil. Cette
  applet peut servir dans n’importe quel DE/WM.
[…]
 le network-manager-kde n'est plus compatible avec KDE3 depuis
 plus d'1 an, c'est une version spécifique à KDE4 : […]

  Oui, KDE est passé de la version 3 à la version 4, et ?  On 
peut toujours se servir de l’applet knm avec Fvwm, Gnome, LXDE…

 Il est experimental (version svn)

  Ok, c’est juste un problème de vocabulaire. svn ne veut pas 
dire expérimental, du moins pour moi. svn-xxx indique juste plus 
précisément quelle version est utilisée puisque le numéro de 
version de knm n’est pas incrémenté régulièrement et, surtout 
quand certains ont des problèmes, autant être précis et indiquer 
que l’on suit bien les m-à-j. et corrections de bogues (mais 
bon, c’est pas que knm subisse beaucoup de corrections, le n° de 
svn est celui de KDE).

  plasma-widget-network-management mérite plus le qualificatif 
d’expérimental : version 0.1, tout beau tout neuf.
  Bon les deux partagent le même paquet source mais il semble 
qu’il y a encore des différences.

 et à des comportements
 capricieux en particulier avec la gestion des profils de
 connexion,

  Ah.

 il pilote de manière assez bizarre NetworkManager
 d'où le problèmes de connexion !

  Ah ?  Dans ton rapport de bogue, tu dis pourtant que tu ne 
sais pas d’où vient le problème (de connexion avec une clef WPA 
de 64 caractères) entre knm, nm ou wpa-supplicant.

-- 
 Sylvain Sauvage

--
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/201009141823.25799.sylvain.l.sauv...@free.fr



appeler un script dans une fonction

2010-09-14 Thread Maurice Guerrier


 
Bonjour,

J'ai écrit une fonction en shell j'aimerais bien faire appel a un script 
externe 
à l'intérieur  de ma fonction

avez-vous une idée de la façon de faire ?

merci



  

Installer debian etch : quel mirroir ?

2010-09-14 Thread Luxpopuli Open source
Bonjour,

Voilà, je voudrais installer debian etch (4.0 r9) car j'ai besoin d'un
environnement avec PHP4 pour mettre à jour un site.

Ce site est actuellement réalisé avec un CMS dont la version date un peu est
n'est compatible qu'avec PHP4.
Pour mettre à jour ce site vers une version récente de ce CMS (compatible
avec PHP5) je dois en passer par des mises à jour intermédiaires compatibles
uniquement ave PHP 4

C'est pourquoi j'ai voulu installer sur un vieux disque une version Etch
(4.0r9) de debian.
Pour éviter de copier trop d'images ISO je souhaitais faire une
«netinstall». Malheureusement, le système ne trouve aucun miroir contenant
encore les packages de Etch.

J'ai cherché sur le web mais je n'ai trouvé aucun miroir contenant Etch.

Quelqu'un parmi vous aurait-il une solution à mon problème ?
Peut-être y a t-il une autre solution à mon problème d'environnement PHP 4 ?

Merci d'avance,

Pascal


Re: [HS] Help pour débuter avec iptables

2010-09-14 Thread giggz
Le 14/09/2010 15:46, Pascal Hambourg a écrit :
 Pascal Hambourg a écrit :
 giggz a écrit :

 -A INPUT -i eth1 -p icmpv6 --icmpv6-type neighbour-solicitation -j ACCEPT

 Utile pour un routeur seulement.
 
 Oups, j'ai confondu avec router-solicitation. Ok.
 
 -A INPUT -i eth1 -p icmpv6 --icmpv6-type neighbour-advertisement -j ACCEPT

 Ok. Il faut aussi accepter le type neighbour-solicitation.
 

ok super j'ai fait les modifs. je vais voir à l'usage.

Y a des règles pour définir les limites avec -m limit --limit ? ou alors
c'est au pif ?

Merci pour tout!


-- 
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/i6oq5h$gt...@dough.gmane.org



Re: Installer debian etch : quel mirroir ?

2010-09-14 Thread Serge Cavailles
Bonjour,

Le Tuesday 14 September 2010 22:56:26 Luxpopuli Open source, vous avez écrit :
 Bonjour,

 Voilà, je voudrais installer debian etch (4.0 r9) car j'ai besoin d'un
 environnement avec PHP4 pour mettre à jour un site.

Voir ici: http://archive.debian.org/debian/

Et d'après le README situé à cette url, la ligne correspondante du 
sources.list est de la forme
deb http://archive.debian.org/debian/ $RELEASE main contrib

Cordialement,
-- 
Serge



--
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/201009150028.59158.debse...@free.fr



Re: appeler un script dans une fonction

2010-09-14 Thread Alain rpnpif
On Tue, Sep 14, 2010 at 01:36:24PM -0700, Maurice Guerrier wrote:
 
 
  
 Bonjour,
 
 J'ai écrit une fonction en shell j'aimerais bien faire appel a un script 
 externe 
 à l'intérieur  de ma fonction
 
 avez-vous une idée de la façon de faire ?

Bonjour,

Lire le manuel :
man bash
si c'est bash, le shell.

Pour appeler un script externe :
1. tout simplement :
monScript

2.
Si on ne veut pas de retour :
exec monScript

3.
Si on veut inclure le script externe (bien adapté pour une fonction):
source monScript
ou bien :
. mon Script

Il existe des tutoriels pour débutants sur le Web.

-- 
Alain Frappin


-- 
Lisez la FAQ de la liste avant de poser une question :
http://wiki.debian.org/fr/FrenchLists

Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe
vers debian-user-french-requ...@lists.debian.org
En cas de soucis, contactez EN ANGLAIS listmas...@lists.debian.org
Archive: http://lists.debian.org/20100915055652.ga3...@arrcuis.home



Re: 'jeden' mysql na kilku hostach

2010-09-14 Thread Jerzy Patraszewski
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Jak doniosły WSI, dnia Mon, 13 Sep 2010 20:38:05 +0200
Marek m...@wp.pl napisał(a):

Hej,
imo najlepiej będzie jak zrobisz sobie:
- - 2 serwery master-master 
- - 1 serwer jako slave (do któregoś z masterów)

dane do portali (w trybie RO) - ciągniesz ze slave'a,
zapis wrzucasz na jednego z masterów (2-gi się nudzi, jest tylko
dla zapewnienia redundancji)

Wymaga to niestety rozdzielenia w site'ach updateów/insertów/selectów RW
od selectów RO, ale to chyba nie jest problem (jeśli jednak jest to
możesz zawsze rozdzielić to via mysqlproxy/greensql/jakieś proxy
mysqlowe)

W takiej konfiguracji: 
jeśli padnie slave - przełączasz site'y na ip masterów i jest OK,
jeśli padnie master, przepinasz slave'a na drugiego mastera
po naprawie musisz tylko pamiętać co gdzie zsynchronizować.
jeśli padną obydwa mastery to site będzie ci działał w trybie RO,
co w większości wypadków wystarczy,
jeśli padną ci wszystkie trzy to i tak masz pozamiatane :D

Co do clustra-nbd - 100% zgadzam się z Wojtkiem, co więcej - dalej
bardziej nie działa niż działa ; poza tym ma dość dużo ograniczeń 
 np 64k/rekord+to o czym Wojtek pisał,

drbd - jest najgorszą z możliwych opcji - nawet na PNET, 
nawet testując na 10Gb jak się dociążyło bazę leżącą na drbd+nfsv3
to wwzystko wisiało na I/O.

Pozdr. 
sm0q
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEARECAAYFAkyPS7IACgkQoacw6qH103CAXQCghV6vFsg9PoTjMKR15y3SgFJG
mhIAn0opfGyRCQ/awKg8yK96Zqk3/631
=zUAn
-END PGP SIGNATURE-


Wsparcie dla Durabook M14...

2010-09-14 Thread TENEG - Tomasz Gołębiewski

 Witam serdecznie,

wpadł mi w ręce taki pancerny notebook, może się ktoś spotkał:
Durabook M14
http://rugged.com.pl/durabooku14m.html

Chciałbym spróbować na tym postawić Ubuntu/Debiana, jednak ani widu ani 
słychu o jakichś sterownikach / pakietach..

Generalnie chodzi o Wine + port RS232 żeby programy widziały ten port.

Ktoś próbował coś takiego???


--
To UNSUBSCRIBE, email to debian-user-polish-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4c8f5dd8.7080...@teneg.com.pl



[OT] - Laboral

2010-09-14 Thread Leandro Minatel
Estimados, antes que nada disculpen el [off topic]

Estamos buscando una persona que se desempeñe en el departamento de
tecnologia de nuestra Empresa, ubicada en Caseros, zona Oeste del gran
Buenos Aires.

Los requisitos basicos son los siguientes:

1- Conocimientos Linux (preferentemente Debian)
2- Conocimientos Windows (Server y Workstation)
3- Conocimientos armado y reparacion de PC
4- Conocimientos redes y comunicaciones (hardware y software)

Enviar CV junto con pretensiones economicas a r...@gaci.com.ar con asunto
BL01-DebianList

No me envien correos a mi cuenta ya que no los leere!

Saludos y gracias.


Re: [OT] - Laboral

2010-09-14 Thread Adrià
2010/9/14 Leandro Minatel leandromina...@gmail.com:
 Estimados, antes que nada disculpen el [off topic]

 Estamos buscando una persona que se desempeñe en el departamento de
 tecnologia de nuestra Empresa, ubicada en Caseros, zona Oeste del gran
 Buenos Aires.

 Los requisitos basicos son los siguientes:

 1- Conocimientos Linux (preferentemente Debian)
 2- Conocimientos Windows (Server y Workstation)
 3- Conocimientos armado y reparacion de PC
 4- Conocimientos redes y comunicaciones (hardware y software)

 Enviar CV junto con pretensiones economicas a r...@gaci.com.ar con asunto
 BL01-DebianList

 No me envien correos a mi cuenta ya que no los leere!

 Saludos y gracias.


http://lists.debian.org/debian-jobs/

-- 
Adrià García-Alzórriz
adri...@gmail.com

Senior Specialist
Browns  Chickens Dept.


--
To UNSUBSCRIBE, email to debian-user-spanish-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/aanlktinx+y__6zzyebf6l-rljwzoebcm6y2hokk7w...@mail.gmail.com



Debian en Intel Core i5

2010-09-14 Thread gvr
Buen dia colegas.

Alguien podria indicarme que imagen debo de usar para una placa con
procesador intel Core i5 ?

i386 ?

Slds y gracias.


GVR


Informe SAMBA

2010-09-14 Thread Orlando Nuñez
Saludos.


Me gustaria saber si samba a traves de swat o otra herramienta pudiera
mostrarme una lista que me muestre todos los grupos creados en el servidor y
a su vez que usuarios esten incluidos en cada grupo, por ejemplo:

1. Administracion
  1.1. Contabilidad
  1.2. RRHH
  1.3. Nomina

La carpeta Administracion tenga acceso el grupo admin y esten los
siguientes usuarios:
* Pedro
* Maria
* Pablo
* Karina
* Jose
* Ramon
* Mariangela
* Joel
* Joelia
* Angelica
* Laura
* Pipo

Ahora en el directorio Contabilidad solo tenga acceso el grupo contab
donde esten los siguientes usuario:
* Pedro
* Maria
* Pablo

Ahora en el directorio RRHH solo tenga acceso el grupo recursosh donde
esten los siguientes usuario:
* Pablo
* Karina
* Jose
* Ramon
* Mariangel


Ahora en el directorio Nomina solo tenga acceso el grupo nomina donde
esten los siguientes usuario:
* Pablo
* Karina
* Jose
* Joel
* Joelia
* Angelica
* Laura
* Pipo


Gracias por cualquier ayuda.



-- 
- - - - - - - - - - - - - - - - - - -
Orlando Nuñez
Minha vida eu dedico, a arte da Capoeira!


Re: Debian en Intel Core i5

2010-09-14 Thread Gonzalo L. Campos Medina
El día 14 de septiembre de 2010 09:51, gvr
german.velazq...@gmail.com escribió:
 Buen dia colegas.

 Alguien podria indicarme que imagen debo de usar para una placa con
 procesador intel Core i5 ?

 i386 ?

 Slds y gracias.


 GVR

--
Estimado Germán:

Un iCore5 tiene hasta 4 núcleos físicos, yo que tú optaría por la
versión de 64bits (también conocida como AMD64).

Saludos

-- 
Gonzalo L. Campos Medina
http://www.ubuntu.com | http://www.ubuntu-es.org | http://www.ubuntu-pe.org
L.R.U. #344192 | U.R.U. #161
Freenode #ubuntu-es #edubuntu-es #ubuntu-pe


--
To UNSUBSCRIBE, email to debian-user-spanish-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/aanlktiklr5y4lpsmyaeuzqt6x2u-jbjuonadwp7om...@mail.gmail.com



Re: Debian en Intel Core i5

2010-09-14 Thread Camaleón
El Tue, 14 Sep 2010 09:51:31 -0500, gvr escribió:

 Alguien podria indicarme que imagen debo de usar para una placa con
 procesador intel Core i5 ?
 
 i386 ?

Técnicamente puedes usar la que prefieras.

Puedes bajar la imagen de 32 bits (i386) o la de 64 bits (amd64).

Saludos,

-- 
Camaleón


-- 
To UNSUBSCRIBE, email to debian-user-spanish-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/pan.2010.09.14.15.23...@gmail.com



Re: Debian en Intel Core i5

2010-09-14 Thread jorge espada
German como estas, lo mejor seria utilizar una imagen para 64bits
(AMD64)..asi aprovechas todos los recurso del procesador i5 core, yo tengo
una dell vostro 3300 con un i5 core y tengo instalado debian testing (aka
squeeze)(http://www.debian.org/devel/debian-installer/) y anda muy muy bien
Saludos

Jorge E. Espada
Phone: +54 9 341 5692435


2010/9/14 Gonzalo L. Campos Medina gcamp...@gmail.com

 El día 14 de septiembre de 2010 09:51, gvr
 german.velazq...@gmail.com escribió:
  Buen dia colegas.
 
  Alguien podria indicarme que imagen debo de usar para una placa con
  procesador intel Core i5 ?
 
  i386 ?
 
  Slds y gracias.
 
 
  GVR

 --
 Estimado Germán:

 Un iCore5 tiene hasta 4 núcleos físicos, yo que tú optaría por la
 versión de 64bits (también conocida como AMD64).

 Saludos

 --
 Gonzalo L. Campos Medina
 http://www.ubuntu.com | http://www.ubuntu-es.org |
 http://www.ubuntu-pe.org
 L.R.U. #344192 | U.R.U. #161
 Freenode #ubuntu-es #edubuntu-es #ubuntu-pe


 --
 To UNSUBSCRIBE, email to debian-user-spanish-requ...@lists.debian.org
 with a subject of unsubscribe. Trouble? Contact
 listmas...@lists.debian.org
 Archive:
 http://lists.debian.org/aanlktiklr5y4lpsmyaeuzqt6x2u-jbjuonadwp7om...@mail.gmail.com




Re: Debian en Intel Core i5

2010-09-14 Thread Odair Augusto Trujillo Orozco
El día 14 de septiembre de 2010 10:25, jorge espada
espada.jo...@gmail.com escribió:
 German como estas, lo mejor seria utilizar una imagen para 64bits
 (AMD64)..asi aprovechas todos los recurso del procesador i5 core, yo tengo
 una dell vostro 3300 con un i5 core y tengo instalado debian testing (aka
 squeeze)(http://www.debian.org/devel/debian-installer/) y anda muy muy bien
 Saludos
 Jorge E. Espada
 Phone: +54 9 341 5692435


 2010/9/14 Gonzalo L. Campos Medina gcamp...@gmail.com

 El día 14 de septiembre de 2010 09:51, gvr
 german.velazq...@gmail.com escribió:
  Buen dia colegas.
 
  Alguien podria indicarme que imagen debo de usar para una placa con
  procesador intel Core i5 ?
 
  i386 ?
 
  Slds y gracias.
 
 
  GVR

 --
 Estimado Germán:

 Un iCore5 tiene hasta 4 núcleos físicos, yo que tú optaría por la
 versión de 64bits (también conocida como AMD64).


Yo opino: usa la de 32bits si eres nuevo osea i386, hay un par
de cositas que te van a dar lata en 64bits.

Luego que pruebes, te pasas y está.

-- 
LARGA VIDA Y PODEROSA.


--
To UNSUBSCRIBE, email to debian-user-spanish-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/aanlkti=bsrauvw4dan0m73p3jn2sjagjhiddyx-of...@mail.gmail.com



[OT] Campaña de la FSFE sobre lectores de archivos pdf - antes Re: (OT) Cuestiones sobre Okular

2010-09-14 Thread hubble
El Thu, 2 Sep 2010 11:53:48 + (UTC)
Camaleón noela...@gmail.com va dir:

 El Thu, 02 Sep 2010 09:41:47 +0200, Jorge R. escribió:
 
  Buenos días señores , aquí les dejo este pequeño hack para que disfruten
  del pdf :
  
  Se usa ghoscript para eliminar(cualquier) protección de un pdf :
  
  gs -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sOutputFile=OUTPUT.pdf -c
  .setpdfwrite -f pfi_d2010_11_tcm1-23449.pdf
  
  Espero que les guste y les sirva de utilidad,
 
 No funciona :-P
 
 Saludos,
 
 -- 
 Camaleón


Campaña de la FSFE sobre lectores de archivos pdf

La FSFE ha puesto en marcha una campaña - concurso para denunciar páginas web 
institucionales que inciten al uso de lectores pdf que sean software privativo. 
El uso del formato pdf está ampliamente extendido y es usado en muchas 
instituciones gubernamentales y en ellas muchas veces se enlaza a páginas de 
empresas privadas y se aconseja el uso de software privativo para abrir y leer 
esos ficheros .pdf La FSFE concederá un premio a la persona que informe de un 
mayor número de sitios web llevando a cabo esta práctica. Mas información en:

http://www.fsfe.org/news/2010/news-20100913-01.en.html


extraido de: http://gnuticias.es.gnu.org/1284396587


-- 
To UNSUBSCRIBE, email to debian-user-spanish-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100914192733.266398d7.hub...@telefonica.net



Re: [OT] Campaña de la FSFE sobre lectores de archivos pdf - antes Re: (OT) Cuestiones sobre Okular

2010-09-14 Thread Camaleón
El Tue, 14 Sep 2010 19:27:33 +0200, hubble escribió:

 El Thu, 2 Sep 2010 11:53:48 + (UTC) Camaleón va dir:
 
  gs -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sOutputFile=OUTPUT.pdf -c
  .setpdfwrite -f pfi_d2010_11_tcm1-23449.pdf
  
  Espero que les guste y les sirva de utilidad,
 
 No funciona :-P
 
 
 Campaña de la FSFE sobre lectores de archivos pdf
 
 La FSFE ha puesto en marcha una campaña - concurso para denunciar
 páginas web institucionales que inciten al uso de lectores pdf que sean
 software privativo. El uso del formato pdf está ampliamente extendido y
 es usado en muchas instituciones gubernamentales y en ellas muchas veces
 se enlaza a páginas de empresas privadas y se aconseja el uso de
 software privativo para abrir y leer esos ficheros .pdf La FSFE
 concederá un premio a la persona que informe de un mayor número de
 sitios web llevando a cabo esta práctica. Mas información en:
 
 http://www.fsfe.org/news/2010/news-20100913-01.en.html
 
 
 extraido de: http://gnuticias.es.gnu.org/1284396587

Bueno, el problema no tanto que las instituciones estatales enlacen a un 
programa que no sea libre sino que utilicen un formato PDF que obligue al 
usuario a disponer de ese programa exclusivamente para poder abrirlo y/
o trabajar con él.

Mientras el documento sea compatible 100% con el estándar ISO 
correspondiente, el resto es paja.

Saludos,

-- 
Camaleón


-- 
To UNSUBSCRIBE, email to debian-user-spanish-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/pan.2010.09.14.17.53...@gmail.com



Re: Informe SAMBA

2010-09-14 Thread Juan Lavieri

El 14/09/10 10:15, Orlando Nuñez escribió:

Saludos.

Hola.

Gracias por cualquier ayuda.

Por favor no uses el hilo de conversación de otro mensaje para crear un 
tema nuevo.  Eso desordena la lista, confunde y en algunos casos 
obstaculiza que respondan a tu mensaje.


Lee las reglas de la lista por favor, ayúdanos a ayudarte.

Saludos.

Juan Lavieri


--
To UNSUBSCRIBE, email to debian-user-spanish-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4c8fc2c6.4090...@gmail.com



Re: Informe SAMBA

2010-09-14 Thread Juan Lavieri

El 14/09/10 14:15, Juan Lavieri escribió:

El 14/09/10 10:15, Orlando Nuñez escribió:

Saludos.

Hola.

Gracias por cualquier ayuda.

Por favor no uses el hilo de conversación de otro mensaje para crear 
un tema nuevo.  Eso desordena la lista, confunde y en algunos casos 
obstaculiza que respondan a tu mensaje.


Lee las reglas de la lista por favor, ayúdanos a ayudarte.

Saludos.

Juan Lavieri



Orlando.

Por favor disculpa mi mensaje.  Mi Icedove se volvió loco y me mezcló todo.

Lo siento, disculpas de nuevio por favor.

Juan Lavieri


--
To UNSUBSCRIBE, email to debian-user-spanish-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4c8fc367.7020...@gmail.com



Re: Informe SAMBA

2010-09-14 Thread Santiago José López Borrazás
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

El 14/09/10 20:48, Juan Lavieri escribió:
 Por favor disculpa mi mensaje.  Mi Icedove se volvió loco y me mezcló todo.
 
 Lo siento, disculpas de nuevio por favor.
 
 Juan Lavieri

Jeje...yo tengo Thunderbird, a mí no se me desordena nada...¡y eso que
voy teniendo extensiones que no producen fallos!...

- -- 
Slds. de Santiago José López Borrazás.
-BEGIN PGP SIGNATURE-

iQIVAwUBTI/KOIFZAuZYtJmMAQrzWBAAp5wcxBAh8oKIgEmIETXsgqHQnEfCXsJN
Y4r7gm2+I8QPCbRja1MX9MBw0M8zxcdz7kesxE1KwRqYtodJG8UFKGjvYiKtEteF
7kzgmveTnzooKU0aDdKKEDW0zYUbq45GXviDKiSsgaYEno85iconhTCJOtbl3LNI
ee8erSPchshPSeLhEhd92ySpL+AfpKUXHMn+eEbzMEre0PL6untbCldwCtiS6H7Y
v0ZN645J9eB9CXITzcySClW9CycHW6Db2KXHLew2waMQsOFOajqlgoo76t3Af3e4
S/NPOWUuT1teWON1oFq99EuuQbYl+5NgxZlp1dJJPomedO5A6ancxdvCkxjhdoIo
ryzejricGkW2E3A4HuyR1FmUfx4/zofPxxSyGmVxMe7WM7em+edmIrcFgWgGj39u
yULK51gpIDhp5xMKJZ228O5uqql8aBPbcUE1zNM38fiU8P3Dd0M9FjDt92OxyNlU
vpk0QxmVZTpASH7ixm1a3Yj6KsIF+FWXWOR1iDFfaxWUrSciVdLALikhoRqOLSDU
DHKwrA7KOxvJADrhCILDwrh5smHCvGWbFePAkkMOP65NIu0aToDut0AWYePcukdd
+9u5IqhKo+eYO9aTBV4tDRA+ytYo/TyJ/vd5yxp/+ErKocwJjvNrrHMuwky/9RJn
IwiMWuvL3Gc=
=fzHu
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-user-spanish-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4c8fca39.9050...@sjlopezb.yahoo.es



Re: OT-Iceweasel

2010-09-14 Thread Agustin E . Pérez Villavicencio
mi hijo. me hace falta que me llames o vengas por aca Henry el esposo de 
suny tu prima.










- Original Message - 
From: Liuber Hernández Leyva liu...@fts.vcl.sld.cu

To: Debian-User debian-user-spanish@lists.debian.org
Sent: Monday, September 13, 2010 5:55 AM
Subject: OT-Iceweasel


Hola lista,

Hay alguna forma de que este navegador me capture todas las imagenes que se
visualicen en el navegador, y las envíe para la cache,
hay un libro en google, que me interesa, pero no encuentro forma de 
copiarlo,


necesito su ayuda,
disculpe por su tiempo.
--
sld2.
liuber's


--

Este mensaje le ha llegado mediante el servicio de correo electronico que 
ofrece Infomed para respaldar el cumplimiento de las misiones del Sistema 
Nacional de Salud. La persona que envia este correo asume el compromiso de 
usar el servicio a tales fines y cumplir con las regulaciones establecidas


Infomed: http://www.sld.cu/


--
To UNSUBSCRIBE, email to debian-user-spanish-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact 
listmas...@lists.debian.org

Archive: http://lists.debian.org/201009131155.55228.liu...@fts.vcl.sld.cu


--
To UNSUBSCRIBE, email to debian-user-spanish-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/000b01cb544e$be6d5690$0109a...@sc.vc.rimed.cu



Re: [OT?] Informe SAMBA

2010-09-14 Thread Walter O. Dari

Hola Orlando...

El 14/09/10 11:45, Orlando Nuñez escribió:

Saludos.


Me gustaria saber si samba a traves de swat o otra herramienta pudiera
mostrarme una lista que me muestre todos los grupos creados en el
servidor y a su vez que usuarios esten incluidos en cada grupo, por ejemplo:


Pero eso -según creo- más que una cuestión de Samba es del propio S.O.
Si es así, bastaría con pegarle un vistazo a /etc/groups y luego ver los 
grupos asociados a cada directorio con un ls -l...

o interpreté muy mal tu pregunta ?



1. Administracion
   1.1. Contabilidad
   1.2. RRHH
   1.3. Nomina

La carpeta Administracion tenga acceso el grupo admin y esten los
siguientes usuarios:
* Pedro
* Maria
* Pablo
* Karina
* Jose
* Ramon
* Mariangela
* Joel
* Joelia
* Angelica
* Laura
* Pipo

Ahora en el directorio Contabilidad solo tenga acceso el grupo
contab donde esten los siguientes usuario:
* Pedro
* Maria
* Pablo

Ahora en el directorio RRHH solo tenga acceso el grupo recursosh
donde esten los siguientes usuario:
* Pablo
* Karina
* Jose
* Ramon
* Mariangel


Ahora en el directorio Nomina solo tenga acceso el grupo nomina
donde esten los siguientes usuario:
* Pablo
* Karina
* Jose
* Joel
* Joelia
* Angelica
* Laura
* Pipo


Gracias por cualquier ayuda.
--
- - - - - - - - - - - - - - - - - - -
Orlando Nuñez
Minha vida eu dedico, a arte da Capoeira!


Saludos,
 .-.   Walter
/ \ _ / \   __
 (\/  /  \   |_/oo)http://swcomputacion.com/
  \--~ Usuario Linux 425808
  // ||   || \\http://counter.li.org/


--
To UNSUBSCRIBE, email to debian-user-spanish-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4c9017dd.2020...@gmail.com



Re: OT-Iceweasel

2010-09-14 Thread Liuber Hernández Leyva
On Monday 13 September 2010 18:26:32 Camaleón wrote:
 El Mon, 13 Sep 2010 11:55:55 +0200, Liuber Hernández Leyva escribió:
  Hay alguna forma de que este navegador me capture todas las imagenes que
  se visualicen en el navegador, y las envíe para la cache, hay un libro
  en google, que me interesa, pero no encuentro forma de copiarlo,

 Revisa alguna de estas soluciones:

 5 Tools to Download any Book from Google and save it as PDF
 http://www.aboutonlinetips.com/google-books-downloader/

 Hum... parece que todas son para IE, vaya. La de greasemonkey es la
 única que podría funcionar :-?

 Saludos,

 --
 Camaleón

ok, gracias amigo, 

suerte, 
-- 
sld2.
liuber's


--

Este mensaje le ha llegado mediante el servicio de correo electronico que 
ofrece Infomed para respaldar el cumplimiento de las misiones del Sistema 
Nacional de Salud. La persona que envia este correo asume el compromiso de usar 
el servicio a tales fines y cumplir con las regulaciones establecidas

Infomed: http://www.sld.cu/


--
To UNSUBSCRIBE, email to debian-user-spanish-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/201009140844.37426.liu...@fts.vcl.sld.cu



OT - Forum

2010-09-14 Thread Helgi Örn
Hej!

Lite off-topic kanske, men det handlar åtminstone om arbete i Debian/Ubuntu :)

Jag söker ett bra (bäst) Svenskt forum för PHP och MySQL utveckling,
någon som har tips om detta?

Mvh,
Helgi Örn


--
To UNSUBSCRIBE, email to debian-user-swedish-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/aanlktikrm4yvwj1tk_imqcfcgmdjgg_wqzfhvhxbe...@mail.gmail.com



Samsung SH-223C e speed-magic

2010-09-14 Thread Alexandre Pereira Bühler

Bom dia,
Tenho uma gravador samsung com tecnologia speed-magic.
Isto significa que no Windows posso alternar entre velocidades rápida e 
baixa de gravação com o aplicativo da samsung.

Por padrão a gravador sempre após um reboot fica em velocidade baixa.
No gnu/linux não encontrei nenhum aplicativo que pudesse alterar esta 
velocidade.

Logo acabo com gravações a 1x no máximo 8x.
As mídias e a gravadora suportam mais que isso.
Alguém conhece algum meio de aumentar esta velocidade de gravação?
Obrigado

--
Alexandre Pereira Bühler
Técnico Eletroeletrônica - Senai - MG
Linux User: 397.546
Colunista: www.delphisophp.com
Owner: http://br.groups.yahoo.com/group/freepascal/
Liberdade é essencial. Use GNU/Linux.
Legalize os softwares de sua empresa

Simão   Bühler Ltda (Infobrindes)
Instalação, manutenção e venda de servidores GNU/Linux.
http://www.simaoebuhler.com.br
Hardware acesse, veja e tenha produtos com qualidade, garantia e nota fiscal.
http://www.simaoebuhler.com.br/loja
alexan...@simaoebuhler.com.br
Telefone: (41) 3538-5428

Infobrindes (Simão   Bühler Ltda)
Brindes e material promocional.
http://www.infobrindes.com.br
alexan...@infobrindes.com.br
Telefone: (41) 3532-5428


--
To UNSUBSCRIBE, email to debian-user-portuguese-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4c8f170a.9020...@simaoebuhler.com.br



Grupo personalizado no SAMBA

2010-09-14 Thread Rodolfo Barbosa
Olá,

Eu criei um grupo chamado RH no meu servidor samba para
facilitar ao gerenciamento de permissões em algumas pastas
das máquinas Windows. Quando eu dou permissão de escrita ao
grupo em questão em alguma pasta do Windows os usuários
continuam sem conseguir gravar na mesma. Acho estranho por
que se eu der a mesma permissão de escrita ao grupo Domain
Users os usuários conseguem gravar. O que pode ser?


Obrigado
--
Rodolfo Barbosa
Lunar Consultoria
barbosa.rodo...@lunarconsultoria.com.br
CEL: +55 (35) 9132-0764





--
To UNSUBSCRIBE, email to debian-user-portuguese-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/000601cb5419$4116cd00$c34467...@rodolfo@lunarconsultoria.com.br



Re: Appliance do Squid

2010-09-14 Thread Adauto Serpa
Achei muito interessante o Kerio Control parece que roda até um squid por baixo,
mas ele faz mais, é servidor de vpn, firewall, http 
É bem legal mas acho que ele só faz autenticação em AD e é pago. Seria muito bom
ter um aplicativo open-souce parecido no linux.

att.

Adauto Serpa

Em 9 de setembro de 2010 10:05,  paulo...@contatogs.com.br escreveu:

 - Luiz Felipe l...@cpamn.embrapa.br escreveu:

 Oi,

 alguém sabe um programa de proxy que use o squid por baixo e já tenha

 todo o esquema de fazer autenticação via LDAP?

 Existem vários exemplos assim com e-mail, mas com o squid eu procurei
 e
 não achei.

 Eu queria algo do tipo, informar o servidor ldap e login e já estar
 autenticando.

 Se alguem souber, agradeço.

 Att,
 Luiz Felipe.

 ---
 Bom dia Luiz

 achei um link para vc80)



 achei para vc8)
 http://wiki.squid-cache.org/ConfigExamples/Authenticate/Ldap

 --
 Paulo Ricardo Bruck - consultor
 tel 011 3596-4881 011 3596-4882 cel 011 9235-4327
 Contato Global Solutions
 http://www.contatogs.com.br


 --
 To UNSUBSCRIBE, email to debian-user-portuguese-requ...@lists.debian.org
 with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
 Archive: 
 http://lists.debian.org/24790853.371284037558689.javamail.r...@mercurio




--
To UNSUBSCRIBE, email to debian-user-portuguese-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/aanlkti=hdtu6yuaj6m=odwhon=p11wgxn+-ju7trf...@mail.gmail.com



Instalação do Debian Squeeze

2010-09-14 Thread Bruno

Bom dia,

Baixei ontem a ISO do Debian i386 (DVD 1), gravei e instalei. Fiquei 
surpreso ao perceber, no meio da instalação, que ele só me possibilitava 
instalar o system default utilities.


Depois de bootar com o novo sistema, percebi que fora instalado apenas o 
core (exatamente como o netinstall). E, mais estranho ainda, o kernel 
retornado por uname -a é 2.6.32-5-AMD64!!!


Conferi a mídia de instalação, realmente baixei o CD i386, o kernel 
usado durante a instalação é i386, mas o sistema instalado é AMD64 (por 
isso que não mostrou os outros módulos de instalação, como desktop 
defaults, laptop, SSH server, etc.


Já instalei o debian dezenas de vezes, não me considero um iniciante, 
mas receio que tenha esquecido algum detalhe. Vocês tem alguma sugestão 
do que pode estar acontecendo?


Obs.: Já tentei reinstalar o sistema umas 4 vezes, de maneiras 
diferentes (com a mesma mídia), e o resultado é sempre o mesmo: kernel 
amd64.


Obrigado!


--
To UNSUBSCRIBE, email to debian-user-portuguese-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4c90247c.8020...@gmail.com



Re: Instalação do Debian Squeeze

2010-09-14 Thread Allan Carvalho
Bruno,

Você fez o checksum da imagem quando você baixou?

Já tive problemas com imagens baixadas, e só detectei que o problema
era a ISO depois que eu verifiquei o checksum.

Atenciosamente,
Allan Carvalho

Em 14 de setembro de 2010 22:42, Bruno bruno.marques...@gmail.com escreveu:
 Bom dia,

 Baixei ontem a ISO do Debian i386 (DVD 1), gravei e instalei. Fiquei
 surpreso ao perceber, no meio da instalação, que ele só me possibilitava
 instalar o system default utilities.

 Depois de bootar com o novo sistema, percebi que fora instalado apenas o
 core (exatamente como o netinstall). E, mais estranho ainda, o kernel
 retornado por uname -a é 2.6.32-5-AMD64!!!

 Conferi a mídia de instalação, realmente baixei o CD i386, o kernel usado
 durante a instalação é i386, mas o sistema instalado é AMD64 (por isso que
 não mostrou os outros módulos de instalação, como desktop defaults,
 laptop, SSH server, etc.

 Já instalei o debian dezenas de vezes, não me considero um iniciante, mas
 receio que tenha esquecido algum detalhe. Vocês tem alguma sugestão do que
 pode estar acontecendo?

 Obs.: Já tentei reinstalar o sistema umas 4 vezes, de maneiras diferentes
 (com a mesma mídia), e o resultado é sempre o mesmo: kernel amd64.

 Obrigado!


 --
 To UNSUBSCRIBE, email to debian-user-portuguese-requ...@lists.debian.org
 with a subject of unsubscribe. Trouble? Contact
 listmas...@lists.debian.org
 Archive: http://lists.debian.org/4c90247c.8020...@gmail.com




--
To UNSUBSCRIBE, email to debian-user-portuguese-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/aanlkti=+tigbk2ypmo2mqo=ruxdrsrc14fekhe-mw...@mail.gmail.com



Re: exim4 problem delivering locally

2010-09-14 Thread Mumia W
 You should be able to deal with that situation with the exim4
 mini-wizard, try 'dpkg-reconfigure exim4-config'. Or you can edit
 the file produced by that program, /etc/exim4/update-exim4.conf.conf
 (not a mistype) and /etc/mailname and run update-exim4.conf as
 suggested in the configuration file. This wizard will have run at
 the installation of exim4, but it can be re-run as required.
 [...]

Thanks Joe. Editing /etc/mailname got me close enough to my goal that
I won't deal with exim4-config.



-- 


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/12563212.1284446519914.javamail.r...@mswamui-cedar.atl.sa.earthlink.net



get file from other repo--how?

2010-09-14 Thread Doug
Using Dolphin to see what's available, but don't find cfdisk, which has 
been recommended by man fdisk.  How do I find this from some repo and 
install it?  Or is it possible that the GUI disk utility found on the 
system actually _is_ cfdisk?  (I don't know what it looks like, if it 
has a GUI or is just a CLI routine.)  Please advise.  thanx--doug



--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org

Archive: http://lists.debian.org/4c8f2755.7040...@optonline.net



Sync calendar Nokia E66 via USB

2010-09-14 Thread Bernd Kloss
Squeeze
KDE 4.4.5
Nokia E66


Hello,


 how to sync the calendar of Nokia E66 with Kalendar/PIM via USB?



Thanks
Bernd


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/201009140942.14673.b_kl...@web.de



Re: Debian VServer in Germany

2010-09-14 Thread Johannes Graumann
David Jardine wrote:
 On Mon, Sep 13, 2010 at 10:44:36PM +0200, Johannes Graumann wrote:
 Hi,
 
 I'm looking for a hosting outfit in Germany that will provide a virtual
 server running debian with =75GB HD space, full root access and backup
 management. I'm with strato.de right now and happy, BUT they will NOT
 allow me to set an MX-Record for the server-associated domain directly.
 I'm looking for a provider that allows that while providing a backup
 mailserver, so no mail gets lost if my own vserver goes down for a bit
 ...
 
 Any ideas,
 
 I don't know about all your particular requirements, but 1und1.de
 provides a wide range and in my (small-scale) experience is very
 reliable.

Thanks! I have had very spotty customer service experiences with 1und1 in 
the past - that wasn't a problem for you?

Thanks, Joh


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/i6nad7$uj...@dough.gmane.org



Re: new squeeze

2010-09-14 Thread Klistvud

Dne, 14. 09. 2010 01:53:07 je Jesús M. Navarro napisal(a):
 install. With Ubuntu's installer, aimed at a less technical crowd,  
the

 default is to do a side-by-side install.

Seems much saner (and proper) to me.


+1

--
Regards,

Klistvud
Certifiable Loonix User #481801
http://bufferoverflow.tiddlyspot.com

Please reply to the list, not to me.


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/1284453716.560...@compax



Re: get file from other repo--how?

2010-09-14 Thread Klistvud

Dne, 14. 09. 2010 09:42:13 je Doug napisal(a):
Using Dolphin to see what's available, but don't find cfdisk, which  
has been recommended by man fdisk.  How do I find this from some repo  
and install it?  Or is it possible that the GUI disk utility found on  
the system actually _is_ cfdisk?  (I don't know what it looks like,  
if it has a GUI or is just a CLI routine.)  Please advise.   
thanx--doug


You fire synaptic or aptitude or any package manager and search for  
cfdisk; the package manager will find a way of telling you whether it's  
already installed or not -- and how to install it if it's not.


--
Regards,

Klistvud
Certifiable Loonix User #481801
http://bufferoverflow.tiddlyspot.com

Please reply to the list, not to me.


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/1284453956.560...@compax



Re: Occasional random cursor movement while typing

2010-09-14 Thread Nicolas BERCHER

Le 10/09/2010 18:19, Elmer E. Dow a écrit :
When typing on my laptop, occasionally my cursor will skip back (up) a 
few lines and I'll be entering text in the midst of text previously 
entered. Sometimes I can't reproduce it, but this morning when typing 
the word we're the cursor would jump up about three lines when I hit 
the apostrophe (single quote  ' ) key. I deleted the text I 
accidentally entered because of the problem, then retyped the word and 
the cursor again jumped back to that same spot. It repeated three or 
for times, then began to act normally.


It happened again typing this e-mail message. I was typing the word 
typing and the cursor jumped up a couple of lines and started 
entering text in the midst of the word text.


What's happening here? My sleeve isn't touching the touchpad nor did I 
bump the Trackpoint nor the mouse. I'm not accidentally hitting the 
wrong key. The embedded 10-key pad isn't activated and the keys in 
question aren't on that part of the keyboard anyway. The machine in 
question is an IBM R40 laptop running Lenny. I have a triple-boot 
system: two versions of Debian (I'm in Lenny now) and WinXP. I don't 
r(it just jumped down the page two lines and to the left)ecall it 
happening in XP, but I only use XP a few times per year. I think that 
it happens in the other version of Debian (I think I've got Sarge 
there). I'm assuming that this is not a keyboard issue. If it were, I 
would think that the key would either enter properly or not, rather 
than enter an improper character. Or is it a CPU going nuts? Is it 
(just did it again when I typed the t in the previous word) a 
problem with X or a the driver for the keyboard, mouse, etc.? This has 
been happening for months. It's weird and frustrating. How can I 
diagnose this?



Elmer E. Dow



This sounds like an hardware issue.
Did you try (if possible) to disable your touchpad? If this is not 
possible, try an external USB/PS2 keayboard and type we're ;-)
My MSI Wind behaves the same because of the touchpad: it becomes really 
sensible as it gets warmer, after a tens of minutes. When disabled all 
is ok.


Nicolas


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4c8f4597.6090...@yahoo.fr



Re: Reg persistence usb portability

2010-09-14 Thread Camaleón
On Tue, 14 Sep 2010 10:52:41 +0530, Kousik Maiti wrote:

 I created one persistence usb through http://www.linuxliveusb.com/ .
 Then add some packges into that.

By packages you mean programs or driver/modules?

 Can the created persistence usb portable through different hardware? If
 no then what modifications required to make it portable through
 different hardware?

I think you can have some problems with drivers to get all detected 
devices working properly (mostly peripherals) in the LiveUSB (not in 
virtual machine mode), but as long as you can get into Internet and 
downlowad the required drivers (or installing them locally), you're done.

Greetings,

-- 
Camaleón


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/pan.2010.09.14.10.13...@gmail.com



Re: Reg persistence usb portability

2010-09-14 Thread Kousik Maiti
On Tue, Sep 14, 2010 at 3:43 PM, Camaleón noela...@gmail.com wrote:

 On Tue, 14 Sep 2010 10:52:41 +0530, Kousik Maiti wrote:

  I created one persistence usb through http://www.linuxliveusb.com/ .
  Then add some packges into that.

 By packages you mean programs or driver/modules?


Packages means programs. From the manual of the linuxusblive I got the info
that driver changes would not saved.


  Can the created persistence usb portable through different hardware? If
  no then what modifications required to make it portable through
  different hardware?

 I think you can have some problems with drivers to get all detected
 devices working properly (mostly peripherals) in the LiveUSB (not in
 virtual machine mode), but as long as you can get into Internet and
 downlowad the required drivers (or installing them locally), you're done.

 My problem is in some system its working properly. but in other system it
unable to show gdm. I can access virtual terminals(means ALT+CTL+Fn keys)
only.


 Greetings,

 --
 Camaleón


 --
 To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
 with a subject of unsubscribe. Trouble? Contact
 listmas...@lists.debian.org
 Archive: http://lists.debian.org/pan.2010.09.14.10.13...@gmail.com




-- 
Wishing you the very best of everything, always!!!
Registered Linux User #474025
Registered Ubuntu User # 28654


Re: Reg persistence usb portability

2010-09-14 Thread Camaleón
On Tue, 14 Sep 2010 16:15:14 +0530, Kousik Maiti wrote:

 On Tue, Sep 14, 2010 at 3:43 PM, Camaleón wrote:
 
 I think you can have some problems with drivers to get all detected
 devices working properly (mostly peripherals) in the LiveUSB (not in
 virtual machine mode), but as long as you can get into Internet and
 downlowad the required drivers (or installing them locally), you're
 done.

 My problem is in some system its working properly. but in other system
 it
 unable to show gdm. I can access virtual terminals(means ALT+CTL+Fn
 keys) only.

You'll have to get further info. It can be a problem for setting the 
monitor/vga correctly.

Any error on logs (/var/log/Xorg.0.log or ~/.xsession-errors?

Greetings,

-- 
Camaleón


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/pan.2010.09.14.10.52...@gmail.com



Re: Debian VServer in Germany

2010-09-14 Thread David Jardine
On Tue, Sep 14, 2010 at 10:05:59AM +0200, Johannes Graumann wrote:
 
 Thanks! I have had very spotty customer service experiences with 1und1 in 
 the past - that wasn't a problem for you?
 

My web hosting contract with them is a pretty minimal one.  All I can 
say is that I've had no trouble over the past few years.  If you've 
already tried them at a higher service level, your experience is worth
more than mine.

Cheers,
David


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100914110620.gb1...@gennes.augarten



Re: Reg persistence usb portability

2010-09-14 Thread Camaleón
On Tue, 14 Sep 2010 16:51:44 +0530, Kousik Maiti wrote:

 On Tue, Sep 14, 2010 at 4:22 PM, Camaleón wrote:
 
 You'll have to get further info. It can be a problem for setting the
 monitor/vga correctly.

 Any error on logs (/var/log/Xorg.0.log or ~/.xsession-errors?

 I can't find errors in Xorg log. Some warning is there in
 xsession-errors
 file.
 
 Both files are atteched.

Ugh... next time upload the files to an online service (pastebin or such) 
instead attaching them to the list ;-)

Well, as per your X log file, try to get into init 5 mode by typing 
startx when you are stuck at command line to see what error message you 
get.

And regarding .xession-errors log file... try t disable any 3D effects 
in desktop. It seems there are some entries related to Compiz errors and 
XGL problems.

Greetings,

-- 
Camaleón


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/pan.2010.09.14.12.07...@gmail.com



Re: get file from other repo--how?

2010-09-14 Thread Cousin Stanley

 Using Dolphin to see what's available, but don't find cfdisk, 
 

  From a terminal command-line you might try 

whatis cfdisk

whereis cfdisk


-- 
Stanley C. Kitching
Human Being
Phoenix, Arizona


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/i6ns8d$fe...@news.eternal-september.org



Re: Sync calendar Nokia E66 via USB

2010-09-14 Thread Camaleón
On Tue, 14 Sep 2010 09:42:14 +0200, Bernd Kloss wrote:

 Squeeze
 KDE 4.4.5
 Nokia E66
 
 
 Hello,
 
 
  how to sync the calendar of Nokia E66 with Kalendar/PIM via USB?

I think you'll get better results using bluetooth and opensync modules.

http://en.wikipedia.org/wiki/OpenSync_(software)#Nokia

If that's not possible or if it fails, maybe using a third-party 
application (like Google Calendar) could be an option :-?

Greetings,

-- 
Camaleón


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/pan.2010.09.14.14.25...@gmail.com



Re: Occasional random cursor movement while typing

2010-09-14 Thread Elmer E. Dow




Bob Proulx wrote:

  Elmer E. Dow wrote:
  
  
When typing on my laptop, occasionally my cursor will skip back (up)
a few lines and I'll be entering text in the midst of text
...
What's happening here? My sleeve isn't touching the touchpad nor did
I bump the Trackpoint nor the mouse. I'm not accidentally hitting

  
  
I am confident it is the touchpad.  I have the same problem.
Disabling the touchpad will avoid the problem.  Personally I did not
want to unconditionally disable the touchpad.  I would use it more if
it were not for that annoying behavior.

The syndaemon gives me great relief and results.

  $ apt-cache show xserver-xorg-input-synaptics
* It also provides a daemon to disable touchpad while typing at
  the keyboard and thus avoid unwanted mouse movements (see
  syndaemon(1)).

It detects keyboard activity and for a configurable time disables the
touchpad.  When idle is detected it enables the touchpad.

I launch it like this (in my ~/.xsession file, but you would need more
than this there).

  syndaemon -i 20 -K -p $HOME/var/run/syndaemon.pid -d

Bob
  

I discovered xserver-xorg-input-synaptics was already installed on my
laptop, so I tried:

$ syndaemon -i 1.0

and got the message . . .

Can't access shared memory area. SHMConfig disabled?
$ 

A little research resulted in my finding instructions to add the
following to the /etc/X11/xorg.conf file in order to enable SHMConfig:
Section "InputClass"
Identifier "enable synaptics SHMConfig"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
Driver "synaptics"
Option "SHMConfig" "on"
EndSection
In typing the above, I discovered what's happening!

The cursor jumped again as I was typing the "t" in "little." I tried to
replicate what I was doing and discovered that it's not the touchpad
that I'm touching but the left clicker key situated in front of the
touchpad. The return spring under that key has become weak and mushy
over seven or eight years of almost daily service. As I reach to strike
the "r" and "t" keys I sometimes brush the clicker key with the bottom
of the lower thumb knuckle of the left hand. When that happens, the
cursor jumps to wherever the mouse pointer happens to be and enters
the character there. 

I need to be careful to keep my left hand farther above the keys while
typing. It would also be helpful to replace the spring under the left
clicker key. (This diagnosis also explains why the problem has grown
worse with age.)

Thanks to all for your patience and advice.


Elmer E. Dow




-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4c8f86e3.7070...@att.net



Re: Straw poll: What browser do you use?

2010-09-14 Thread Bret Busby

On Mon, 13 Sep 2010, Kelly Clowers wrote:



On Mon, Sep 13, 2010 at 04:32, Merciadri Luca
luca.mercia...@student.ulg.ac.be wrote:

Klistvud wrote:

Dne, 13. 09. 2010 10:33:42 je Merciadri Luca napisal(a):

You mean, ctrl-q doesn't work?


It works! Nice! I did not know that there was this command!


In theory, all Linux gui apps should respect ctrl-q, and most do.




What is CTRL-Q , and, would it work with the iceweasle and iceape that 
are from Debian etch (4?) ?


Because the Debian people (I believe) omitted iceape and iceweasel from 
Debian 5, I had to search, and installed the previous release packages.


--
Bret Busby
Armadale
West Australia
..

So once you do know what the question actually is,
 you'll know what the answer means.
- Deep Thought,
  Chapter 28 of Book 1 of
  The Hitchhiker's Guide to the Galaxy:
  A Trilogy In Four Parts,
  written by Douglas Adams,
  published by Pan Books, 1992




--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org

Archive: 
http://lists.debian.org/alpine.deb.1.10.1009142345520.24...@bretnewworkstation.busby.net



Re: trinity

2010-09-14 Thread John A. Sullivan III
On Mon, 2010-09-13 at 17:26 +0200, Nicolas BERCHER wrote:
 Hi everybody,
 
 I wish to give a try to Trinity (KDE 3.5 fork) on Squeeze.
 But as I do
  aptitude install desktop-base-trinity kde-trinity
 it asks me to replace desktop-base  sudo packages with 
 desktop-base-trinity  sudo-trinity.
 
 Have you guy tested it? Is it safe to replace such sensible packages 
 like the sudo one?
 And does anybody know why they forked such packages since they look 
 very low level for a Debian system?
 
 Thanks a lot,
 
 Nicolas.
 
 PS: I have many issues using KDE 4.4.5 including:
   - konsole slowness (improved today but still slower than konsole 
 3.5.x) and mouse cursor bug,
   - missing simple desktop features like alt+f5 (show window list) that 
 seems only to be available when desktop effects are on,
   - kmix/pulseaudio miss understanding regarding sound card channels,
   - missing applets,
   - etc.
 
 
I've been very happy with it and its stability but I am using it on
Lenny and inside a VServer guest so my environment is very different
from yours - John


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/1284479838.18976.3.ca...@denise.theartistscloset.com



Re: Straw poll: What browser do you use?

2010-09-14 Thread Bret Busby

On Mon, 13 Sep 2010, Kelly Clowers wrote:





You say Moz (?) but, if you refer to Seamonkey, that is diifferent (from
what I understand) to iceape, which has, from what I understand, some of the
Mozilla stuff that makes Mozilla software what it is, removed.


The only thing that should be removed is the name.



I may be wrong in my understanding, but I believe that some of the 
functionality was removed, in the modifications of the Mozilla products 
to create the Debian products iceape and iceweasel, as the Mozilla 
products apparently did not comply with the Debian philosophy and thence 
Mozilla products in their Mozilla forms were no longer available via the 
Debian repositories.


My experience of trying to install and update the binaries or whatever, 
from the Mozilla web site, rather than installing .deb packages using 
the Debian package management system, was that it was like trying to do 
brain surgery with a sledgehammer; completely messy, and leading to a 
useless mess.


One of the factors that led to my conversion to Debian, several years 
ago, was the ease of locating and installing packages, using the Debian 
package management system. I am not sure, but I believe that it was 
somewhere around Debian 3.0, that I was converted, by a local Debian or 
otherwise Linux guru.


--
Bret Busby
Armadale
West Australia
..

So once you do know what the question actually is,
 you'll know what the answer means.
- Deep Thought,
  Chapter 28 of Book 1 of
  The Hitchhiker's Guide to the Galaxy:
  A Trilogy In Four Parts,
  written by Douglas Adams,
  published by Pan Books, 1992




--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org

Archive: 
http://lists.debian.org/alpine.deb.1.10.1009142349440.24...@bretnewworkstation.busby.net



Re: Straw poll: What browser do you use?

2010-09-14 Thread Lisi
On Tuesday 14 September 2010 16:48:46 Bret Busby wrote:
 Because the Debian people (I believe) omitted iceape and iceweasel from
 Debian 5, I had to search, and installed the previous release packages.

Iceweasel is there:

l...@tux:~$ cat /etc/debian_version
5.0.6
l...@tux:~$ aptitude show iceweasel
Package: iceweasel
State: installed
[snip]

But Iceape does indeed seem not be there in its entirety, only the development 
files:

l...@tux:~$ aptitude search iceape
p   iceape-dev  - Development files for the Iceape 
Internet Suite
p   iceape-dev-bin  - Development files for the Iceape 
Internet Suite
l...@tux:~$

Lisi


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/201009141705.12025.lisi.re...@gmail.com



anacron mail encoding

2010-09-14 Thread Malte Forkel
Hi,

I'm using anacron for some tasks on a machine running Lenny. Error
output from those jobs send by email looks strange in Thunderbird.

Mails send by cron supposedly respect the locale and include a content
type header, see http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=405335
(cron does not send mail with good encoding) and
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=410057 (cron should
send email with UTF-8 charset as it's default in Etch).

But mail from anacron seems to be lacking the proper header (something
like Content/type: text/html; charset=utf-8) and therefor looks strange
in Thunderbird until I force it to use the UTF-8 encoding?

Should my analysis be correct, how can I get anacron to add the proper
header?

Thanks, Malte


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/i6o5r9$8n...@dough.gmane.org



Re: ext3 file system

2010-09-14 Thread Frank
On Mon, 13 Sep 2010 15:45:52 -0400
Frank debianl...@videotron.ca wrote:

 On Mon, 13 Sep 2010 14:39:17 -0400 (EDT)
 Stephen Powell zlinux...@wowway.com wrote:
 
  On Mon, 13 Sep 2010 13:51:12 -0400 (EDT), Frank wrote:
   One thing I noticed...in Ubuntu's fstab, sda2 is referred to as
   /dev/sda2 while the Ubuntu partition is referenced by the UUID..I
   wonder if this is a problem ?
 
  It shouldn't be a problem, as long as the UUID is correct.  If the partition
  has been re-formatted since /etc/fstab was created, the
  UUID might have changed.  Verify that the UUIDs match.  
 
   I have already done that.
 
  be confusing udev/blkid.  But the first thing to try is manually
  umounting the file system in Ubuntu before shutdown.
 
 

Further to this problem (I'm getting tired of re-booting)...I have
tried copying mail in SYlpheed from Ubuntu (sda3) to Squeeze (sda2)
several times..with and without manually unmounting sda2 before
rebooting. If I unmount sda2 before rebooting after moving mail ,
there is no problem. Squeeze reboots without finding fs errors. If I
don't manually unmount sda2 orphaned nodes are found when squeeze
reboots. Yet when Ubuntu reboots, one of the messages is local file
systems unmounted !! It seems Ubuntu is unmounting sda3, but not
sda2. I guess this now belongs on the Ubuntu list ??


Thanks





-- 
-- Frank --


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100914131735.7bd10429.debianl...@videotron.ca



Re: How can I disable signature check for a Debian CD?

2010-09-14 Thread Brian Ryans
Quoting Kumar Appaiah on 2010-09-10 13:18:06, in Message-Id
20100910181805.gi13...@146653177.ece.utexas.edu

 If someone else can point our the right way, please do.

,[ /etc/apt/apt.conf.d/00trustcdrom ]-
| APT::Authentication::TrustCDROM true;
`

-- 
 _  Brian Ryans 8B2A 54C4 E275 8CFD 8A7D 5D0B 0AD0 B014 C112 13D0 .
( ) ICQ 43190205 | Mail/Jabber/Yahoo/MSN: brianlry...@gmail.com  ..:
 X  ASCII Ribbon Campaign Against HTML mail and v-cards: asciiribbon.org
/ \ /* Witty quotes of 68 chars or less here. Email me for more info. */


signature.asc
Description: Digital signature


Re: ext3 file system

2010-09-14 Thread Stephen Powell
On Tue, 14 Sep 2010 13:17:35 -0400 (EDT), Frank wrote:
 
 Further to this problem (I'm getting tired of re-booting)...I have
 tried copying mail in SYlpheed from Ubuntu (sda3) to Squeeze (sda2)
 several times..with and without manually unmounting sda2 before
 rebooting.  If I unmount sda2 before rebooting after moving mail ,
 there is no problem.  Squeeze reboots without finding fs errors.  If I
 don't manually unmount sda2 orphaned nodes are found when squeeze
 reboots.  Yet when Ubuntu reboots, one of the messages is local file
 systems unmounted!!  It seems Ubuntu is unmounting sda3, but not
 sda2. I guess this now belongs on the Ubuntu list??

Absolutely.  This proves that the problem lies on the Ubuntu side.
If /dev/sda2 is present in /etc/fstab on your Ubuntu system, either
directly or indirectly via a UUID, and Ubuntu mounts that file system
automatically on boot, then it should umount it automatically on
shutdown.  That is obviously not happening.  The problem should be
pursued on the Ubuntu forums.

-- 
  .''`. Stephen Powell
 : :'  :
 `. `'`
   `-


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/211512054.107727.1284485770245.javamail.r...@md01.wow.synacor.com



Re: single click?

2010-09-14 Thread Alois Mahdal

Hi,

On Sun, 12 Sep 2010 07:58:29 +0200, Doug dmcgarr...@optonline.net wrote:

[...]

Wouldn't you think that Linux would automatically default to that?



No, I wouldn't, and I believe it's better that way.

At least  for accessibility  reasons,  it's better to keep the more  
sturdy,
less error-prone alternative default.  It's very easy to switch to the  
other
one,  but for some people  (or in some situations),  switching the other  
way

might be somewhere on a scale from hard to impossible.


Thx,
Al.

--
Alois Mahdal using Opera's revolutionary e-mail client:  
http://www.opera.com/mail/



--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org

Archive: http://lists.debian.org/op.vi1dp4o253t...@aloism.cz.avg.com



make-kpkg (from kernel-package) does not build xen patched kernel

2010-09-14 Thread Mike Viau




Hello list,

I cannot get make-kpkg to build a Xenlinux type kernel into a Debian kernel 
binary on my Debian Squeeze x86_64 system.

I am using GNU/Linux kernel sources tree (2.6.34.4) with Xen patches for this 
custom kernel. I am trying to use the make-kpkg command to build a working 
linux-image-2.6.34.4-xen-amd64 package for my system.

The sources are vanilla (available from kernel.org) with patches available 
from: http://gentoo-xen-kernel.googlecode.com/files/xen-patches-2.6.34-4.tar.bz2

These sources compile a Xenlinux kernel and not a pv_ops one so the bug report 
for XEN and the kernel-package is not applicable 
(http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=574957)

It seems that when the kernel_image target is used, a System.map-2.6.34.4-xen 
can not be generated, and therefore a FATAL error causes the make-kpkg process 
to fail! 

A System.map-2.6.34.4-xen can be generated when the kernel is built and 
packaged into a Debian binary with make deb-pkg.

Can anyone else reproduce this problem?


uname -a
Linux BUBBLE 2.6.34.4-r61-xen #1 SMP Tue Sep 14 10:39:11 EDT 2010 x86_64 
GNU/Linux

apt-cache policy kernel-package
kernel-package:
  Installed: 12.036
  Candidate: 12.036
  Version table:
 *** 12.036 0
500 http://mirror.csclub.uwaterloo.ca/debian/ squeeze/main amd64 
Packages
100 /var/lib/dpkg/status



-M

  

Re: Debian VServer in Germany

2010-09-14 Thread Johannes Graumann
Decided to solve my issues with migrating my domain to dyndns.org's custom 
offering.

Joh

Johannes Graumann wrote:

 Hi,
 
 I'm looking for a hosting outfit in Germany that will provide a virtual
 server running debian with =75GB HD space, full root access and backup
 management. I'm with strato.de right now and happy, BUT they will NOT
 allow me to set an MX-Record for the server-associated domain directly.
 I'm looking for a provider that allows that while providing a backup
 mailserver, so no mail gets lost if my own vserver goes down for a bit ...
 
 Any ideas,
 
 Thanks, Joh



-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/i6oob5$8t...@dough.gmane.org



Re: ext3 file system

2010-09-14 Thread Stan Hoeppner
Frank put forth on 9/14/2010 12:17 PM:

 Further to this problem (I'm getting tired of re-booting)

http://en.wikipedia.org/wiki/Irony

-- 
Stan


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4c8fe5f6.1090...@hardwarefreak.com



Re: Debian VServer in Germany

2010-09-14 Thread Stan Hoeppner
Johannes Graumann put forth on 9/13/2010 3:44 PM:
 I'm 
 looking for a provider that allows that while providing a backup mailserver, 
 so no mail gets lost if my own vserver goes down for a bit ...

You don't need a backup MX.  IIRC, the default retry interval for every
*nix MTA in default configuration is _3-5 days_.  Do you foresee your
server being down more than 3-5 days at a time?  If not, you don't need
a backup MX.

I've been running a home vanity domain MX box for 8 years and never lost
a mail through two moves, one within the city lasting 8 hours, the other
between cities lasting almost 2 days.

-- 
Stan


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4c8fe94c.4050...@hardwarefreak.com



Re: Straw poll: What browser do you use?

2010-09-14 Thread Aaron Toponce
On Tue, Sep 14, 2010 at 05:05:11PM +0100, Lisi wrote:
 On Tuesday 14 September 2010 16:48:46 Bret Busby wrote:
  Because the Debian people (I believe) omitted iceape and iceweasel from
  Debian 5, I had to search, and installed the previous release packages.
 
 Iceweasel is there:
 
 l...@tux:~$ cat /etc/debian_version
 5.0.6
 l...@tux:~$ aptitude show iceweasel
 Package: iceweasel
 State: installed
 [snip]
 
 But Iceape does indeed seem not be there in its entirety, only the 
 development 
 files:
 
 l...@tux:~$ aptitude search iceape
 p   iceape-dev  - Development files for the 
 Iceape 
 Internet Suite
 p   iceape-dev-bin  - Development files for the 
 Iceape 
 Internet Suite
 l...@tux:~$

Iceweasel, Icedove and Iceape, among many, many other packages, rely on
only a handful of core packages, notably xulrunner. The reason Iceape
didn't ship, is because it couldn't be built against the xulrunner
version that supported Iceweasel, Icedove, Epiphany and the others. That
is why for Squeeze, you won't be seeing the latest and greatest Icedove
and Iceweasel, because Iceape and other packages can now be shipped with
the current xulrunner version.

The latest and greatest require a new xulrunner, that many packages
haven't had the time to be tested against. And with Squeeze frozen, we'll
have to wait for Wheezy. You could ship multiple xulrunner versions, but
then you introduce twice the overhead for the security team.

Long story short, it's give-and-take. Hope that makes sense.

-- 
. o .   o . o   . . o   o . .   . o .
. . o   . o o   o . o   . o o   . . o
o o o   . o .   . o o   o o .   o o o


signature.asc
Description: Digital signature


Re: Unicode Character key-in problem

2010-09-14 Thread Celejar
On Fri, 10 Sep 2010 18:56:03 -0400
Daniel Barclay dan...@fgm.com wrote:

...

 (From Celejar(?)'s Control-Shift-U comment, it sounds like Linux does
 provide both types of methods.)

Yes, it does.  For the archives:

Compose key:

http://www.hermit.org/Linux/ComposeKeys.html

GTK ctrl-shift methods - I can't find the official documentation, but
these comments from the source code are floating around the web:

http://mail.gnome.org/archives/gtk-devel-list/2005-September/msg1.html

Celejar
-- 
foffl.sourceforge.net - Feeds OFFLine, an offline RSS/Atom aggregator
mailmin.sourceforge.net - remote access via secure (OpenPGP) email
ssuds.sourceforge.net - A Simple Sudoku Solver and Generator


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100914201925.b2671b6d.cele...@gmail.com



Re: Why can't ID3 tags be modified in GNOME file's properties?

2010-09-14 Thread Mark
On Tue, Sep 14, 2010 at 1:50 PM, Merciadri Luca 
luca.mercia...@student.ulg.ac.be wrote:

 Hi,

 For mp3 files, one generally needs to use a tag editor, or an advanced
 music player to modify ID3 tags. However, ID3 tags can be displayed by
 GNOME using Properties  Audio on the selected file. But they can't be
 edited. Why is there no such option?


Since the headers/ID3 tags in mp3s use different formats (2.3 or 2.4,
unicode or western, etc.) why would you _not_ want a special program to make
sure the file header is written properly and to the format you specify?
Short of having a program such as kid3-qt embedded in the nautilius/file
browser context (right click) menu, for example, I wouldn't trust it just
like I don't trust Windows Explorer to modify the ID3 tags.  If something
like an embedded kid3-qt menu within GNOME is what you're suggesting then I
think it's an interesting idea and would put it light years ahead of Windows
for that function.

Sorry, not much of an answer but you did get my brain juices flowing with
your question...

Mark


Re: Reg persistence usb portability

2010-09-14 Thread Richard Nelson
Greetings,

On Tue, Sep 14, 2010 at 12:22 AM, Kousik Maiti kousiks...@gmail.com wrote:
 Hi lists,

 I created one persistence usb through http://www.linuxliveusb.com/ .

Not sure of the above but if you are using a Debian Live image then read on.

 Then
 add some packges into that.
 Can the created persistence usb portable through different hardware? If no
 then what modifications required to make it portable through different
 hardware?


Take a look at 7.5.4. Persistent SubText it was added so a single
image could be used in various setups
http://live.debian.net/manual/en/html/persistence.html#id2559143


 Thanks in advanced.
 --
 Wishing you the very best of everything, always!!!
 Kousik Maiti(কৌশিক মাইতি)
 Registered Linux User #474025
 Registered Ubuntu User # 28654



--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/aanlktikzbff#v2_5cac5lqotn-scq7by9yd045h...@mail.gmail.com



Re: Straw poll: What browser do you use?

2010-09-14 Thread Kelly Clowers
On Tue, Sep 14, 2010 at 19:52, Kelly Clowers kelly.clow...@gmail.com wrote:
 On Tue, Sep 14, 2010 at 08:57, Bret Busby b...@busby.net wrote:
 On Mon, 13 Sep 2010, Kelly Clowers wrote:



 You say Moz (?) but, if you refer to Seamonkey, that is diifferent (from
 what I understand) to iceape, which has, from what I understand, some of
 the
 Mozilla stuff that makes Mozilla software what it is, removed.

 The only thing that should be removed is the name.


 I may be wrong in my understanding, but I believe that some of the
 functionality was removed, in the modifications of the Mozilla products to
 create the Debian products iceape and iceweasel, as the Mozilla products
 apparently did not comply with the Debian philosophy and thence Mozilla
 products in their Mozilla forms were no longer available via the Debian
 repositories.

 If by  some of the functionality was removed, you mean the standard Firefox
 and SeaMonkey Icons, then sure. That's about it AFAIK. Trouble with the icon
 licensing (and some issues with carrying patches, I think) led to trouble with
 the trademarks, which led  to the name change.

Sent to the list this time. Sorry about that.


Cheers,
Kelly Clowers


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/aanlkti=5g9fdpxrt5c7kzucsh1rq_-=9nabcqhemy...@mail.gmail.com



Re: new squeeze

2010-09-14 Thread Tom H
2010/9/13 Jesús M. Navarro jesus.nava...@undominio.net:
 On Friday 10 September 2010 21:17:24 Tom H wrote:
 On Thu, Sep 9, 2010 at 11:25 PM, Miles Fidelman
 
  Now if you consider it user error to give the default answers, when you
  actually want to save the current install, then your anwer is accurate.

 I do. It's a PEBKAC. With d-i and its Ubuntu implementation in its
 alternate and mini installers, the default is to use the entire disk,

 I don't see that to exactly be a PEBKAC.  How it's having a default destroying
 your data to be considered a sane practice? default should be inoffensive or
 do nothing if at all possible.

I guess that the assumption is that someone installing Debian knows
whether he/she wants to use the default of installing the entire disk
or not.


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/aanlktimad+yy6nsw4gqhiulh-mv5rtcgzew7m6zwa...@mail.gmail.com



Re: new squeeze

2010-09-14 Thread Scott Ferguson

 2010/9/13 Jes�s M. Navarro jesus.nava...@undominio.net:
 On Friday 10 September 2010 21:17:24 Tom H wrote:
 On Thu, Sep 9, 2010 at 11:25 PM, Miles Fidelman
 Now if you consider it user error to give the default answers, when you
 actually want to save the current install, then your anwer is accurate.
 I do. It's a PEBKAC. With d-i and its Ubuntu implementation in its
 alternate and mini installers, the default is to use the entire disk,
 I don't see that to exactly be a PEBKAC. �How it's having a default 
 destroying
 your data to be considered a sane practice? default should be inoffensive or
 do nothing if at all possible.
 I guess that the assumption is that someone installing Debian knows
 whether he/she wants to use the default of installing the entire disk
 or not.


I *know* that the *presumption* is that someone installing Debian has
read the fine manual before attempting an install :-)
Please don't try and correlate Ubuntu installs with Debian.

Cheers


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4c9049ee.9000...@gmail.com



Re: new squeeze

2010-09-14 Thread Tom H
On Wed, Sep 15, 2010 at 12:22 AM, Scott Ferguson
prettyfly.producti...@gmail.com wrote:
 2010/9/13 Jes�s M. Navarro jesus.nava...@undominio.net:
 On Friday 10 September 2010 21:17:24 Tom H wrote:
 On Thu, Sep 9, 2010 at 11:25 PM, Miles Fidelman
 Now if you consider it user error to give the default answers, when you
 actually want to save the current install, then your anwer is accurate.

 I do. It's a PEBKAC. With d-i and its Ubuntu implementation in its
 alternate and mini installers, the default is to use the entire disk,

 I don't see that to exactly be a PEBKAC. �How it's having a default 
 destroying
 your data to be considered a sane practice? default should be inoffensive or
 do nothing if at all possible.

 I guess that the assumption is that someone installing Debian knows
 whether he/she wants to use the default of installing the entire disk
 or not.

 I *know* that the *presumption* is that someone installing Debian has
 read the fine manual before attempting an install :-)
 Please don't try and correlate Ubuntu installs with Debian.

I'm not confused and I'm not the one suggesting that d-i to adopt
ubiquity's much saner (someone else's words not mine) defaults.
d-i's current default is just fine with me.


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/aanlktinn4cnay_q-f+j=+_pa1rsz25wjvkihx4xfw...@mail.gmail.com



Re: Unicode Character key-in problem

2010-09-14 Thread Phil Requirements
On 2010-09-10 18:56:03 -0400, Daniel Barclay wrote:
 Phil Requirements wrote:
 ...
 GNU/Linux has an *improved* method of inputting these special
 characters.  In Windows, you have to memorize these four digit codes
 that don't mean anything. In GNU/Linux, I memorize two-letter codes
 that actually hint at the meaning.
 
 On the other hand, a method based on hexadecimal character codes can
 handle a lot more characters than you can memorize two-key combinations
 for, and instead of using keyboard-layout-specific combinations, can use
 standard Unicode code point numbers for characters (which are also used
 in HTML, XML, JavaScript, Java, Ruby I think, and who know where else).
 (That is, learning learning a multi-key compose combination for a
 character won't help you when you want to enter the encoded form of
 the character in those other places; learning a hex code would.)
 

I agree with your point that the ability to enter hex codes would be
portable in a certain way. However, they are not mnemonic at all, and
are difficult to memorize.

I was trying to address the very specific problem the original poster
had laid out. He had certain characters that he needed frequently,
which he had memorized the decimal ASCII code for. In that situation
(an average user who needs to enter some special characters now and
then) I still think that the two-letter mnemonic codes are an
improvement over memorizing decimal ASCII codes.

It's a good and valid point about working with Unicode codes. But my
email that you are quoting was written on a simpler level than that.


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100915045804.ga3...@kasploosh.net



Re: new squeeze

2010-09-14 Thread Scott Ferguson

 On Wed, Sep 15, 2010 at 12:22 AM, Scott Ferguson
 prettyfly.producti...@gmail.com wrote:
 2010/9/13 Jes�s M. Navarro jesus.nava...@undominio.net:
 On Friday 10 September 2010 21:17:24 Tom H wrote:
 On Thu, Sep 9, 2010 at 11:25 PM, Miles Fidelman
 Now if you consider it user error to give the default answers, when you
 actually want to save the current install, then your anwer is accurate.
 I do. It's a PEBKAC. With d-i and its Ubuntu implementation in its
 alternate and mini installers, the default is to use the entire disk,
 I don't see that to exactly be a PEBKAC. �How it's having a default 
 destroying
 your data to be considered a sane practice? default should be inoffensive 
 or
 do nothing if at all possible.
 I guess that the assumption is that someone installing Debian knows
 whether he/she wants to use the default of installing the entire disk
 or not.
 I *know* that the *presumption* is that someone installing Debian has
 read the fine manual before attempting an install :-)
 Please don't try and correlate Ubuntu installs with Debian.
 I'm not confused and I'm not the one suggesting that d-i to adopt
 ubiquity's much saner (someone else's words not mine) defaults.
 d-i's current default is just fine with me.


Correcting your wording - not your opinion :-)   Assume==guess
Presume==based on smidgen of evidence (at least)
Hand-holding installations have been discussed to death - the general
consensus seems to be if you want hand-holding use one of the less
pure Debians (Ubuntu et al).
If you want choice use the Debian installer - it may wipe an already
installed OS, it may refuse to boot if you insist on a XFS boot
partition, but it won't happen if the install notes are read. Personally
I'd like to see expert as the only install choice.
If we wanted to do things the Ubuntu way we'd - be on the Ubuntu lists.

Cheers


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4c9053ba.1080...@gmail.com



Re: Wireless keyboard is not working with grub2

2010-09-14 Thread Phil Requirements
On 2010-09-09 11:54:32 +0530, Kousik Maiti wrote:
 Hi list,
 I have wireless keyboard and mouse of Logitech. I have duel boot
 system. During boot keyboard is not working so I am not able to choose OS.
 Is there any solution?
 

Someone already suggested that this might be a USB vs PS/2 issue.
They suggested changing a setting in the BIOS.

I have an old computer that has a USB keyboard.  In order to have the
keyboard work at boot time, I have to use a USB to PS/2 converter, and
plug the keyboard into the PS/2 port.

So if you don't have a BIOS option for a USB keyboard, because the computer
is too old, you can try a USB to PS/2 converter.

Hope this helps,

Phil


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100915050759.gb3...@kasploosh.net



Re: Straw poll: What browser do you use?

2010-09-14 Thread Doug

On 09/14/2010 10:53 PM, Kelly Clowers wrote:

On Tue, Sep 14, 2010 at 19:52, Kelly Clowerskelly.clow...@gmail.com  wrote:
   

/snip/
If by  some of the functionality was removed, you mean the standard Firefox
and SeaMonkey Icons, then sure. That's about it AFAIK. Trouble with the icon
licensing (and some issues with carrying patches, I think) led to trouble with
the trademarks, which led  to the name change.
 

Sent to the list this time. Sorry about that.


Cheers,
Kelly Clowers


   
Is there any practical way to get the icons back, so you can use what 
you're used to?

--doug


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org

Archive: http://lists.debian.org/4c9057de.6080...@optonline.net



Take Screenshot bug

2010-09-14 Thread Doug
Using Squeeze.  In Take Screenshot if you opt for a full screen, it 
works fine.  If you
select Grab the current window you never get the second Screenshot 
window that asks what to do with the screenshot--save to file, save to 
clipboard, etc.


Unless there's something I'm overlooking, that's a bug.  How do I report it?

--doug


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org

Archive: http://lists.debian.org/4c9059e9.4050...@optonline.net



Re: Straw poll: What browser do you use?

2010-09-14 Thread Scott Ferguson

 On 09/14/2010 10:53 PM, Kelly Clowers wrote:
 On Tue, Sep 14, 2010 at 19:52, Kelly
 Clowerskelly.clow...@gmail.com  wrote:
   
 /snip/
 If by  some of the functionality was removed, you mean the
 standard Firefox
 and SeaMonkey Icons, then sure. That's about it AFAIK. Trouble with
 the icon
 licensing (and some issues with carrying patches, I think) led to
 trouble with
 the trademarks, which led  to the name change.
  
 Sent to the list this time. Sorry about that.


 Cheers,
 Kelly Clowers



 Is there any practical way to get the icons back, so you can use what
 you're used to?
 --doug



Download from here http://www.mozilla.com/en-US/about/logo/use.html

Cheers


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4c905bbd.3030...@gmail.com



Re: Umask bij SFTP instellen

2010-09-14 Thread Paul van der Vlis
Vincent Zweije schreef:

 En dat is nou typisch zo'n punt waar ik het opgeef tenzij het echt moet,
 want uitzoeken waarom het nou precies niet kan is teveel gedoe.
 
 Bijvoorbeeld: waarom is er geen upgrade mogelijk van lib32asound2? Is
 die verdwenen uit testing, en wat is dan de vervanging ervan? En welke
 pakketten hebben het nodig, en kunnen die misschien gewoon weg?
 
 Voor je het weet ben je uren bezig.

Heb voor de grap even een backport gemaakt. Dat gaat perfect.
Even grof opgeschreven hoe:
---
su
 pico /etc/apt/sources.list # zorg voor juiste deb-src regel
 apt-get update
 apt-get build-dep openssh
exit
mkdir openssh; cd openssh
apt-get source openssh
cd openssh-5.5p1  # oftewel: cd openssh-tab
dpkg-buildpackage -uc -us
cd ..
su
 dpkg -i *.deb
exit
-

Iemand nog kritiek op deze werkwijze?

Met vriendelijke groet,
Paul van der Vlis.




-- 
http://www.vandervlis.nl/


-- 
To UNSUBSCRIBE, email to debian-user-dutch-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Re: Umask bij SFTP instellen

2010-09-14 Thread Martijn Grendelman
Hallo,

 En dat is nou typisch zo'n punt waar ik het opgeef tenzij het echt
 moet,
 want uitzoeken waarom het nou precies niet kan is teveel gedoe.
 Bijvoorbeeld: waarom is er geen upgrade mogelijk van lib32asound2? Is
 die verdwenen uit testing, en wat is dan de vervanging ervan? En welke
 pakketten hebben het nodig, en kunnen die misschien gewoon weg? Voor je
 het weet ben je uren bezig.

 Heb voor de grap even een backport gemaakt. Dat gaat perfect.
 Even grof opgeschreven hoe:
 ---
 su
  pico /etc/apt/sources.list # zorg voor juiste deb-src regel
  apt-get update
  apt-get build-dep openssh
 exit
 mkdir openssh; cd openssh
 apt-get source openssh
 cd openssh-5.5p1  # oftewel: cd openssh-tab
 dpkg-buildpackage -uc -us
 cd ..
 su
  dpkg -i *.deb
 exit
 -

 Iemand nog kritiek op deze werkwijze?
 ja ik zou voor dpkg-buildpackage nog een dch commando aanroepen om
 versienummer en de package naam aan te passen, dan blijf je package
 teminste herkenbaar als  custom build ipv dat het lijkt op een stock
 package.

En je wilt eigenlijk altijd het bouwen van Debian packages in een 'cleane'
chroot-omgeving doen. Daarvoor zijn tools als 'pbuilder' en 'cowbuilder'
bedacht.

Na het opzetten van een pbuilder omgeving (wat niet moeilijk is) bouw je
het pakket met he commando 'pdebuild', in plaats van 'dpkg-buildpackage'.

Groeten,
Martijn.



smime.p7s
Description: S/MIME Cryptographic Signature


Re: Umask bij SFTP instellen

2010-09-14 Thread Matijs van Zuijlen

On 14/9/2010 9:59 AM, Martijn Grendelman wrote:

En je wilt eigenlijk altijd het bouwen van Debian packages in een 'cleane'
chroot-omgeving doen. Daarvoor zijn tools als 'pbuilder' en 'cowbuilder'
bedacht.

Na het opzetten van een pbuilder omgeving (wat niet moeilijk is) bouw je
het pakket met he commando 'pdebuild', in plaats van 'dpkg-buildpackage'.


Hm, ik doe dit nooit. Waarom zou je dat willen als het een pakket voor 
je eigen systeem is?


Groet,
--
Matijs


--
To UNSUBSCRIBE, email to debian-user-dutch-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Re: Umask bij SFTP instellen

2010-09-14 Thread Paul van der Vlis
Winfried Tilanus schreef:
 On 09/13/2010 05:13 PM, Paul van der Vlis wrote:
 
 
 Ik probeer een SFTP server zo ver te krijgen een umask van 0002 te
 gebruiken, maar mijn pogingen worden genegeerd.
 
 Ken het probleem, heb er al een keer eerder mee zitten worstelen. Ik heb
 het zelf niet uitgeprobeerd, maar volgens mij zou libpam-umask wel
 moeten werken. 

Interessant, daar wou ik altijd al eens mee spelen. Maar nooit toe
gekomen. Nog niet zo zeker of dat wel werkt.

 Let overigens op dat scp expliciet de rechten meekopieert
 en daar werkt dit dus niet op.

Is dat een verschil tussen scp en sftp?

Men gebruikt overigens WinSCP om bestanden te uploaden. Gebruikt dat scp
of sftp?  (voor het geval je dat toevallig mocht weten)

 Een andere (heel lelijke) optie is een cronjob die wat rechten rechtzet.

Dat gaat te ver in dit geval.


Met vriendelijke groet,
Paul van der Vlis.




-- 
http://www.vandervlis.nl/



-- 
To UNSUBSCRIBE, email to debian-user-dutch-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Re: Umask bij SFTP instellen

2010-09-14 Thread Martijn Grendelman
On 14-09-10 10:11, Matijs van Zuijlen wrote:
 On 14/9/2010 9:59 AM, Martijn Grendelman wrote:
 En je wilt eigenlijk altijd het bouwen van Debian packages in een
 'cleane'
 chroot-omgeving doen. Daarvoor zijn tools als 'pbuilder' en 'cowbuilder'
 bedacht.

 Na het opzetten van een pbuilder omgeving (wat niet moeilijk is) bouw je
 het pakket met he commando 'pdebuild', in plaats van 'dpkg-buildpackage'.
 
 Hm, ik doe dit nooit. Waarom zou je dat willen als het een pakket voor
 je eigen systeem is?

Omdat je dan weet dat resultaat hetzelfde is als wat er in Debian zit, en
niet per ongeluk gelinkt is tegen vage libraries die je misschien ooit op
je systeem hebt geinstalleerd.

Groeten,
Martijn.



smime.p7s
Description: S/MIME Cryptographic Signature