Re: [HS] Un truc bizarre dans les regex ?

2015-11-16 Thread Sylvain L. Sauvage
Le lundi 16 novembre 2015, 15:26:33 Philippe Gras a écrit :
> Bonjour à toutes et à tous,

’jour,
 
>[…]
>   [\w-/]  ne marche pas,
> alors que [\w/-]  fonctionne bien…
> 
> Y a-t-il une bonne raison à ça ? Y a-t-il un problème avec
> mon clavier ?

  Dans '[]', '-' sert à indiquer un intervalle.
  Pour éviter ça, pour qu’il soit pris comme le caractère tiret, 
il faut le protéger ou le mettre en premier ou en dernier.

  Avec '[\w-/]', il essaie de créer un intervalle qui finit avec 
le caractère '/' mais ne commence nulle part ('\w' est lui-même 
un groupe de caractères, donc ne compte pas comme début 
d’intervalle et empêche '-' d’être le premier caractère).

  … pensé-je.

-- 
 Sylvain Sauvage



(SOLUCIONADO) Re: [OT] Manguera datos portatil - HDD a SSD

2015-11-16 Thread Maykel Franco
El día 16 de noviembre de 2015, 15:25, Camaleón  escribió:
> El Sun, 15 Nov 2015 22:50:35 +0100, Maykel Franco escribió:
>
>> El día 15 de noviembre de 2015, 22:50, Maykel Franco
>>  escribió:
>>> El día 15 de noviembre de 2015, 19:09, Maykel Franco
>>>  escribió:

 El 15 nov. 2015 6:27 p. m., "Camaleón"  escribió:
>
> (...)
>
> > http://www.amazon.es/adaptador-pines-Macbook-estado-s%C3%B3lido/dp/B009CARNR2/ref=sr_1_2?ie=UTF8=1447604354=8-2=FPC+SATA
> >
> > Qué opináis? Será compatible??
>
> Ese modelo es para un Macbook y esos bichos son propietarios a más no
> poder además de que el número de pines no coincide (ZIF/LIF-24).
>
> Mejor busca un adaptador genérico y prueba, tampoco son muy caros y
> no tienes mucho que perder, eso sí, fíjate en el ancho de la faja y
> el número de pines (tu cable original marca 50, ZIF/LIF-50) del
> extremo que conecta con la placa base así como el tamaño del chisme
> para que lo puedas insertar bien ya que en los portátiles no hay
> margen de error posible.
>
> https://en.wikipedia.org/wiki/Zero_insertion_force
>
>
 Vaya que faena... Gracias.

 No encuentro ninguno... No se si estoy buscando bien.

 Seguiré mirando, gracias camaleón.
>>>
>>> Umm a lo mejor algo así me vale... Si me cabe claro...
>>>
>>> http://www.amazon.es/Micro-SATA-Cables-Drive-Adapter/dp/B00M1IVBAW/ref=sr_1_2?ie=UTF8=1447614644=8-2=adapter+ide+sata+laptop
>>
>>
>> 100 € ?? wowww no he dicho nada.
>
> Ni aunque fuera gratis... no creo que ese adaptador te quepa dentro del
> portátil. Mira, una opción alternativa que comentan en Google¹ es usar
> la ranura de la lectora DVD para poner el disco SSD en una bahía con
> caja adaptada pero tendrías que prescindir de la unidad de DVD.
>
> Piensa sinceramente si vas a notar alguna mejoría sólo por cambiarle el
> disco duro a ese portátil. Yo creo que no, teniendo en cuenta que lo que
> te limita es el bus de datos (PATA en este caso, 133 MiB/s).
>
> ¹https://www.google.com/webhp?complete=0=en_rd=cr,ssl#complete=0=en=laptop+ssd+disk+dvd
>
> Saludos,
>
> --
> Camaleón
>

Descartado totalmente. Esto último me ha hecho abrir los ojos. Si
todavía fuera un sata, pues vale, aunque fuera un sata1 algo se nota
el SSD pero siendo un ide, en este caso como comentas un PATA... No me
interesa lo más mínimo...

Gracias, marco como solucionado.



Re: sobre mtab y fstab

2015-11-16 Thread Maykel Franco
El día 16 de noviembre de 2015, 16:10, Paradix ;)
 escribió:
> saludos
>
> a riesgo de hacer una pregunta tonta y mas riesgo de quedar tonto sino
> pregunto ... ¿alguien me puede decir que diferencia tiene /etc/mtab
> respecto a /etc/fstab?
>
> saludos
>
> --
> Paradix  ;)
>
> Haciendo abogacía por el software libre adonde voy
>
> --
> 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/
>

No es lo mismo, creo que está claro en fstab se guarda la información
de las opciones de montaje estáticamente y, por el contrario, en mtab
se guarda la tabla de montaje de manera dinámica de lo que actualmente
tengas montado.

Es decir, tengas una configuración en fstab determinada, no implica
que tenga que estar todos los dispositivos montados, por ejemplo algún
dispositivo que este marcado con la opción de noauto, no se montará en
el inicio del sistema operativo y con lo cual no aparecerá enl a tabla
que hay de /etc/mtab.

No son iguales, uno guarda información estáticamente, montando lo que
quieras dependiendo de la configuración y en mtab aparecerá lo que
está montado de verdad dinámicamente.



Re: [HS][RÉSOLU] Un truc bizarre dans les regex ?

2015-11-16 Thread Philippe Gras

Le 16 nov. 2015 à 16:22, Steve Fouchet  a écrit :

> Bonjour,
> 
> 
> Le 16/11/2015 15:26, Philippe Gras a écrit :
>>  [\w-/]  ne marche pas,
> avec cette ta syntaxe tu essais de créer l'intervalle (invalide) de
> caractère \w à(-) / d'où l'erreur

Bê ouuiii ! Chuis con, quand même :-D

> 
>> alors que[\w/-]  fonctionne bien…
> contrairement à cette syntaxe qui autorise 3 caractères: '\w', '/', et '-'
> 
> Donc, je ne pense pas que cela soit un comportement bizarre des regex,
> ni de ton clavier simplement une erreur de syntaxe.
> 
> ++
> 
> Steve
> 



Re: vpn y debian linux.

2015-11-16 Thread Ala de Dragón
2015-11-16 16:13 GMT+01:00, Camaleón :
> El Mon, 16 Nov 2015 13:32:14 +0100, Ala de Dragón escribió:
>
>> Hola, he deshabilitado ipv6 en el cliente.
>
> (...)
>
> Hum...
>
(...)


> bad source address from client [fe80::6169:4ac7:65ac:6283], packet dropped
>
> Ciertamente, dice que IPv6 está desactivado (en el servidor, entiendo)
> pero el mensaje persiste y en notación IPv6, luego debe de estar
> activado por ahí. Mira a ver si el adaptador de red del cliente windows
> tiene desactivado IPv6, y en caso de no ser así, desactívalo.
>
> Saludos,
>
> --
> Camaleón
>
>

Pues parece ser que en windows el tunel se crea por mediacion de un
adaptador de red virtual, que si tiene activado ipv6.
lo desactivo y os cuento.


-- 
"El cielo es para los dragones
 lo que el agua es  para las ninfas"



Tungsten carbide jewelry/ceramic jewelry Supply/vwdsax9 gvwdsax与您共享了相册。

2015-11-16 Thread Tungsten carbide jewelry/ceramic jewelry Supply/vwdsax9 gvwdsax

Dear

This is Charles  from China. we is a factory-direct and trust-worthy  
supplier in tungsten carbide jewelry  and ceramic jewelry.
Thank you for your time for reading my email, here is our new product .  
please check the pictures and details we have them in stock, if you have  
any interest, please let me know, thank you very much.


Our value is Serve Every Client Heart and Soul. Looking forward to  
developing a long and stable business cooperation with you.


Your any reply will be highly appreciated.

Kind Regards,

Charles

https://picasaweb.google.com/lh/sredir?uname=100310670975631203053=ALBUM=6216916202860112497=Gv1sRgCO7F_M7J5eqg8AE=CPKr4dcE=email


Re: dconf-CRITICAL **: unable to create file '/run/user/1000/dconf/user'

2015-11-16 Thread Hugues MORIN
Salut


Je viens de faire la manip.

Pour tester, j'ai effacer /run/user/1000/dconf/user et j'ai laisse le
systeme le recreer.

Ca fonctionne :D


Cordialement
Hugues

Le 14 novembre 2015 12:41, Hugues MORIN  a écrit :

> Salut
>
> Ooouuppss   je me suis trompe en repondant
>
> Merci Guillaume :D
>
> J'essayerai ca Lundi
>
> Cordialement
> Hugues
>
>
> Le 14 novembre 2015 12:39, Hugues MORIN  a écrit :
>
>> Salut
>>
>>
>> Merci Guillaume :D
>>
>> Je mettrai ca en place Lundi.
>>
>>
>> Cordialement
>> Hugues
>>
>> Le 13 novembre 2015 11:37, Guillaume Caron <
>> guillaume.caron.h...@orange.fr> a écrit :
>>
>>> -BEGIN PGP SIGNED MESSAGE-
>>> Hash: SHA1
>>>
>>> Arf, je m'aperçois que je n'avais pas répondu à la liste, je vais
>>> faire les choses bien, cette fois-ci.
>>>
>>>
>>> Le 13/11/2015 10:58, Hugues MORIN a écrit :
>>> > Bonjour
>>> >
>>> >
>>> > Merci :-) J'ai pas tres bien saisie la subtilite de la chose...
>>> > j'ai pas mal de lacune et mon anglais est pas genial Mais si j'ai
>>> > bien compris tmpfiles.d se charge de controler les repertoires et
>>> > les fichiers dont systemd a besoin. Il controle le mode, le
>>> > user/group, la creation, la suppression, etc...
>>> >
>>> > De plus /etc/tmpfiles.d/*.conf est prioritaire sur
>>> > /run/tmpfiles.d/*.conf et /usr/lib/tmpfiles.d/*.conf
>>> >
>>> > donc si j'ai dans /etc/tmpfiles.d/user.conf: f
>>> > /run/user/1000/dconf/hugues0600hugueshugues
>>> >
>>> > Le repertoire /run/user/1000/dconf/hugues devrai etre cree
>>> > (proprietaire/groupe: hugues, droit: rw)
>>> >
>>> > C'est bien ca?
>>> >
>>>
>>> C'est exactement ça :-)
>>>
>>> Au détail près que ça concerne autant systemd que le reste du système,
>>> donc tu peux y mettre ce que tu veux.
>>>
>>> Pour ma part je l'utilise pour définir une valeur par défaut dans
>>> /sys/class/backlight/acpi_video0 et fixer la luminosité de l'écran au
>>> boot.
>>>
>>> Les possibilités sont infinies.
>>>
>>> >
>>> > L'erreur est : dconf-CRITICAL **: unable to create file
>>> > '/run/user/1000/dconf/user' dconf , a mon sens , demande un
>>> > repertoire nomme user, non?
>>> >
>>> > Est ce qu'il ne vaudrai pas mieux mettre f
>>> > /run/user/1000/dconf/user0600hugueshugues
>>> >
>>> >
>>>
>>> Ah, je pensais que c'était le nom de l'utilisateur qui était attendu,
>>> et non pas le terme exact "user". Dans ce cas ça marchera
>>> correctement, en effet.
>>>
>>>
>>> - --
>>> Guillaume
>>> -BEGIN PGP SIGNATURE-
>>> Version: GnuPG v1
>>>
>>> iQIcBAEBAgAGBQJWRb1IAAoJEEW3asTqcbdtfWMP/iO57ATUpwMl2GbZn2SfqQJy
>>> FFTOeUV6afqodzhfz2Lk5NYCIuNb7LNHP/+0QhZu/9i7eQ1VYU+hoUk6Ay7hhNOP
>>> I41YvrM7cHf8MAhFYnIcH3N7TtdzeMjlxjNq58995i9Y1a9KvKLv+wHuBJc7u9uy
>>> ytD9nK89nRZjoKwXH84dcZZsEOpiOW9o6YzpoOGEa2Ru6+5LcE4GefBqn8oP5Z3Y
>>> 2k6208Lm1pdAbCQaJD+6w2FnMehOia0PwUfXGdvM8dmciOsQNRLF+PpFDSXKUrdP
>>> /usLYHTZkqWc/4qTrValD1EbZxhkaysY5wFnOamzb2jRSsNotqTy/hKQbB5+9znU
>>> jtvM6jcFdqVnx/+FCl4SR1YIq9RfrZLtVKjc2DcZl5rt/FMC6B9w4rNCUV+24+Oq
>>> YD/+2Mpr+zOgn/IT9EgE8A5vrgBMZ28Nv0ZoeKOYKg7YTy17DSlZ9gfK/8rdPvvn
>>> S2e+BWiYGFrtqGKn3r7ZRB4qhe1I5q3kteX9btzA6dDxiG59AQ18gImVszd34/az
>>> jjoVx5LkhZLwriGVInRk8AgtBDg8Txuop58dmI9QAQN9LzGxwubQs3FXVD48FVBq
>>> ntTMU8z/3f2bb0dbKyVAIxVzFST+BDVGOTtnB7yKGeiF0OZvpOpd6KJCCjk3iAHc
>>> lEpNhTW+18yfxuXm/pWW
>>> =xCBn
>>> -END PGP SIGNATURE-
>>>
>>>
>>
>


Re: sobre mtab y fstab

2015-11-16 Thread Camaleón
El Mon, 16 Nov 2015 16:21:56 +0100, Maykel Franco escribió:

> El día 16 de noviembre de 2015, 16:10, Paradix ;)
>  escribió:
>> saludos
>>
>> a riesgo de hacer una pregunta tonta y mas riesgo de quedar tonto sino
>> pregunto ... ¿alguien me puede decir que diferencia tiene /etc/mtab
>> respecto a /etc/fstab?
>>
> No es lo mismo, creo que está claro en fstab se guarda la información de
> las opciones de montaje estáticamente y, por el contrario, en mtab se
> guarda la tabla de montaje de manera dinámica de lo que actualmente
> tengas montado.
> 
> Es decir, tengas una configuración en fstab determinada, no implica que
> tenga que estar todos los dispositivos montados, por ejemplo algún
> dispositivo que este marcado con la opción de noauto, no se montará en
> el inicio del sistema operativo y con lo cual no aparecerá enl a tabla
> que hay de /etc/mtab.
> 
> No son iguales, uno guarda información estáticamente, montando lo que
> quieras dependiendo de la configuración y en mtab aparecerá lo que está
> montado de verdad dinámicamente.

"man mount" tiene algo de info en la sección "The /etc/fstab, /etc/mtab 
and /proc/mounts files."

Saludos,

-- 
Camaleón



Neteja d'spam d'octubre

2015-11-16 Thread Adrià
Bona tarda,

només recordar-vos que, un mes més, podem repassar l'spam que ha
entrat a les llistes durant el més passat.

L'enllaç, com sempre, aquí[0].

Salutacions,

[0] https://wiki.debian.org/I18n/CatalanSpamClean
-- 
Adrià García-Alzórriz
0x09494C14
Caution: Keep out of reach of children.


signature.asc
Description: PGP signature


sobre mtab y fstab

2015-11-16 Thread Paradix ;)
saludos

a riesgo de hacer una pregunta tonta y mas riesgo de quedar tonto sino
pregunto ... ¿alguien me puede decir que diferencia tiene /etc/mtab
respecto a /etc/fstab?

saludos

-- 
Paradix  ;)

Haciendo abogacía por el software libre adonde voy

--
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/



Re: vpn y debian linux.

2015-11-16 Thread Camaleón
El Mon, 16 Nov 2015 13:32:14 +0100, Ala de Dragón escribió:

> Hola, he deshabilitado ipv6 en el cliente.

(...)

Hum...

> sigo con problemas, logs:
> 
> http://paste.debian.net/332990/

(...)

Mon Nov 16 13:01:31 2015 us=539330 40.40.40.231:54976 [cliente1] Peer 
Connection Initiated with [AF_INET]40.40.40.231:54976
Mon Nov 16 13:01:31 2015 us=539419 cliente1/40.40.40.231:54976 OPTIONS IMPORT: 
reading client specific options from: ccd/cliente1
Mon Nov 16 13:01:31 2015 us=539566 cliente1/40.40.40.231:54976 MULTI_sva: pool 
returned IPv4=10.8.0.6, IPv6=(Not enabled)
Mon Nov 16 13:01:31 2015 us=539678 cliente1/40.40.40.231:54976 MULTI: Learn: 
10.8.0.6 -> cliente1/40.40.40.231:54976
Mon Nov 16 13:01:31 2015 us=539698 cliente1/40.40.40.231:54976 MULTI: primary 
virtual IP for cliente1/40.40.40.231:54976: 10.8.0.6
Mon Nov 16 13:01:31 2015 us=539713 cliente1/40.40.40.231:54976 MULTI: internal 
route 192.168.2.0/24 -> cliente1/40.40.40.231:54976
Mon Nov 16 13:01:31 2015 us=539729 cliente1/40.40.40.231:54976 MULTI: Learn: 
192.168.2.0/24 -> cliente1/40.40.40.231:54976
Mon Nov 16 13:01:31 2015 us=539746 cliente1/40.40.40.231:54976 REMOVE PUSH 
ROUTE: 'route 192.168.2.0 255.255.255.0'
RMon Nov 16 13:01:33 2015 us=931866 cliente1/40.40.40.231:54976 PUSH: Received 
control message: 'PUSH_REQUEST'
Mon Nov 16 13:01:33 2015 us=931903 cliente1/40.40.40.231:54976 
send_push_reply(): safe_cap=940
Mon Nov 16 13:01:33 2015 us=931941 cliente1/40.40.40.231:54976 SENT CONTROL 
[cliente1]: 'PUSH_REPLY,redirect-gateway def1 bypass-dhcp,route 10.8.0.0 
255.255.255.0,dhcp-option DNS 208.67.222.222,dhcp-option DNS 
208.67.220.220,route 10.8.0.0 255.255.255.0,topology net30,ping 10,ping-restart 
120,ifconfig 10.8.0.6 10.8.0.5' (status=1)
Mon Nov 16 13:01:34 2015 us=62502 cliente1/40.40.40.231:54976 MULTI: 
bad source address from client [fe80::6169:4ac7:65ac:6283], packet dropped

Ciertamente, dice que IPv6 está desactivado (en el servidor, entiendo) 
pero el mensaje persiste y en notación IPv6, luego debe de estar 
activado por ahí. Mira a ver si el adaptador de red del cliente windows 
tiene desactivado IPv6, y en caso de no ser así, desactívalo.

Saludos,

-- 
Camaleón



Re: [HS] Un truc bizarre dans les regex ?

2015-11-16 Thread Steve Fouchet
Bonjour,


Le 16/11/2015 15:26, Philippe Gras a écrit :
>   [\w-/]  ne marche pas,
avec cette ta syntaxe tu essais de créer l'intervalle (invalide) de
caractère \w à(-) / d'où l'erreur

> alors que [\w/-]  fonctionne bien…
contrairement à cette syntaxe qui autorise 3 caractères: '\w', '/', et '-'

Donc, je ne pense pas que cela soit un comportement bizarre des regex,
ni de ton clavier simplement une erreur de syntaxe.

++

Steve



signature.asc
Description: OpenPGP digital signature


Desconexiones del USB con el kernel 4.2

2015-11-16 Thread Josu Lazkano
Hola a todos,

Hace poco que actualice el kernel de mi servidor al de los backports de Jessie:

# uname -a
Linux mitxelena 4.2.0-0.bpo.1-amd64 #1 SMP Debian 4.2.5-1~bpo8+1
(2015-11-02) x86_64 GNU/Linux

El problema que tengo es que el USB del SAI se me desconecta constantemente:

# tail -n 20 /var/log/syslog
Nov 16 17:52:21 servidor kernel: [378450.893207] usb 4-5: new
low-speed USB device number 119 using ohci-pci
Nov 16 17:52:21 servidor kernel: [378451.062333] usb 4-5: New USB
device found, idVendor=0665, idProduct=5161
Nov 16 17:52:21 servidor kernel: [378451.062345] usb 4-5: New USB
device strings: Mfr=1, Product=2, SerialNumber=0
Nov 16 17:52:21 servidor kernel: [378451.062352] usb 4-5: Product: USB to Serial
Nov 16 17:52:21 servidor kernel: [378451.062358] usb 4-5:
Manufacturer: INNO TECH
Nov 16 17:52:21 servidor kernel: [378451.077138] hid-generic
0003:0665:5161.82E4: hiddev0,hidraw0: USB HID v1.00 Device [INNO TECH
USB to Serial] on usb-:00:12.0-5/input0
Nov 16 17:52:31 servidor kernel: [378460.445921] usb 4-5: USB
disconnect, device number 119
Nov 16 17:52:32 servidor kernel: [378462.193014] usb 4-5: new
low-speed USB device number 120 using ohci-pci
Nov 16 17:52:32 servidor kernel: [378462.362197] usb 4-5: New USB
device found, idVendor=0665, idProduct=5161
Nov 16 17:52:32 servidor kernel: [378462.362208] usb 4-5: New USB
device strings: Mfr=1, Product=2, SerialNumber=0
Nov 16 17:52:32 servidor kernel: [378462.362215] usb 4-5: Product: USB to Serial
Nov 16 17:52:32 servidor kernel: [378462.362220] usb 4-5:
Manufacturer: INNO TECH
Nov 16 17:52:32 servidor kernel: [378462.376749] hid-generic
0003:0665:5161.82E5: hiddev0,hidraw0: USB HID v1.00 Device [INNO TECH
USB to Serial] on usb-:00:12.0-5/input0
Nov 16 17:52:42 servidor kernel: [378471.747838] usb 4-5: USB
disconnect, device number 120
Nov 16 17:52:44 servidor kernel: [378473.496808] usb 4-5: new
low-speed USB device number 121 using ohci-pci
Nov 16 17:52:44 servidor kernel: [378473.666912] usb 4-5: New USB
device found, idVendor=0665, idProduct=5161
Nov 16 17:52:44 servidor kernel: [378473.666924] usb 4-5: New USB
device strings: Mfr=1, Product=2, SerialNumber=0
Nov 16 17:52:44 servidor kernel: [378473.666930] usb 4-5: Product: USB to Serial
Nov 16 17:52:44 servidor kernel: [378473.666936] usb 4-5:
Manufacturer: INNO TECH
Nov 16 17:52:44 servidor kernel: [378473.680619] hid-generic
0003:0665:5161.82E6: hiddev0,hidraw0: USB HID v1.00 Device [INNO TECH
USB to Serial] on usb-:00:12.0-5/input0

Antes de la actualizacion no me pasa, ¿que puede ser?

La verdad que es un poco raro, hasta ahora a funciona bien.

Un saludo.

-- 
Josu Lazkano



(Solucionado) Re: KMS y resolución en las consolas (tty)

2015-11-16 Thread Camaleón
El Sun, 15 Nov 2015 14:57:52 +, Camaleón escribió:

>>> He probado a poner en "/etc/default/grub.conf" lo siguiente:
>>> 
>>> GRUB_GFXMODE=1680x1050,1280x1024,1024x768,800x600,640x480
>>> GRUB_GFXPAYLOAD_LINUX=keep
>>> 
>>> Pero no hay forma, tras regenerar el archivo de configuración (update-
>>> grub) y reiniciar el sistema el texto sigue igual.

(...)

> Pues al final he puesto un bug porque o no doy con la tecla (no debería 
> ser tan complicado definir la resolución de las consolas en el año
> 2015) o es que algo falla:
> 
> inteldrmfb: unable to set console resolution
> https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=805178

Pongo la solución que me han indicado en el bug (menos mal que hay gente 
del kernel por ahí respondiendo :-P) para que quede en el archivo de la 
lista.

GRUB_CMDLINE_LINUX_DEFAULT="quiet video=1680x1050@60"
GRUB_GFXMODE=1680x1050,1280x1024,1024x768,800x600,640x480
GRUB_GFXPAYLOAD_LINUX=keep

El parámetro del kernel "video=1680x1050@60" es el que obra la magia. Los 
valores "GRUB_GFX*" me parece que se usan cuando se quiere mostrar algún 
pantallazo bonito en GRUB mientras se carga el sistema (bootsplash) pero 
yo eso no lo uso aunque los he mantenido habilitados por si acaso.

¿Qué fallaba? Pues la documentación es cuanto menos, contradictoria.

En todos los documentos se puede leer que si se le pasan al kernel los 
parámetros "video=" o "vga=" se desactiva el KMS (falso, o al menos no 
sucede así con el driver intel). También dicen los documentos que las 
resoluciones disponibles en la consola dependerán de la salida de 
"vbeinfo" y eso también es falso ya que a mí no me muestra la resolución 
nativa del monitor y en cambio al pasarle el parámetro "video" se define 
sin problemas. Es posible que todo esto dependa del driver libre que se 
esté usando (nouveau/intel) pero desde luego convendría ser un poco más 
cauteloso con la documentación y si hay excepciones, indicarlas.

Saludos,

-- 
Camaleón



Re: default English (US) QWERTY layout

2015-11-16 Thread Ric Moore

On 11/15/2015 05:05 PM, rlhar...@oplink.net wrote:

On Sun, November 15, 2015 3:46 pm, Ric Moore wrote:

Mine says "Generic 105 (intl) PC" for keyboard model and "English (US)"
for layout. Hope that helps. That is the "system default" setting used at
install time. Ric


In my previous posting, I neglected to tack on " -> +add" at the tail.

But guess what?  In response to:

   applications -> setting -> keyboard -> layout -> +add

I was not simply selecting English (US); rather, I clicked on the EXPAND
symbol (">") and that displayed a list of variants, none of which is
simply "English (US)".

Mystery solved (at least in part).  Thanks, Ric.


When troubleshooting with a shotgun, something will get hit! :) Ric




--
My father, Victor Moore (Vic) used to say:
"There are two Great Sins in the world...
..the Sin of Ignorance, and the Sin of Stupidity.
Only the former may be overcome." R.I.P. Dad.
http://linuxcounter.net/user/44256.html



Re: sudo does not respond to settings in /etc/sudoers

2015-11-16 Thread Ken Heard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 2015-11-16 19:02, Andreas Henriksson wrote:

> For what it's worth, if you want to avoid logging out/in you can 
> temporarily join the group in your shell by using "newgrp sudo".

Thank you for that tip; it is useful to know.

Ken


-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iEYEARECAAYFAlZJ6QYACgkQlNlJzOkJmTd7XQCfVkYMZawUyHDxy7A/O96OYmaF
SfIAmwTd50WNppet3r1P9DknHJtILdGv
=JG+B
-END PGP SIGNATURE-



Re: vpn y debian linux.

2015-11-16 Thread Ala de Dragón
Hola, he deshabilitado ipv6 en el cliente.

No hacia ping al tunel.

he añadido las rutas y el fichero ccd:

;local a.b.c.d
port 1194
proto udp
dev tun
ca /etc/openvpn/ssl/ca.crt
cert /etc/openvpn/ssl/vpn.selanbus.es.crt
key /etc/openvpn/ssl/vpn.selanbus.es.key  # This file should be kept secret
dh /etc/openvpn/ssl/dh2048.pem
server 10.8.0.0 255.255.255.0
ifconfig-pool-persist ipp.txt
client-config-dir ccd
client-to-client
push "redirect-gateway def1 bypass-dhcp"
push "route 192.168.2.0 255.255.255.0"
push "route 10.8.0.0 255.255.255.0"
push "dhcp-option DNS 208.67.222.222"
push "dhcp-option DNS 208.67.220.220"
route 192.168.2.0 255.255.255.0
;duplicate-cn
keepalive 10 120
tls-auth /etc/openvpn/ssl/ta.key 0 # This file is secret
comp-lzo
max-clients 10
user nobody
group nogroup
persist-key
persist-tun
status openvpn-status.log
log /var/log/openvpn/openvpn.log
#log-append  /var/log/openvpn/openvpn.log
verb 5
mute 20

#cat /etc/openvpn/ccd/cliente1
iroute 192.168.2.0 255.255.255.0

sigo con problemas, logs:

http://paste.debian.net/332990/

rutas del maligno ;)

paste.debian.net/332992

rutas del servidor vpn

Kernel IP routing table
Destination Gateway Genmask Flags Metric RefUse Iface
default 80.80.80.10.0.0.0 UG0  00 eth0
10.8.0.010.8.0.2255.255.255.0   UG0  00 tun0
10.8.0.2*   255.255.255.255 UH0  00 tun0
80.80.80.1*   255.255.255.255 UH0  00 eth0
192.168.2.0 10.8.0.2255.255.255.0   UG0  00 tun0

Tambien he provado activando el proxy arp

echo1 > /proc/sys/net/ipv4/conf/eth0/proxy_arp
echo1 > /proc/sys/net/ipv4/conf/tun0/proxy_arp

No dio resultado.

Purge y configure las reglas de iptables por si las moscas.
iptables -A INPUT -i tun+ -j ACCEPT
iptables -A FORWARD -i tun+ -j ACCEPT
iptables -A FORWARD -i tun+ -o eth0 -m state --state
RELATED,ESTABLISHED -j ACCEPT
iptables -A FORWARD -i eth0 -o tun+ -m state --state
RELATED,ESTABLISHED -j ACCEPT
iptables -t nat -A POSTROUTING -s 10.8.0.0/24 -o eth0 -j MASQUERADE

A ver si puedo provar con algun NIX* y me arroja otro resultado.

Saludos linuxeros.



El 16/11/15, Ala de Dragón  escribió:
> El 13/11/15, Fernando Vicios  escribió:
>
> (...)
>
>> El 13/11/15 a las 19:09, Camaleón escribió:
>
> (...)
>
> Hola :D
>
> Muchisimas gracias a ambos por vuestros comentarios.
> Son muy utiles.
> Voy  a empezar por mirar a fondo el tema  ipv6, que ni el ISP ni el
> Cliente Win manejan IPV6.
>
> Despues comenzare con la gestion de rutas y ficheros ICC.
>
> Saludos.
>
> --
> "El cielo es para los dragones
>  lo que el agua es  para las ninfas"
>


-- 
"El cielo es para los dragones
 lo que el agua es  para las ninfas"



Re: sudo does not respond to settings in /etc/sudoers

2015-11-16 Thread Teemu Likonen
Ken Heard [2015-11-16 13:50:09+07] wrote:

> On 2015-11-15 23:26, Teemu Likonen wrote:
>> Maybe you added the user to the "undo" group
>
> Surely you mean the "sudo" group?

Yes, of course. :-)


signature.asc
Description: PGP signature


[HS] Un truc bizarre dans les regex ?

2015-11-16 Thread Philippe Gras
Bonjour à toutes et à tous,

je suis en train de créer un nouveau filtre dans fail2ban,

j'ai trouvé un truc bizarre dans la structure de ma regex :

failregex =  - - \[.*?\] "POST /[\w-/]+\.php # donne

Unable to compile regular expression '(?:::f{4,6}:)?(?P[\w\-.^_]+) - - 
\[.*?\] "POST /[\w-\/]+\.php'
Cannot remove regular expression. Index 0 is not valid

Alors que :
failregex =  - - \[.*?\] "POST /[\w/-]+\.php # donne

Success, the total number of match is 54

[\w-/]  ne marche pas,
alors que   [\w/-]  fonctionne bien…

Y a-t-il une bonne raison à ça ? Y a-t-il un problème avec
mon clavier ?

Ph. Gras


Re: Trobada 2015. Girona 21 Novembre

2015-11-16 Thread Alba Ferrer
> Veig que l'Alba ha posat un interrogant a les 11. Alba, quan podries
> confirmar si pots o no a les 11?
>
> Si l'Alba pogués a les 11, podríem quedar a aquesta hora, fer la trobada
> al matí i després anar a dinar junts.

en principi puc, així que per mi, si a la majoria els va bé, podem
començar a les 11.

Gràcies!



Re: Modificando variables de php.ini desde VirtualHost

2015-11-16 Thread Camaleón
El Sun, 15 Nov 2015 23:53:08 +0100, Alfonso escribió:

(...)

> He visto que para Nginx se pueden aplicar estos cambios con
> 'fastcgi_param':
> 
> fastcgi_param PHP_ADMIN_VALUE open_basedir=/home/ftp/user1/httpdocs/:/tmp/
> 
> Existe alguna forma de hacer esto mismo en Apache? O preguntado de una
> manera más amplia, es posible reescribir variables de un PHP CGI desde
> un Vhost en Apache?
> 
> Agradezco cualquier orientación.

Pues ni idea :-? pero echa un ojo a esta documentación:

https://wiki.apache.org/httpd/SecuringPHP

Saludos,

-- 
Camaleón



Re: adobe flash player in iceweasel does not work anymore in jessie

2015-11-16 Thread Chris Bannister
On Mon, Nov 16, 2015 at 11:41:33AM +0100, Staszek wrote:
> 
> It seems to have been a problem with sound. The videos didn't play at
> all, but once I configured pulseaudio for multiple users (enabling sound
> for the Flash Player user):
> http://billauer.co.il/blog/2014/01/pa-multiple-users/ it just works.

Interesting. I had a working setup, sound worked fine, I upgraded and
found pulseaudio installed and sound had stopped working, when I purged
pulseaudio ... it just worked.

my 0.2c

-- 
"If you're not careful, the newspapers will have you hating the people
who are being oppressed, and loving the people who are doing the 
oppressing." --- Malcolm X



Re: [OT] Manguera datos portatil - HDD a SSD

2015-11-16 Thread Camaleón
El Sun, 15 Nov 2015 22:50:35 +0100, Maykel Franco escribió:

> El día 15 de noviembre de 2015, 22:50, Maykel Franco
>  escribió:
>> El día 15 de noviembre de 2015, 19:09, Maykel Franco
>>  escribió:
>>>
>>> El 15 nov. 2015 6:27 p. m., "Camaleón"  escribió:

(...)

 > http://www.amazon.es/adaptador-pines-Macbook-estado-s%C3%B3lido/dp/B009CARNR2/ref=sr_1_2?ie=UTF8=1447604354=8-2=FPC+SATA
 >
 > Qué opináis? Será compatible??

 Ese modelo es para un Macbook y esos bichos son propietarios a más no
 poder además de que el número de pines no coincide (ZIF/LIF-24).

 Mejor busca un adaptador genérico y prueba, tampoco son muy caros y
 no tienes mucho que perder, eso sí, fíjate en el ancho de la faja y
 el número de pines (tu cable original marca 50, ZIF/LIF-50) del
 extremo que conecta con la placa base así como el tamaño del chisme
 para que lo puedas insertar bien ya que en los portátiles no hay
 margen de error posible.

 https://en.wikipedia.org/wiki/Zero_insertion_force


>>> Vaya que faena... Gracias.
>>>
>>> No encuentro ninguno... No se si estoy buscando bien.
>>>
>>> Seguiré mirando, gracias camaleón.
>>
>> Umm a lo mejor algo así me vale... Si me cabe claro...
>>
>> http://www.amazon.es/Micro-SATA-Cables-Drive-Adapter/dp/B00M1IVBAW/ref=sr_1_2?ie=UTF8=1447614644=8-2=adapter+ide+sata+laptop
> 
> 
> 100 € ?? wowww no he dicho nada.

Ni aunque fuera gratis... no creo que ese adaptador te quepa dentro del 
portátil. Mira, una opción alternativa que comentan en Google¹ es usar 
la ranura de la lectora DVD para poner el disco SSD en una bahía con 
caja adaptada pero tendrías que prescindir de la unidad de DVD.

Piensa sinceramente si vas a notar alguna mejoría sólo por cambiarle el 
disco duro a ese portátil. Yo creo que no, teniendo en cuenta que lo que
te limita es el bus de datos (PATA en este caso, 133 MiB/s).

¹https://www.google.com/webhp?complete=0=en_rd=cr,ssl#complete=0=en=laptop+ssd+disk+dvd

Saludos,

-- 
Camaleón



Re: KMS y resolución en las consolas (tty)

2015-11-16 Thread fernando sainz
El día 14 de noviembre de 2015, 16:13, Camaleón  escribió:
> El Fri, 13 Nov 2015 15:19:02 +, Camaleón escribió:
>
> (...)
>
>> He probado a poner en "/etc/default/grub.conf" lo siguiente:
>>
>> GRUB_GFXMODE=1680x1050,1280x1024,1024x768,800x600,640x480
>> GRUB_GFXPAYLOAD_LINUX=keep
>>
>> Pero no hay forma, tras regenerar el archivo de configuración (update-
>> grub) y reiniciar el sistema el texto sigue igual.
>>
>> ¿Alguna sugerencia?

En uno de mis equipos me pasaba lo mismo, pero con una nvidia.

Al poner la profundidad de color me ha funcionado. (Asegúrate que la
soporta con vbeinfo)

 GRUB_GFXMODE=1280x800x32

No soporta la resolución del monitor que es 1920x1080 pero mejora lo que tenía.

S2.



Re: jira integration

2015-11-16 Thread Don Armstrong
Just for the record, the right mailing list for discussing debbugs is
debian-debb...@lists.debian.org; I've Cc:'ed this there, please direct
any follow-up to there.

On Mon, 16 Nov 2015, Louis Lu wrote:
> One of the key features of the product we need is that it must have
> 2-way integration between Jira and Debian bug tracking system.
> 
> What I mean 2-way integration:
>
> I can create a ticket (eg a bug/support contact etc) from Debian bug
> tracking system in Jira.

If Jira can send and receive e-mail, then yes, it's possible to
integrate pretty trivially. Otherwise, it won't be trivial.

> If I update (eg, adding a comment or changing the status etc) that
> ticket in Jira, Debian bug tracking system will get automatically
> updated with the changes. If I update in Debian bug tracking system,
> Jira will get automatically updated.
> 
> Is this possible to be done in Debian bug tracking system?

Yes.

> Do you have an already built Plug-in for this functionality?

Nope.


-- 
Don Armstrong  http://www.donarmstrong.com

It was a very familiar voice. [...] It was a voice you could have used
to open a bottle of whine.
 -- Terry Pratchett _The Last Continent_ p270



Re: Desconexiones del USB con el kernel 4.2

2015-11-16 Thread Camaleón
El Mon, 16 Nov 2015 17:58:45 +0100, Josu Lazkano escribió:

> Hace poco que actualice el kernel de mi servidor al de los backports de
> Jessie:
> 
> # uname -a Linux mitxelena 4.2.0-0.bpo.1-amd64 #1 SMP Debian
> 4.2.5-1~bpo8+1 (2015-11-02) x86_64 GNU/Linux
> 
> El problema que tengo es que el USB del SAI se me desconecta
> constantemente:
> 
> # tail -n 20 /var/log/syslog 
> Nov 16 17:52:21 servidor kernel: [378450.893207] usb 4-5: new low-speed USB 
> device number 119 using ohci-pci 
> Nov 16 17:52:21 servidor kernel: [378451.062333] usb 4-5: New USB device 
> found, idVendor=0665, idProduct=5161 
> Nov 16 17:52:21 servidor kernel: [378451.062345] usb 4-5: New USB device 
> strings: Mfr=1, Product=2, SerialNumber=0 
> Nov 16 17:52:21 servidor kernel: [378451.062352] usb 4-5: Product: USB to 
> Serial 
> Nov 16 17:52:21 servidor kernel: [378451.062358] usb 4-5: Manufacturer: INNO 
> TECH 
> Nov 16 17:52:21 servidor kernel: [378451.077138] hid-generic 
> 0003:0665:5161.82E4: hiddev0,hidraw0: USB HID v1.00 Device [INNO TECH USB to 
> Serial] on usb-:00:12.0-5/input0 
> Nov 16 17:52:31 servidor kernel: [378460.445921] usb 4-5: USB disconnect, 
> device number 119 

(...)

> Antes de la actualizacion no me pasa, ¿que puede ser?
> 
> La verdad que es un poco raro, hasta ahora a funciona bien.

¿Estás usando algún programa de monitorización para el SAI (NUT)? Si es 
así, comprueba que hayas iniciado el servicio y los drivers asociados 
a tu unidad correctamente.

También podrías probar a conectar el SAI en otro puerto USB o usar un 
cable distinto (que sea para el SAI, eso sí, ya que dependiendo del 
fabricante suelen usar una configuración de los pines distinta de los 
cable USB estándar).

Saludos,

-- 
Camaleón



weird BIOS / USB Problem with Technotrend S2-4600

2015-11-16 Thread Matthias Bodenbinder
Hi,

I have a strange problem with my PC booting while my newly aqcuired Technotrend 
S2-4600 DVB-S2 USB box is connected.

When I start for the first time (cold boot with the usb box), everything is 
fine. firmware is installed and I can watch TV with vdr and xine or vlc. No 
issue. But as soon as I power off and on again the issue occurs.

The next time when I power on, the PC does ot boot. It does not even get to the 
boot loader. Not even the BIos messages are displayed, not even the first 
initial beep is played. The screen is just black. But when I unplug the 
Technotrend box the beep sounds immediately and the boot process starts. 
Attaching the box immediately again during boot works fine and I can watch TV.  
Why is that?

I can not find any BIOS setting that could help. Motherboard is a Asus P8H67-V; 
Bios version 3707. What is going wrong here? 

Any idea?

Matthias




pinning issue or what?

2015-11-16 Thread Matthias Bodenbinder
Hi,

I wanted to have cinnamon 2.8 on debian testing. So I played around with the 
lmde2 repos (betsy) in testing and managed to install cinnamon 2.8. In the 
course of this activity I had to donwgrade a handful of packages. It is working 
now. All is fine, except

When I do "apt-get dist-upgrade" it wants to remove cinnamon:

35# d-u
Reading package lists... Done
Building dependency tree   
Reading state information... Done
Calculating upgrade... Done
The following packages will be REMOVED:
  cinnamon cinnamon-screensaver gir1.2-webkit2-3.0
The following NEW packages will be installed:
  libgtop2-7
The following packages have been kept back:
  libjavascriptcoregtk-3.0-0 libwebkitgtk-3.0-0
The following packages will be upgraded:
  gir1.2-javascriptcoregtk-3.0 gir1.2-webkit-3.0 libmarco-private0 
libnemo-extension1 marco marco-common
6 upgraded, 1 newly installed, 3 to remove and 2 not upgraded.
Need to get 287 kB/1241 kB of archives.
After this operation, 1207 kB disk space will be freed.
Do you want to continue? [Y/n] ^C


Why is that? The policy says:


36# apt-cache policy cinnamon
cinnamon:
  Installed: 2.8.4+betsy
  Candidate: 2.8.4+betsy
  Version table:
 *** 2.8.4+betsy 0
900 http://packages.linuxmint.com/ betsy/main amd64 Packages
100 /var/lib/dpkg/status
 2.6.13-1 0
500 http://ftp.de.debian.org/debian/ testing/main amd64 Packages
100 http://ftp.de.debian.org/debian/ unstable/main amd64 Packages
 2.2.16-5 0
500 http://ftp.de.debian.org/debian/ stable/main amd64 Packages


>From that point of view it should keep cinnamon. 
Here are my pinning values:



37# cat 99_debian 
Package: *
Pin: release a=stable,l=debian
Pin-Priority: 500

Package: *
Pin: release o=Debian,l=Debian-Security
Pin-Priority: 500

Package: *
Pin: release a=testing,l=debian
Pin-Priority: 500

Package: *
Pin: release a=unstable,l=debian
Pin-Priority: 100


Package: *
Pin: release a=experimental
Pin-Priority: 100,l=debian


rakete - root - /etc/apt/preferences.d
38# cat 98_mint 
Package: *
Pin: origin packages.linuxmint.com
Pin-Priority: 900

Package: *
Pin: origin www.deb-multimedia.org
Pin-Priority: 500

---

Any idea?

Thanks
Matthias




Re: jira integration

2015-11-16 Thread Dan Ritter
On Mon, Nov 16, 2015 at 03:56:38AM +, Louis Lu wrote:
> Hi,
> 
> I am currently working on a project for my company and search for a suitable 
> help desk software.
> 
> Debian bug tracking system is one of the products on the list.
> 
> However, I have some technical issues and wonder if you guys can give me a 
> hand.
> 
> One of the key features of the product we need is that it must have 2-way 
> integration between Jira and Debian bug tracking system.
> 
> What I mean 2-way integration:
> I can create a ticket (eg a bug/support contact etc) from Debian bug tracking 
> system in Jira.
> 
> If I update (eg, adding a comment or changing the status etc) that ticket in 
> Jira, Debian bug tracking system will get automatically updated with the 
> changes.
> If I update in Debian bug tracking system, Jira will get automatically 
> updated.
> 
> Is this possible to be done in Debian bug tracking system? Do you have an 
> already built Plug-in for this functionality?
> 

Hey, it occurs to me that you might be under the misapprehension
that "Debian bug tracking system" is a software package.

It is not.

Debian is an organization that produces Debian Linux. It uses a
bug tracking system.

Is that the bug tracking system you mean, or are you looking for
help desk software, and you're hoping that Debian supplies some?

Because you'd be right about that, too, Debian has several open
source bug tracking systems available as installable packages.

-dsr-



Re: vpn y debian linux.

2015-11-16 Thread Ala de Dragón
Tras deshabilitar ipv6 los ping no llegan al servidor.
No recibo nada en los log ni del cortafuegos ni de openvpn.
 provare un *nix a ver que tal prque no doy el fallo del maligno.
Gracias...

El 16/11/15, Ala de Dragón  escribió:
> 2015-11-16 16:13 GMT+01:00, Camaleón :
>> El Mon, 16 Nov 2015 13:32:14 +0100, Ala de Dragón escribió:
>>
>>> Hola, he deshabilitado ipv6 en el cliente.
>>
>> (...)
>>
>> Hum...
>>
> (...)
>
>
>> bad source address from client [fe80::6169:4ac7:65ac:6283], packet
>> dropped
>>
>> Ciertamente, dice que IPv6 está desactivado (en el servidor, entiendo)
>> pero el mensaje persiste y en notación IPv6, luego debe de estar
>> activado por ahí. Mira a ver si el adaptador de red del cliente windows
>> tiene desactivado IPv6, y en caso de no ser así, desactívalo.
>>
>> Saludos,
>>
>> --
>> Camaleón
>>
>>
>
> Pues parece ser que en windows el tunel se crea por mediacion de un
> adaptador de red virtual, que si tiene activado ipv6.
> lo desactivo y os cuento.
>
>
> --
> "El cielo es para los dragones
>  lo que el agua es  para las ninfas"
>


-- 
"El cielo es para los dragones
 lo que el agua es  para las ninfas"



Re: how execute a script

2015-11-16 Thread David Wright
On Mon 16 Nov 2015 at 10:09:04 (+0100), to...@tuxteam.de wrote:
> On Sun, Nov 15, 2015 at 10:47:13PM -0600, David Wright wrote:
> > On Sat 14 Nov 2015 at 08:00:20 (+0100), to...@tuxteam.de wrote:
> > > On Fri, Nov 13, 2015 at 09:11:34AM -0600, David Wright wrote:
> > > > On Fri 13 Nov 2015 at 14:43:39 (+0100), to...@tuxteam.de wrote:
> > > > 
> > > > > (as an aside: it's bad custom inherited from DOS to name shell scripts
> > > > > with an .sh ending. No ending is the right thing here).
> > > > 
> > > > So these were all DOS scripts once, were they?
> > > > 
> > > > -rwxr-xr-x 1 root root 1248 Apr 21  2014 /etc/init.d/bootmisc.sh*
> > > > -rwxr-xr-x 1 root root 3807 Apr 21  2014 /etc/init.d/checkfs.sh*
> > > 
> > > [...]
> > > 
> > > Very smart. I didn't say the scripts are inherited from DOS. That bad
> > > habit is, definitely.
> > 
> > Well file extensions in general are of course much older than DOS
> > (assuming you mean MSDOS-compatible rather than the old meaning as in,
> > say, DOS/360 etc),
> 
> I guess that comes from CP/M, DOS being a cheap ripoff therefrom. But
> that's more or less the horizon of my memories.
> 
> >going back to the origins of unix and further.
> 
> Unix? File Extensions? -- Citation needed.
> 
> > As for script-file extensions in DOS, there was really only .BAT
> > wasn't there?, so the idea of distinguishing .bash, .csh, .py, .pl,
> > .sh, .zsh etc as being inherited from DOS is difficult for me to
> > understand. I have no idea what was going through the head of whoever
> > christened /etc/init.d/hostname.sh originally.
> 
> The point is -- DOS had (remember 8+3) a special place for the "extension"
> in the file system data structures. The OS kernel special-cased a whole
> bunch of those extensions (.SYS, .COM, .EXE, .BAT) comes to mind. You
> couldn't put two dots in a file name. Later, layers and layers of crust
> piled on top of that. Windows hides the "extension" (I still receive
> mails with attachments called foo.jpg.exe, a far echo of this unholy
> mess of special cases on top of special cases).
>  
> Whereas in UNIX, a file name is just a string: very few characters are
> special: steer clear of NUL and slash. If you want to have an easy life
> with shell scripts, steer clear of whitespace.
> 
> [...]

You appear to be trying to shift the discussion to the semantics and
underlying implementation details of file extensions, and I don't know
why. I have clearly stated what I mean when I talk of "extension",
ie the same thing as what you called "ending" earlier.

These extensions/suffixes/endings, call them what you will, are
sufficiently useful to permeate the whole of the linux
filesystem. What I object to is being told that the reason I use
them is some sort of inheritance from DOS, and that to use them in
the names of scripts (scripts being singled out) is bad and not the
right thing.

I have explained why I use them, and how I mitigate any downside.

> > > No. If you call your scripts from other places, and -- say -- change
> > > the implementation from shell to ruby: do you have to run around and
> > > fix all the call sites? Have fun.
> > 
> > Of course I don't. Just write a foo.rb script, and when happy with it,
> > move the link to point at it. Above, you just quoted my saying
> > "Extensionless filenames are either links or binaries."
> 
> So you have a link farm for every bunch of executables? Happy farming.

Now you're trying to imply that there's some sort of scaling
problem. There isn't. These are scripts for my own use, written by
me. I use my naming convention to save my time and effort. I don't see
why I should be dictated to by someone like you who seems to think
that because the linux kernel ignores them, they shouldn't be there.

> > > The one case where an "extension" (as you call it: DOS, see?)
> > 
> > "Extension" is a generally understood shorthand that's been around for
> > years. Should we go through man pages such as gzip and change the word
> > to "suffix"? Or we could go back to using the language of dmr, as in:
> > 'Arguments whose names end with ".c" are assumed to be C source
> > programs; they are compiled, and the object program is left on the
> > file sfile.o (i.e. the file whose name is that of the source with ".o"
> > substituted for ".c").'
> 
> I have no problems with the moniker "extension" -- although it comes
> from unhappy times.

You speak for yourself here. Perhaps you have some sort of history
with DOS. I checked back to see when having .xxx at the end of
filenames came into my own world. I used RT-11 indirectly in the
mid-1970s but TOPS-20 was probably the first direct use. You weren't
limited to 3 chars but IIRC the standard conventions were probably
inherited from earlier systems that were limited. I don't remember
being unhappy. The IBMs I used were limited to a service-inflicted
dww1.12345678.12345678(12345678) where PDS-files had the parenthesised
member names, so TOPS-20 was a huge relaxtion 

Re: vpn y debian linux.

2015-11-16 Thread Camaleón
El Mon, 16 Nov 2015 18:44:36 +0100, Ala de Dragón escribió:

> El 16/11/15, Ala de Dragón  escribió:
>> 2015-11-16 16:13 GMT+01:00, Camaleón :
>>> El Mon, 16 Nov 2015 13:32:14 +0100, Ala de Dragón escribió:
>>>
 Hola, he deshabilitado ipv6 en el cliente.
>>>
>>> (...)
>>>
>>> Hum...
>>>
>> (...)
>>
>>
>>> bad source address from client [fe80::6169:4ac7:65ac:6283], packet
>>> dropped
>>>
>>> Ciertamente, dice que IPv6 está desactivado (en el servidor, entiendo)
>>> pero el mensaje persiste y en notación IPv6, luego debe de estar
>>> activado por ahí. Mira a ver si el adaptador de red del cliente
>>> windows tiene desactivado IPv6, y en caso de no ser así, desactívalo.
>>>
>> Pues parece ser que en windows el tunel se crea por mediacion de un
>> adaptador de red virtual, que si tiene activado ipv6.
>> lo desactivo y os cuento.

> Tras deshabilitar ipv6 los ping no llegan al servidor.
> No recibo nada en los log ni del cortafuegos ni de openvpn.

Pues tendría que funcionar sin que el cliente haga uso del IPv6. ¿Cómo lo 
has desactivado, exactamente? ¿Le funciona la red al cliente windows o 
sólo es la interfaz virtual la que lleva IPv6?

>  provare un *nix a ver que tal prque no doy el fallo del maligno.
> Gracias...

Sí, buena idea, al menos así sabrás si la configuración en la parte 
servidora y la tabla de rutas funciona correctamente.

Saludos,

-- 
Camaleón



Re: how execute a script

2015-11-16 Thread David Wright
On Mon 16 Nov 2015 at 06:54:40 (+0100), Martin Str|mberg wrote:
> In article  David Wright 
>  wrote:
> > As for script-file extensions in DOS, there was really only .BAT
> > wasn't there?, so the idea of distinguishing .bash, .csh, .py, .pl,
> > .sh, .zsh etc as being inherited from DOS is difficult for me to
> > understand.
> 
> Perhaps it's because (MS)DOS begat WINDOWS that only knew how to run
> something based on the extension?
> 
> And that is why we shudder on the sight of a (unnecessary?) extension?

I wouldn't know. My experience of windows is far less than DOS, and my
use of DOS was pretty much restricted to an AUTOEXEC.BAT that started
an emulation system which was my area of expertise. Interesting choice
of language, though; shudder.

I'm the person questioning the relevance of DOS to putting ".sh" at
the end of an on-PATH executable script's filename, when DOS was
brought up in https://lists.debian.org/debian-user/2015/11/msg00453.html

I take it there's a whole generation of folk who gained their
experience of filename endings (a less loaded word than extension)
through DOS/windows, perhaps entirely so. With it, they picked up a
load of negative associations, causing shuddering here and unhappiness
in another part of this thread.

I'm sorry for you. I didn't touch DOS until 1992-06-01 (to be precise)
about twentyone years into my computing career. To say I *used* it
would be an overstatement: I ran one package on it.

Putting meaningful endings onto filenames (excepting, I hasten to
add lest people jump down my throat, executable scripts) had been a
way of life for years. Their necessity was variable from system to
system; sometimes they were just a convention. Look at   man gcc.
It has meaningful endings. They've been there since at least
15 March 1972 when, allegedly, the number of Unix installations had
grown to 10. (At that time, gcc was obviously called cc; Stallman
hadn't yet graduated.)

As for unix scripts, well, yes, there's no *need* for any endings,
but that doesn't preclude their use. If that makes you unhappy or
into a shudderer, please get over it.

Cheers,
David.



Re: Olá , vamos lá!

2015-11-16 Thread Semspam
Porque não bloqueiam o e-mail desse idiota?

On 15-11-2015 16:35, Tiago Ferigoli wrote:
> Olá , vamos lá!
> versão para web
> 
>
>
>   
>
>
>   Olá ,
>
>
>   Obrigado por ter aceito os meus e-mails.
>
>
>   O meu trabalho visa desenvolver campanhas envolventes, com
>   conteúdo. Gosto de criar peças publicitárias que despertem a
>   atenção e o interesse do consumidor. Seja na web ou material
>   impresso, o foco está na criatividade.
>
>
>   No próximo e-mail irei lhe dar alguns exemplos.
>
>
>   Sinta-se livre para responder este e-mail.
>   Juntos, podemos mudar o mundo!
>
>
>   Obrigado,
>   Grande abraço
>
> Tiago Ferigoli
> *Brand Design Creative Director/
> /*
> +55 *12 99709.2133* whatsapp
> cont...@tiagoferigoli.com 
> tiagoferigoli.com
> 
> *Skype:* ferigoli
>
>
>
>
>   
>  
>
>
>
>   
> Você está recebendo este e-mail porque se cadastrou na lista do
> publicitário Tiago Ferigoli
> 
> como debian-user-portuguese@lists.debian.org. Se você não quiser mais
> receber, por favor descadastre aqui
> 
>
> © 2015 Tiago Ferigoli, Todos os Direitos reservados. Se você recebeu
> este e-mail por engano, por favor, desconsidere.
>
>
>
>
> Call
> Send SMS
> Call from mobile
> Add to Skype
> You'll need Skype CreditFree via Skype



Re: how execute a script

2015-11-16 Thread Lisi Reisz
On Monday 16 November 2015 19:33:51 David Wright wrote:
> On Mon 16 Nov 2015 at 06:54:40 (+0100), Martin Str|mberg wrote:
> > In article  David Wright 
 wrote:
> > > As for script-file extensions in DOS, there was really only .BAT
> > > wasn't there?, so the idea of distinguishing .bash, .csh, .py, .pl,
> > > .sh, .zsh etc as being inherited from DOS is difficult for me to
> > > understand.
> >
> > Perhaps it's because (MS)DOS begat WINDOWS that only knew how to run
> > something based on the extension?
> >
> > And that is why we shudder on the sight of a (unnecessary?) extension?
>
> I wouldn't know. My experience of windows is far less than DOS, and my
> use of DOS was pretty much restricted to an AUTOEXEC.BAT that started
> an emulation system which was my area of expertise. Interesting choice
> of language, though; shudder.
>
> I'm the person questioning the relevance of DOS to putting ".sh" at
> the end of an on-PATH executable script's filename, when DOS was
> brought up in https://lists.debian.org/debian-user/2015/11/msg00453.html
>
> I take it there's a whole generation of folk who gained their
> experience of filename endings (a less loaded word than extension)
> through DOS/windows, perhaps entirely so. With it, they picked up a
> load of negative associations, causing shuddering here and unhappiness
> in another part of this thread.
>
> I'm sorry for you. I didn't touch DOS until 1992-06-01 (to be precise)
> about twentyone years into my computing career. To say I *used* it
> would be an overstatement: I ran one package on it.
>
> Putting meaningful endings onto filenames (excepting, I hasten to
> add lest people jump down my throat, executable scripts) had been a
> way of life for years. Their necessity was variable from system to
> system; sometimes they were just a convention. Look at   man gcc.
> It has meaningful endings. They've been there since at least
> 15 March 1972 when, allegedly, the number of Unix installations had
> grown to 10. (At that time, gcc was obviously called cc; Stallman
> hadn't yet graduated.)
>
> As for unix scripts, well, yes, there's no *need* for any endings,
> but that doesn't preclude their use. If that makes you unhappy or
> into a shudderer, please get over it.

I take it those who are so against file endings are equally upset by 
sources.list and menu.lst?
 
Though it is very annoying when they are *needed*.  Xsane usually puts them 
in, and I used not to bother to check.  A few months ago I sent my lawyer a 
scan of a document he needed.  An hour or two later, back came an 
email:  "I'm so sorry, we have no software that can open that file.  The IT 
department has been trying for an hour".  Puzzled, because I thought I had 
sent a .pdf, and had checked that it opened fine in Evince, I looked at the 
file - groaned - and renamed scan-foo to scan-foo.pdf.  When resent it opened 
fine.

Lisi



Re: openjdk 8 on Debian wheezy 7.9

2015-11-16 Thread David Christensen

On 11/16/2015 12:14 PM, Dwijesh Gajadur wrote:

I am using Debian Wheezy 7.9. How can I install openjdk 8 on it?


For my SOHO network, the lowest-risk approach is to use official Debian 
packages for the distribution I am using (with older distributions being 
safer than newer distributions):


https://www.debian.org/distrib/packages

1.  For wheezy, openjdk-7-jdk version 7u85-2.6.1-6~deb7u1 appears to be 
the newest version.


2.  For jessie, openjdk-7-jdk is at 7u85-2.6.1-6+deb8u1.

3.  For stretch, openjdk-8-jdk is at 8u72-b05-1.


Newer packages may be available via Debian backports, at higher risk:

http://backports.debian.org/Packages/

1.  For wheezy-backports, there does not appear to be a newer version of 
openjdk-7-sdk.


2.  Same for wheezy-backports-sloppy.

3.  For jessie-backports, openjdk-8-jdk is at 8u66-b17-1~bpo8+1.


Highest risk approaches include:

1.  Find somebody that packages a *.deb file and use that.

2.  Find somebody who offers a source tarball and use that.


I have destabilized more Debian systems that I can remember by 
attempting foreign packages/ tarballs.  (It's just as likely the root 
cause was operator error as it was software error.)  I don't recall 
doing that using a backport alone.



A good way to contain risk is to use virtualization.  Put Debian 
oldstable or stable on a strong computer, install a hypervisor, and then 
build VM's using whatever is required.  If the VM's meet your needs, 
this approach also facilitates configuration management and disaster 
recovery.




And I also have another question. Is Debian a good distro for Java
programming ?


I've done "hello, world!" and other basic learning exercises using 
Debian and OpenJDK.  I'll let other people comment on advanced Java 
development using Debian.




Can we use the latest features of Java on debian??


I would assume that Oracle offers a JDK with the newest features.  Be 
sure to understand the license.



David



Re: Olá , vamos lá!

2015-11-16 Thread Leandro Guimarães Faria Corcete DUTRA
Le 16 novembre 2015 20:26:19 GMT-02:00, Semspam  a 
écrit :
>Porque não bloqueiam o e-mail desse idiota?

Denuncie usando os botões nas páginas das mensagens em 
https://lists.debian.org/debian-user-portuguese/2015/11/threads.html



-- 
skype:leandro.gfc.dutra?chat  Yahoo!: ymsgr:sendIM?lgcdutra
+55 (61) 3546 7191 (Net)gTalk: xmpp:leand...@jabber.org
+55 (61) 9302 2691 (Vivo) ICQ/AIM: aim:GoIM?screenname=61287803
BRAZIL GMT−3  MSN: msnim:chat?contact=lean...@dutra.fastmail.fm



Re: jira integration

2015-11-16 Thread Louis Lu
Hi Dan,

Sorry for the misunderstanding.

I am after a help desk system. If Debian has one, I am really interested.

One of the "must-have" features is the 2-way integration with Jira.

Do you have anything like that?

Thanks,

Louis



From: Dan Ritter 
Sent: Tuesday, November 17, 2015 7:33 AM
To: Louis Lu
Cc: debian-user@lists.debian.org
Subject: Re: jira integration

On Mon, Nov 16, 2015 at 03:56:38AM +, Louis Lu wrote:
> Hi,
>
> I am currently working on a project for my company and search for a suitable 
> help desk software.
>
> Debian bug tracking system is one of the products on the list.
>
> However, I have some technical issues and wonder if you guys can give me a 
> hand.
>
> One of the key features of the product we need is that it must have 2-way 
> integration between Jira and Debian bug tracking system.
>
> What I mean 2-way integration:
> I can create a ticket (eg a bug/support contact etc) from Debian bug tracking 
> system in Jira.
>
> If I update (eg, adding a comment or changing the status etc) that ticket in 
> Jira, Debian bug tracking system will get automatically updated with the 
> changes.
> If I update in Debian bug tracking system, Jira will get automatically 
> updated.
>
> Is this possible to be done in Debian bug tracking system? Do you have an 
> already built Plug-in for this functionality?
>

Hey, it occurs to me that you might be under the misapprehension
that "Debian bug tracking system" is a software package.

It is not.

Debian is an organization that produces Debian Linux. It uses a
bug tracking system.

Is that the bug tracking system you mean, or are you looking for
help desk software, and you're hoping that Debian supplies some?

Because you'd be right about that, too, Debian has several open
source bug tracking systems available as installable packages.

-dsr-



Re: Neteja d'spam d'octubre

2015-11-16 Thread papapep
On 16/11/15 17:27, Adrià wrote:
> Bona tarda,
> 
> només recordar-vos que, un mes més, podem repassar l'spam que ha 
> entrat a les llistes durant el més passat.
> 
> L'enllaç, com sempre, aquí[0].

Fet!

PD «un mes més» → 2? 



openjdk 8 on Debian wheezy 7.9

2015-11-16 Thread Dwijesh Gajadur
Hello guys.

I am using Debian Wheezy 7.9. How can I install openjdk 8 on it?
And I also have another question. Is Debian a good distro for Java
programming ? Can we use the latest features of Java on debian??



With Kind Regards,

Dwijesh


Re: Neteja d'spam d'octubre

2015-11-16 Thread Oscar Osta Pueyo
Bones,
Fet

Salut,


Re: jira integration

2015-11-16 Thread Dan Ritter
On Mon, Nov 16, 2015 at 07:13:46PM +, Louis Lu wrote:
> Hi Dan,
> 
> Sorry for the misunderstanding.
> 
> I am after a help desk system. If Debian has one, I am really interested.
> 
> One of the "must-have" features is the 2-way integration with Jira.
> 
> Do you have anything like that?
> 

Debian offers several. All of them are free for you to use. They
are all open source. In order to install them, you will need to
install Debian Linux.

Have you read the lovely web page at http://www.debian.org ?

Among the help desk systems packaged for Debian are:

RT (request tracker - this is an excellent one)

Horde-Whups

OTRS2

OTRS3

trac

fossil

ditrack

ticgit / ticgitweb

redmine

and among the Perl libraries are

libjira-client-automated-perl - JIRA REST Client for automated
scripts
libjira-client-perl - Perl interface to JIRA's API


-dsr-



Re: jira integration

2015-11-16 Thread Louis Lu
Hi Dan,

Thanks for your help.

Regards,

Louis


From: Dan Ritter 
Sent: Tuesday, November 17, 2015 8:40 AM
To: Louis Lu
Cc: debian-user@lists.debian.org
Subject: Re: jira integration

On Mon, Nov 16, 2015 at 07:13:46PM +, Louis Lu wrote:
> Hi Dan,
>
> Sorry for the misunderstanding.
>
> I am after a help desk system. If Debian has one, I am really interested.
>
> One of the "must-have" features is the 2-way integration with Jira.
>
> Do you have anything like that?
>

Debian offers several. All of them are free for you to use. They
are all open source. In order to install them, you will need to
install Debian Linux.

Have you read the lovely web page at http://www.debian.org ?

Among the help desk systems packaged for Debian are:

RT (request tracker - this is an excellent one)

Horde-Whups

OTRS2

OTRS3

trac

fossil

ditrack

ticgit / ticgitweb

redmine

and among the Perl libraries are

libjira-client-automated-perl - JIRA REST Client for automated
scripts
libjira-client-perl - Perl interface to JIRA's API


-dsr-



Fwd: [gilug] [premsa] Nova jornada de programari lliure, aquest dissabte

2015-11-16 Thread Narcis Garcia
Carta sencera amb adjunts:
http://llista.gilug.org/pipermail/premsa/2015/02.html


 Missatge reenviat 
Assumpte:   [gilug] [premsa] Nova jornada de programari lliure, aquest
dissabte
Data:   Mon, 16 Nov 2015 21:54:15 +0100
De: GiLUG 
Respon a:   Girona Linux Users Group 
A:  pre...@llista.gilug.org



Aquest dissabte 21 de novembre fem una trobada conjunta la /Comunitat
d'usuaris de Debian de parla catalana/
 i el /Girona Linux Users
Group/ (GiLUG ).

Aquesta múltiple trobada ens permet veure'ns en viu, explicar
batalletes, resoldre dubtes, etc. Adjuntem un petit cartellet per
donar-li una mica de cara a la trobada i algunes activitans que farem.
És benvinguda tota persona amb interès pel programari lliure.

Aquí està la ubicació del local per aquest dissabte:
http://www.openstreetmap.org/?mlat=41.97685=2.80340#map=19/41.97685/2.80340

I per més il·lustració una foto de l'entrada amb la persiana quasi del
tot oberta:








Re: vpn y debian linux.

2015-11-16 Thread Ala de Dragón
El 16/11/15, Camaleón  escribió:
(...)
>
> Pues tendría que funcionar sin que el cliente haga uso del IPv6. ¿Cómo lo
> has desactivado, exactamente? ¿Le funciona la red al cliente windows o
> sólo es la interfaz virtual la que lleva IPv6?
>

En propiedades del adaptador, configuracion y he desmarcado ipv6 de
ambos adaptadores, el tap virtual y el hard.

todo funciona ok.





>>  provare un *nix a ver que tal prque no doy el fallo del maligno.
>> Gracias...
>
> Sí, buena idea, al menos así sabrás si la configuración en la parte
> servidora y la tabla de rutas funciona correctamente.
>
> Saludos,
>
> --
> Camaleón
>
>

En debian funciona de perlas y a la primera, salgo a la red con esa ip
publica, navego y accedo a los servicios locales.
Es problema de la configuracion de la red del MaLiGnO  ventanitas, eso
ya es seguro
-- 
"El cielo es para los dragones
 lo que el agua es  para las ninfas"



Re: Your attempts to communicate

2015-11-16 Thread Christoph Anton Mitterer
On Tue, 2015-11-17 at 00:42 +, Lisi Reisz wrote:
> My email client chokes on your signature.  If I make any attempt to
> reply, my 
> email client freezes.
Well... than it's very likely a bug in your MUA.


> Try: sorting out your signature (I don't know what is wrong with it),
> or 
> omitting your signature.
Haven't heard any complaints so far... and I'm writing a lot of mails


Chris.



Debian DeskTop

2015-11-16 Thread Tony

Hi.

I have just installed Debian 8.2. How do I get the Desk Top to show on the
screen? On boot-up, the green Debian desk Top shows for a few seconds and then 
the Terminal
appears and I cant get to the Desk Top.
Can you please let me know what to do?

Tony Lyons
Australia



Re: Debian DeskTop

2015-11-16 Thread David Christensen

On 11/16/2015 02:18 PM, Tony wrote:

I have just installed Debian 8.2. How do I get the Desk Top to show on the
screen? On boot-up, the green Debian desk Top shows for a few seconds
and then the Terminal
appears and I cant get to the Desk Top.
Can you please let me know what to do?


Is there anything displayed in the Terminal, such as a login prompt?


David



What's the real name for this user

2015-11-16 Thread Lidia Vega


Sent from my iPhone



gnome-shell crashing on Debian Testing - nouveau

2015-11-16 Thread Ben Stones

Hello,

I have been testing Debian 9 Stretch and every time I execute "glxinfo | 
grep renderer", gnome-shell crashes, leaving me with only a cursor to 
move freely and the desktop wallpaper (running on a computer with an 
NVIDIA GeForce 750 Ti, NV117). Can someone kindly direct me as to where 
I need to look specifically to find the logs that can help in a bug 
report about this issue?


Thank you.



Re: debian/sid: yubi key USB error: Access denied (insufficient permissions)

2015-11-16 Thread Bruno Voigt
my id output:

uid=2201(bruno) gid=2201(bruno)
groups=2201(bruno),20(dialout),24(cdrom),25(floppy),29(audio),30(dip),44(video),46(plugdev),108(netdev),110(lpadmin),113(scanner),119(bluetooth),999(bumblebee),2202(ssh-user)

my debian/sid is a system continuously updated since years,
so it could be that something is missing..
What components are responsible to give a user access to usb devices?

On 11/15/2015 10:37 PM, Sven Hartge wrote:
> I am using a Yubikey myself, for KeePass and other things and I never
> had to do anything special to do so. ykinfo works for me as a normal
> user.
>
> Maybe this has something to do with the groups you user is in. Please
> provide the output of "id" from your user.



dear lazyweb: looking for a special backup tool

2015-11-16 Thread Christoph Anton Mitterer
Hey.

Maybe someone can help me with this...

I'm looking for a backup solution with quite some specific needs,...
the idea is basically to backup my main data vaults (which are already
on RAID and regularly btrfs-sent/received to other HDDs) to optical
media (or smaller HDDs with e.g. another fs).


The following goals/features should be met:
the easier parts:
- regular files, symlinks directories must be retained
  for special files it would be nice, but not a must
- hard links must be retained
- file times, owners (ideally as IDs and names), permissions, XATTRS,
  ACLs must all be retained

- it must be possible to backup to split media (e.g. mutliple CDs) or
  multiple smaller filesystems (e.g. which I dm-(en)crypt and then
  burn to CD).
- I want always *full* files to be backuped (in both cases, when
  splitting and when doing incremental backups), so
  - a single file shouldn't be split over multiple backup media
    (unless this isn't possible otherweise, because all targets are
    smaller than the file size)
  - I don't want deltas to be stored (i.e. deltas to the last
    incremental backup)
  The reason for both is simply resilience and recoverability in case
  of loosing single mediums.
- ideally the program would offer two modes:
  - either trying to keep "neighbouring" files (i.e. those that are
    close to each other in the directory hierarchy) closely on the 
    split target mediums
  - or trying to be as space efficient as possible (i.e. place files so
    that space is used most efficiently
  with the first mode being more important.
- catalogues should be made, of both, all files and the files on a
  certain medium, also as a help in the disaster case

here it gets tricky:
- as I've said, incremental backups should be possible,... but that
  should also work when I move files around
  There are basically two ways, either the program sets it's own IDs on
  the files as XATTRs and identifies files based on that, while always
  assuring that IDs are unique. The disadvantage on that would be that
  it's not so uncommon that XATTRs are lost on files, when those get
  edited.
  The other would be to use hashsums, which would be nice, because I
  already store hashsums of each file in an xattr... but I would want
  the program to really verify (i.e. byte for byte) when two different
  files have a matching hash sum. I know, finding collisions is
  unlikely but not impossible.


Well I guess it wouldn't be too difficult to script most of this, but
if there's already a tool which does the job, I'd be happy to hear
about it.


Cheers,
Chris

smime.p7s
Description: S/MIME cryptographic signature


Re: KMS y resolución en las consolas (tty)

2015-11-16 Thread fernando sainz
El día 15 de noviembre de 2015, 15:57, Camaleón  escribió:
> El Sat, 14 Nov 2015 15:13:05 +, Camaleón escribió:
>
>> El Fri, 13 Nov 2015 15:19:02 +, Camaleón escribió:
>>
>> (...)
>>
>>> He probado a poner en "/etc/default/grub.conf" lo siguiente:
>>>
>>> GRUB_GFXMODE=1680x1050,1280x1024,1024x768,800x600,640x480
>>> GRUB_GFXPAYLOAD_LINUX=keep
>>>
>>> Pero no hay forma, tras regenerar el archivo de configuración (update-
>>> grub) y reiniciar el sistema el texto sigue igual.
>>>
>>> ¿Alguna sugerencia?
>>
>> He avanzado un poco pero no mucho :-)
>
> (...)
>
>> ¿A alguien le funciona este parámetro en una gráfica intel pura (no
>> híbrida)?
>
> Pues al final he puesto un bug porque o no doy con la tecla (no debería
> ser tan complicado definir la resolución de las consolas en el año 2015)
> o es que algo falla:
>
> inteldrmfb: unable to set console resolution
> https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=805178
>
> Saludos,
>
> --
> Camaleón
>


Si tu filtro te deja ver este mensaje, echa un vistazo a esta página.

http://unix.stackexchange.com/questions/107479/how-do-you-pass-vga-vesa-modes-with-grub2


S2.



Re: sudo does not respond to settings in /etc/sudoers

2015-11-16 Thread Andreas Henriksson
Hello!

On Mon, Nov 16, 2015 at 01:50:09PM +0700, Ken Heard wrote:
[...]
> My eureka moment! I forgot to logout and in again as my user before
> testing the various options.
[...]

For what it's worth, if you want to avoid logging out/in you can
temporarily join the group in your shell by using "newgrp sudo".

Regards,
Andreas Henriksson



Re: Debian DeskTop

2015-11-16 Thread Himanshu Shekhar
This response is written considering you as a complete newbie. So some
parts may be boring to you.
There are two cases :
A. You have installed a desktop environment
B. You have not installed any desktop environment and the console is the
only interface.

Try pressing Ctrl+Alt+F7 (try other function keys if this doesn't works,
like F8 etc.)
First of all, enter your user name followed by password on the prompt*
(this is the one you created during install). If you forgot your username
(as I saw in case of many friends), enter the user-name "root" followed by
root password/the one you created during install.

*Note that the prompt could be a black and white command line or even a
colorful display manager. Don't worry if you could not see your password as
you type, it's still there.
Now, you are ready to use the system.

Now, heading towards the solution.
A. YOU HAVE INSTALLED A DESKTOP ENVIRONMENT
So, you can login and are ready to use the OS, and you don't need to
read this mail further.

B. YOU HAVE NOT INSTALLED A DESKTOP ENVIRONMENT
 In this case, you need to install a DE. Enter the following commands.
   sudo apt-get update
   sudo tasksel (if this doesn't work then "sudo apt-get install
tasksel" followed by "sudo tasksel")
   Select Gnome/any desktop of your choice using cursors and
spacebar, move to OK using tab and press enter.
   Your download will start and you will be there with a DE installed
after a couple of hours.

This assumes that you have already configured to use a Mirror/Repository
and not dependent on the installation media.
If not, then use the above procedure after inserting the installation media
once you login or edit your Software sources, which you could find online.

Best of luck
Regards
Himanshu Shekhar


firehol en debian jessie

2015-11-16 Thread adian

Luego de instalarlo y configurarlo, aqui el problema
FireHOL[5760]: Firewall has been stopped. Policy is ACCEPT EVERYTHING!

alguna ayuda?

adian



Olá , veja alguns dos meus truques

2015-11-16 Thread Tiago Ferigoli
versão para web 
[http://www.tiagoferigoli.com/mymail/822/0e09fa244314feec80363ab30829/aHR0cDovL3d3dy50aWFnb2Zlcmlnb2xpLmNvbS9uZXdzbGV0dGVyL2F1dG8tcmVzcG9zdGEtMS0zLw]
 

 

OLÁ ,

VOU LHE MOSTRAR ALGUNS TRUQUES BEM SIMPLES MAS MUITO EFICAZES.

PRIMEIRAMENTE, A SUA COMUNICAÇÃO PRECISA FAZER O SEU CONSUMIDOR PENSAR, 
REFLETIR. ASSIM, ELE IRÁ SE IDENTIFICAR MUITO MAIS. ATÉ MESMO A SUA LOGOMARCA 
PRECISA DESEMPENHAR ESSA FUNÇÃO.

EM SEGUNDO LUGAR, PENSE COMO O SEU PUBLICO ALVO, PROCURE SE COLOCAR NO LUGAR 
DELE. E FAÇA A SEGUINTE PERGUNTA: "-SE EU FOSSE ELE, EU COMPRARIA ESTE PRODUTO?"

NO PRÓXIMO E-MAIL VOU LHE DIZER POR ONDE VOCÊ DEVE COMEÇAR.

 Sinta-se livre para responder este e-mail.
Juntos, podemos mudar o mundo! Obrigado,
Grande abraço

Tiago Ferigoli
Brand Design Creative Director

 +55 12 99709.2133 whatsapp
cont...@tiagoferigoli.com
tiagoferigoli.com 
[http://www.tiagoferigoli.com/mymail/822/0e09fa244314feec80363ab30829/aHR0cDovL3d3dy50aWFnb2Zlcmlnb2xpLmNvbQ]
SKYPE: ferigoli 
 

 

 

 

 

Você está recebendo este e-mail porque se cadastrou na lista do publicitário 
Tiago Ferigoli 
[http://www.tiagoferigoli.com/mymail/822/0e09fa244314feec80363ab30829/aHR0cDovL3d3dy50aWFnb2Zlcmlnb2xpLmNvbQ/1]
 como debian-user-portuguese@lists.debian.org. Se você não quiser mais receber, 
por favor descadastre aqui 
[http://www.tiagoferigoli.com/mymail/822/0e09fa244314feec80363ab30829/aHR0cDovL3d3dy50aWFnb2Zlcmlnb2xpLmNvbS9hYm91dC11cy91bnN1YnNjcmliZQ]
 
© 2015 Tiago Ferigoli, Todos os Direitos reservados. Se você recebeu este 
e-mail por engano, por favor, desconsidere. 

 

Call 
Send SMS 
Call from mobile 
Add to Skype 
 You'll need Skype CreditFree via Skype



Your attempts to communicate

2015-11-16 Thread Lisi Reisz
My email client chokes on your signature.  If I make any attempt to reply, my 
email client freezes.

So I have deleted both your emails.

Try: sorting out your signature (I don't know what is wrong with it), or 
omitting your signature.

I may not be the only one having problems.

Lisi



Re: Your attempts to communicate

2015-11-16 Thread John Hasler
Lisi writes:
> My email client chokes on your signature.  If I make any attempt to reply, my 
> email client freezes.

As he does not use a proper delimiter he doesn't really have a
signature.  His messages end with

Cheers,
Chris.

That's not correct, but it is no excuse for Gmail to freeze up.
-- 
John Hasler 
jhas...@newsguy.com
Elmwood, WI USA



Re: Olá , vamos lá!

2015-11-16 Thread Listeiro 037

Feito.

Em Mon, 16 Nov 2015 20:40:11 -0200
Leandro Guimarães Faria Corcete DUTRA  escreveu:

> Le 16 novembre 2015 20:26:19 GMT-02:00, Semspam
>  a écrit :
> >Porque não bloqueiam o e-mail desse idiota?
> 
> Denuncie usando os botões nas páginas das mensagens em
> https://lists.debian.org/debian-user-portuguese/2015/11/threads.html
> 
> 
> 



Re: Your attempts to communicate

2015-11-16 Thread Chris Bannister
On Tue, Nov 17, 2015 at 12:42:55AM +, Lisi Reisz wrote:
> My email client chokes on your signature.  If I make any attempt to reply, my 
> email client freezes.
> 
> So I have deleted both your emails.
> 
> Try: sorting out your signature (I don't know what is wrong with it), or 
> omitting your signature.
> 
> I may not be the only one having problems.

Maybe it's because he uses openssl to sign his mail?

-- 
"If you're not careful, the newspapers will have you hating the people
who are being oppressed, and loving the people who are doing the 
oppressing." --- Malcolm X



Re: no SMART support for western digital drive

2015-11-16 Thread kamaraju kusumanchi
On Mon, Nov 16, 2015 at 4:34 AM, Jonathan Dowland  wrote:
> On Mon, Nov 16, 2015 at 12:17:20AM -0500, kamaraju kusumanchi wrote:
>> The hard drive is placed in a Dual Bay external hard drive docking
>> station which is connected via USB to my computer. Is that a problem?
>
> Yes.
>
>> Is my only option to connect this hard drive internally? How does one
>> check the health of a drive connected via USB?
>
> Some USB<->SATA bridge devices support SMART, but many do not. smartctl
> knows how to query SMART parameters for some USB bridges:
>
> https://www.smartmontools.org/wiki/Supported_USB-Devices
>
> In your case, either the bridge doesn't support it, or smartctl does not
> know how to query SMART via that particular bridge (but could perhaps be
> taught how to by a suitably talented programmer).
>

Thanks for all the replies. My USB device is not listed in the above
wiki page table or in http://www.linux-usb.org/usb.ids . I posted a
message to smartmontools-database mailing list
http://sourceforge.net/p/smartmontools/mailman/message/34625159/ for
futher guidance.

USB device info:
Bus 002 Device 004: ID 152d:1561 JMicron Technology Corp. / JMicron
USA Technology Corp.

In the wiki page, I see that some users had success by using '-d
usbjmicron', '-d usbjmicron[,x]', '-d usbjmicron,x' etc., I want to
try these options one by one and see which one works. Will the drive
get corrupted if I tried the wrong -d option? Any suggestions on which
one I should try first?

thanks
raju
-- 
Kamaraju S Kusumanchi | http://raju.shoutwiki.com/wiki/Blog



Re: no SMART support for western digital drive

2015-11-16 Thread kamaraju kusumanchi
On Mon, Nov 16, 2015 at 6:11 AM, Christoph Anton Mitterer
 wrote:
> On Mon, 2015-11-16 at 09:34 +, Jonathan Dowland wrote:
>> https://www.smartmontools.org/wiki/Supported_USB-Devices
> But note that Debian's smartmontools are pretty outdated and many USB
> bridges supported already in the newest version won't work in Debian.
>
> Cheers,
> Chris.

Thanks for pointing this out. I wonder why a new version is not
compiled even though a bug report
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=789721 was filed
almost 5 months ago. May be this package is not being actively
maintained?

raju
-- 
Kamaraju S Kusumanchi | http://raju.shoutwiki.com/wiki/Blog



Re: vpn y debian linux.

2015-11-16 Thread Ala de Dragón
El 13/11/15, Fernando Vicios  escribió:

(...)

> El 13/11/15 a las 19:09, Camaleón escribió:

(...)

Hola :D

Muchisimas gracias a ambos por vuestros comentarios.
Son muy utiles.
Voy  a empezar por mirar a fondo el tema  ipv6, que ni el ISP ni el
Cliente Win manejan IPV6.

Despues comenzare con la gestion de rutas y ficheros ICC.

Saludos.

-- 
"El cielo es para los dragones
 lo que el agua es  para las ninfas"



Re: very naive question iPad as extra monitor

2015-11-16 Thread Joe
On Mon, 16 Nov 2015 03:51:02 +0100
Jerome BENOIT  wrote:

> Hello Forum:
> 
> Does anyone know a working way to use an iPad as extra monitor with
> Debian ?
> 

There's probably an expensive and devious way: there are gadgets to
broadcast an HDMI signal from a DSLR camera or similar to an iApp for
remote viewfinder display, generally using wifi.

-- 
Joe



Re: Télécommande Universelle NEVO C2 - WAS: [HS] La "lutte contre le logiciel libre": mon expérience récente avec Logitech

2015-11-16 Thread Eric Degenetais
>
> Le site: setup.ez-rc.com, vous propose d'ouvrir un compte. Je tape donc
> mon adresse mail dans la case prévue à cet effet, et j'obtiens la réponse
> suivante: "Cette adresse est déjà inscrite chez nous. Veuillez vous
> connecter avec votre mot de passe". N'ayant aucun souvenir d'avoir eu le
> moindre contact avec ce site, j'essaye néanmoins une seconde adresse, puis
> une troisième: chaque fois la même réponse. J'essaye alors de me connecter
> avec l'une desdites adresses, et je clique sur le lien "adresse oubliée".
> Ouverture d'une nouvelle boîte de dialogue me demandant de resaisir
> l'adresse mail concernée. Ce que je fais. Réponse : => "Cette adresse de
> messagerie ne correspond pas à celle que nous avons dans le dossier". Je
> finis par remarquer une mention en bas de page: "This site is designed for
> Internet Explorer version 7 and 8", alors que j'étais sous Firefox Debian.


à noter que sauf si les trois adresses en question sont des alias jetables,
une base d'adresses à spammer a peut-être tout simplement été enrichie de 3
nouvelles adresses...

__
Éric Dégenètais
Henix



http://www.henix.com
http://www.squashtest.org


Le 14 novembre 2015 17:41, honeyshell  a écrit :

> Bernard,
>
> Je pense que notre mailing liste ne te comprend pas, mais tu pourras
> trouver écho à tes demandes sur quelques forums :
> http://www.commentcamarche.net/forum/, http://www.clubic.com/forum ou
> http://forum.telecharger.01net.com/forum/. Certains libristes y
> trollent autant que toi.
>
> ps : je ne connais pas la teneur de ton mail.
>
>


Re: very naive question iPad as extra monitor

2015-11-16 Thread Jonathan Dowland
On Mon, Nov 16, 2015 at 03:51:02AM +0100, Jerome BENOIT wrote:
> Does anyone know a working way to use an iPad as extra monitor with Debian ?

That is an interesting question.

I have not tried this, however, I know you can get remote desktop clients for
iPad, including VNC clients. If your main machine was a VNC server, you could
connect to it from the iPad. The tricky part would be arranging things so VNC
was displaying the desktop you wanted and integrating that with what is shown
on your main display.



Re: problem med extern hårddisk

2015-11-16 Thread jan
On Fri, 13 Nov 2015 21:43:37 +0100
 wrote:

> On Fri, 13 Nov 2015 21:29:32 +0100
> Ludvig Andersson  wrote:
> 
> > 
> > 
> > On 2015-11-13 21:21, j...@lillahusetiskogen.se wrote:
> > > On Fri, 13 Nov 2015 20:04:44 +
> > > Michael Kjörling  wrote:
> > >
> > >> On 13 Nov 2015 17:51 +0100, from j...@lillahusetiskogen.se:
> > >>> Med risk för att ropa hej lite för tidigt ska jag ändå meddela
> > >>> att jag misstänker att problemet var för hög strömförbrukning
> > >>> från USB.
> > >>
> > >> Med tanke på det du skickade så låter det inte otänkbart. Jag
> > >> skulle låta den gå på den lösning du har nu en stund och se om
> > >> felet återuppstår.
> > >>
> > >
> > > Funkar fortfarande...
> > >
> > 
> > Jag känner igen detta beteende. Speciellt om man har
> > USB-disken kopplad till en bärbar dator. Vissa datorer
> > lämnar helt enkelt inte den strömstyrka som disken behöver
> > för att fungera. Därför har vissa leverantörer skickat med
> > en speciell Y-kabel för att kunna ta kräm från två USB-
> > portar samtidigt.
> > 
> > Ett sätt att komma runt detta kan vara att koppla
> > disken till en USB-hubb med egen strömkälla.
> > 
> > /Ludde
> > 
> 
> Jo, fortsätter det att fungera med Y-kabeln blir det en hubb med
> matning.
> 
> Det mest förbryllande är att det har fungerat flera veckor men
> krånglade tre gånger idag.
> 

Fungerar fortfarande så det var nog så att den drog lite för mycket för
min ODROID.

Tack för visat intresse.
/Janne



Re: no SMART support for western digital drive

2015-11-16 Thread Jonathan Dowland
On Mon, Nov 16, 2015 at 12:17:20AM -0500, kamaraju kusumanchi wrote:
> The hard drive is placed in a Dual Bay external hard drive docking
> station which is connected via USB to my computer. Is that a problem?

Yes.
 
> Is my only option to connect this hard drive internally? How does one
> check the health of a drive connected via USB?

Some USB<->SATA bridge devices support SMART, but many do not. smartctl
knows how to query SMART parameters for some USB bridges:

https://www.smartmontools.org/wiki/Supported_USB-Devices

In your case, either the bridge doesn't support it, or smartctl does not
know how to query SMART via that particular bridge (but could perhaps be
taught how to by a suitably talented programmer).



Re: adobe flash player in iceweasel does not work anymore in jessie

2015-11-16 Thread Staszek
On 2015-08-03 12:40, Staszek wrote:
> Hi
> 
> I have upgraded from Wheezy to Jessie and my Adobe Flash Player in
> Iceweasel stopped working:
> 
> $ iceweasel
> 
> (process:6255): GLib-CRITICAL **: g_slice_set_config: assertion
> 'sys_page_size == 0' failed
> 
> ###!!! [Parent][MessageChannel::Call] Error: Channel timeout: cannot
> send/recv
> 
> $
> 
> When on Wheezy, I installed it manually by just copying
> libflashplayer.so to .mozilla/plugins .
> It doesn't work anymore, why?
> 
> Thanks!
> 
> I prefer to avoid non-free, therefore I created a separate user for
> libflashplayer.so which I downloaded from adobe.com. The page:
> http://www.adobe.com/uk/software/flash/about/ shows that I am having the
> latest version installed (11.2.202.491).

It seems to have been a problem with sound. The videos didn't play at
all, but once I configured pulseaudio for multiple users (enabling sound
for the Flash Player user):
http://billauer.co.il/blog/2014/01/pa-multiple-users/ it just works.

You can use pam_supair: https://github.com/sfindeisen/pam_supair PAM
module for a quick su (without a password).

BTW does anybody know how to configure pulseaudio for multiple users
using UNIX sockets (instead of TCP sockets)?

-- 
http://people.eisenbits.com/~stf/
http://www.eisenbits.com/

OpenPGP: 9EC2 5620 2355 B1DC 4A8F  8C79 0EC7 C214 E5AE 3B4E



Re: no SMART support for western digital drive

2015-11-16 Thread Christoph Anton Mitterer
On Mon, 2015-11-16 at 09:34 +, Jonathan Dowland wrote:
> https://www.smartmontools.org/wiki/Supported_USB-Devices
But note that Debian's smartmontools are pretty outdated and many USB
bridges supported already in the newest version won't work in Debian.

Cheers,
Chris.

smime.p7s
Description: S/MIME cryptographic signature


Re: Trobada 2015. Girona 21 Novembre

2015-11-16 Thread Narcis Garcia
Per experiència puc dir que donant voltes així podem estar fins
divendres, i això fa que la gent es programi altres coses més segures
pel cap de setmana.
Al GiLUG ningú no diu res més.
Ara resulta que l'hora preferida són les 14h, però la franja més votada
és des de les 11:00 fins les 14:59h. A més a més, aquesta franja és la
única que no té cap creueta en contra (a partir de les 15h ja sí).

El missatge que percebo és que a tots els votants els va bé quedar-se a
dinar o arribar fins l'hora de dinar.
Proposo convocar JA per les 11:00h, acabar amb qui vulgui dinar plegats,
i també durant la sobretaula n'hi ha que marxaran i n'hi ha que es quedaran.

Estic proposant donar JA el tema per tancat, i repartir el cartell que
es va enviar, però rectificant les hores per 11,12,13 i 15:

http://llista.gilug.org/pipermail/usuaris/2015-November/005312.html


__
I'm using this express-made address because personal addresses aren't
masked enough at lists.debian.org archives.

El 16/11/15 a les 08:08, Mònica Ramírez Arceda ha escrit:
> Narcis Garcia  writes:
> 
>> L'horari s'ha obert una mica amb el vot de l'Alba:
>> Ara tant hi ha la possibilitat de començar a les 11 com a les 14h:
>>
>> https://dudle.inf.tu-dresden.de/debian-catalan-2015-hora/
>>
>> Suposo que avui seria un bon dia per donar el «cartell» per tancat.
> 
> A veure, tinc dubtes de si la gent que ha posat que li va bé a les 14 i
> no li va bé a les 15 o les 16, vol dir que a les 15 o 16 marxarà o que
> creu que començar a aquella hora és massa tard... (Ara veig que hauria
> d'haver fet l'enquesta amb intervals horaris :( )
> 
> Veig que l'Alba ha posat un interrogant a les 11. Alba, quan podries
> confirmar si pots o no a les 11?
> 
> Si l'Alba pogués a les 11, podríem quedar a aquesta hora, fer la trobada
> al matí i després anar a dinar junts.
> 
> Si el que guanya són les 14, podríem quedar per dinar i fer la trobada
> després, però aquesta solució se'm fa una mica rara...
> 
> Salut!
> 



Re: no SMART support for western digital drive

2015-11-16 Thread Dominique Dumont
On Monday 16 November 2015 00:17:20 kamaraju kusumanchi wrote:
> The hard drive is placed in a Dual Bay external hard drive docking
> station which is connected via USB to my computer. Is that a problem?

Probably.

smartctl man page gives some hint. See --device option

Use lsusb (may be with -v option) to find the type of usb bridge you have.

HTH

-- 
 https://github.com/dod38fr/   -o- http://search.cpan.org/~ddumont/
http://ddumont.wordpress.com/  -o-   irc: dod at irc.debian.org



Layer 7 no Jessie

2015-11-16 Thread Listeiro 037

Saudações.

Vi uma pergunta em outro lugar sobre IPTables com Layer 7.
Como está funcionando Layer 7 no firewall?
Os textos que encontrei são antigos.
E pelo que o cara do tópico parece dizer, por algum motivo não funciona
nos atuais kernels.

Desde já agradeço.



Re: Your attempts to communicate

2015-11-16 Thread Thomas Schmitt
Hi,

Lisi Reisz wrote:
> My email client chokes on your signature.

My alpine mail client showed a warning about MIME signature,
probably because of:

  Content-Type: multipart/signed; micalg="sha-512";
protocol="application/x-pkcs7-signature";
boundary="=-q9gdJ6oE7VoDos3CeFlt"


> As he does not use a proper delimiter he doesn't really have a
> signature.  His messages end with
> Cheers,
> Chris

In the mailbox file i do see that part and its MIME headers:

  Cheers,
  Chris
  --=-q9gdJ6oE7VoDos3CeFlt
  Content-Type: application/x-pkcs7-signature; name="smime.p7s"
  Content-Disposition: attachment; filename="smime.p7s"
  Content-Transfer-Encoding: base64

  ...base64.blob...

alpine shows the message, but not the second MIME part.
Strange ...


Have a nice day :)

Thomas