Re: Wine y puertos usb[solucionado]
On Monday 08 August 2011 5:53:28 pm Angel Claudio Alvarez wrote: > El lun, 08-08-2011 a las 13:18 -0430, Alejandro Garcia escribió: > > Ante todo un cordial saludo. > > > > Antes que todo he googleado un poco la siguiente url que encontre: > > > > http://wiki.winehq.org/USB > > > > allí explican como generar un path para wine corra los puertos usb. > > > > ok tengo instalado debian lenny en el equipo que quiero correr el puerto > > usb y tengo wine 1.2 instalado. > > > > descargo los 2 archivos *.txt y lanzo el comando path del primero el > > cual es: > > > > patch -p1 < 0001*.txt > > > > y cuando lo ejecuto lo que no entiendo bien es esto: > > > > can't find file to patch at input line 40 > > Perhaps you used the wrong -p or --strip option? > > The text leading up to this was: > > Me parece que no tenes idea de lo que estas haciendo > lo que intentas hacer es parchear un codigo fuente > patch se utiliza para eso > man patch > > Vos no tenes el codigo fuente, ya que decis que tenes instalado wine > por lo tanto el mensaje es correcto ( si no entendes ingles utiliza el > traductor de google que es basstante confiable) > Si todavia queres hacer eso vas a tener que desinstalar el paquete wine > bajarte los fuentes de wine ( presta atencion cual es la version que > patchea), parchearlo y despues compilarlo > Para eso te sugiero que empieces por el readme de los fuentes de wine > para ver las opciones de compilacion > En resumen: vas a tener que leer, leer y leer De hecho lo compile y lo instale con el parche ya me di cuenta leyendo un poco mas detenidamente es algo estresante cuando le piden tener algo listo en poco tiempo. Aunque la compilacion me tardo bastante en este equipo.. Gracias. -- 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/201108081905.43738.alejandro18044...@gmail.com
Re: Wine y puertos usb
El lun, 08-08-2011 a las 13:18 -0430, Alejandro Garcia escribió: > Ante todo un cordial saludo. > > Antes que todo he googleado un poco la siguiente url que encontre: > > http://wiki.winehq.org/USB > > allí explican como generar un path para wine corra los puertos usb. > > ok tengo instalado debian lenny en el equipo que quiero correr el puerto usb > y > tengo wine 1.2 instalado. > > descargo los 2 archivos *.txt y lanzo el comando path del primero el cual es: > > patch -p1 < 0001*.txt > > y cuando lo ejecuto lo que no entiendo bien es esto: > > can't find file to patch at input line 40 > Perhaps you used the wrong -p or --strip option? > The text leading up to this was: Me parece que no tenes idea de lo que estas haciendo lo que intentas hacer es parchear un codigo fuente patch se utiliza para eso man patch Vos no tenes el codigo fuente, ya que decis que tenes instalado wine por lo tanto el mensaje es correcto ( si no entendes ingles utiliza el traductor de google que es basstante confiable) Si todavia queres hacer eso vas a tener que desinstalar el paquete wine bajarte los fuentes de wine ( presta atencion cual es la version que patchea), parchearlo y despues compilarlo Para eso te sugiero que empieces por el readme de los fuentes de wine para ver las opciones de compilacion En resumen: vas a tener que leer, leer y leer -- 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/1312842208.2563.5.ca...@gabita2.angel-alvarez.com.ar
Re: Wine y puertos usb
El Mon, 8 Aug 2011 13:18:15 -0430 Alejandro Garcia va dir: > Ante todo un cordial saludo. > > Antes que todo he googleado un poco la siguiente url que encontre: > > http://wiki.winehq.org/USB > > allí explican como generar un path para wine corra los puertos usb. > > ok tengo instalado debian lenny en el equipo que quiero correr el puerto usb > y > tengo wine 1.2 instalado. > > descargo los 2 archivos *.txt y lanzo el comando path del primero el cual es: > > patch -p1 < 0001*.txt > > y cuando lo ejecuto lo que no entiendo bien es esto: > > can't find file to patch at input line 40 > Perhaps you used the wrong -p or --strip option? > The text leading up to this was: > -- > |From 74ddb6b08059d2a6fcadadb646509a2a54e80c13 Mon Sep 17 00:00:00 2001 > |From: Alexander Morozov > |Date: Mon, 16 Feb 2009 13:00:33 +0300 > |Subject: [PATCH 1/2] Add support of native Windows drivers for USB tokens. > | > |--- > | configure.ac| 14 + > | dlls/hal/hal.c |6 + > | dlls/hal/hal.spec |2 +- > | dlls/mountmgr.sys/device.c | 19 +- > | dlls/mountmgr.sys/mountmgr.c| 76 ++- > | dlls/ntoskrnl.exe/Makefile.in |2 +- > | dlls/ntoskrnl.exe/ntoskrnl.c| 1157 > --- > | dlls/ntoskrnl.exe/ntoskrnl.exe.spec | 58 +- > | dlls/usbd.sys/Makefile.in | 15 + > | dlls/usbd.sys/usbd.c| 138 + > | dlls/usbd.sys/usbd.sys.spec | 35 ++ > | dlls/usbhub.sys/Makefile.in | 16 + > | dlls/usbhub.sys/usbhub.c| 541 > | dlls/usbhub.sys/usbhub.sys.spec |1 + > | include/cfgmgr32.h |1 + > | include/ddk/ntddk.h | 11 + > | include/ddk/wdm.h | 101 +++- > | programs/winedevice/device.c| 302 -- > | server/device.c | 25 + > | server/protocol.def |9 + > | tools/wine.inf.in |9 + > | 21 files changed, 2342 insertions(+), 196 deletions(-) > | create mode 100644 dlls/usbd.sys/Makefile.in > | create mode 100644 dlls/usbd.sys/usbd.c > | create mode 100644 dlls/usbd.sys/usbd.sys.spec > | create mode 100644 dlls/usbhub.sys/Makefile.in > | create mode 100644 dlls/usbhub.sys/usbhub.c > | create mode 100644 dlls/usbhub.sys/usbhub.sys.spec > | > |diff --git a/configure.ac b/configure.ac > |index 57ec39d..96414af 100644 > |--- a/configure.ac > |+++ b/configure.ac > -- > File to patch: > Skip this patch? [y] y > Skipping patch. > 3 out of 3 hunks ignored > can't find file to patch at input line 79 > Perhaps you used the wrong -p or --strip option? > The text leading up to this was: > -- > |diff --git a/dlls/hal/hal.c b/dlls/hal/hal.c > |index 82ba80c..5d8d9f8 100644 > |--- a/dlls/hal/hal.c > |+++ b/dlls/hal/hal.c > -- > File to patch: > Skip this patch? [y] y > Skipping patch. > 1 out of 1 hunk ignored > can't find file to patch at input line 93 > Perhaps you used the wrong -p or --strip option? > The text leading up to this was: > -- > |diff --git a/dlls/hal/hal.spec b/dlls/hal/hal.spec > |index 83eedea..13f9717 100644 > |--- a/dlls/hal/hal.spec > |+++ b/dlls/hal/hal.spec > -- > File to patch: > Skip this patch? [y] y > Skipping patch. > 1 out of 1 hunk ignored > can't find file to patch at input line 106 > Perhaps you used the wrong -p or --strip option? > The text leading up to this was: > -- > |diff --git a/dlls/mountmgr.sys/device.c b/dlls/mountmgr.sys/device.c > |index 0467079..0639aa9 100644 > |--- a/dlls/mountmgr.sys/device.c > |+++ b/dlls/mountmgr.sys/device.c > -- > File to patch: > Skip this patch? [y] y > Skipping patch. > 3 out of 3 hunks ignored > can't find file to patch at input line 166 > Perhaps you used the wrong -p or --strip option? > The text leading up to this was: > -- > |diff --git a/dlls/mountmgr.sys/mountmgr.c b/dlls/mountmgr.sys/mountmgr.c > |index 00112b9..04baba1 100644 > |--- a/dlls/mountmgr.sys/mountmgr.c > |+++ b/dlls/mountmgr.sys/mountmgr.c > -- > File to patch: > Skip this patch? [y] y > Skipping patch. > 3 out of 3 hunks ignored > can't find file to patch at input line 278 > Perhaps you used the wrong -p or --strip option? > The text leading up to this was: > -- > |diff --git a/dlls/ntoskrnl.exe/Makefile.in b/dlls/ntoskrnl.exe/Makefile.in > |index 0dad8c3..d6d8540 100644 > |--- a/dlls/ntoskrnl.exe/Makefile.in > |+++ b/dlls/ntoskrnl.exe/Makefile.in > -- > File to patch: > Skip this patch? [y] y > Skipping patch. > 1 out of 1 hunk ignored > can't find file to patch at input line 291 > Perhaps you used the wrong -p or --strip option? > The text leading up to this was: >
Wine y puertos usb
Ante todo un cordial saludo. Antes que todo he googleado un poco la siguiente url que encontre: http://wiki.winehq.org/USB allí explican como generar un path para wine corra los puertos usb. ok tengo instalado debian lenny en el equipo que quiero correr el puerto usb y tengo wine 1.2 instalado. descargo los 2 archivos *.txt y lanzo el comando path del primero el cual es: patch -p1 < 0001*.txt y cuando lo ejecuto lo que no entiendo bien es esto: can't find file to patch at input line 40 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -- |From 74ddb6b08059d2a6fcadadb646509a2a54e80c13 Mon Sep 17 00:00:00 2001 |From: Alexander Morozov |Date: Mon, 16 Feb 2009 13:00:33 +0300 |Subject: [PATCH 1/2] Add support of native Windows drivers for USB tokens. | |--- | configure.ac| 14 + | dlls/hal/hal.c |6 + | dlls/hal/hal.spec |2 +- | dlls/mountmgr.sys/device.c | 19 +- | dlls/mountmgr.sys/mountmgr.c| 76 ++- | dlls/ntoskrnl.exe/Makefile.in |2 +- | dlls/ntoskrnl.exe/ntoskrnl.c| 1157 --- | dlls/ntoskrnl.exe/ntoskrnl.exe.spec | 58 +- | dlls/usbd.sys/Makefile.in | 15 + | dlls/usbd.sys/usbd.c| 138 + | dlls/usbd.sys/usbd.sys.spec | 35 ++ | dlls/usbhub.sys/Makefile.in | 16 + | dlls/usbhub.sys/usbhub.c| 541 | dlls/usbhub.sys/usbhub.sys.spec |1 + | include/cfgmgr32.h |1 + | include/ddk/ntddk.h | 11 + | include/ddk/wdm.h | 101 +++- | programs/winedevice/device.c| 302 -- | server/device.c | 25 + | server/protocol.def |9 + | tools/wine.inf.in |9 + | 21 files changed, 2342 insertions(+), 196 deletions(-) | create mode 100644 dlls/usbd.sys/Makefile.in | create mode 100644 dlls/usbd.sys/usbd.c | create mode 100644 dlls/usbd.sys/usbd.sys.spec | create mode 100644 dlls/usbhub.sys/Makefile.in | create mode 100644 dlls/usbhub.sys/usbhub.c | create mode 100644 dlls/usbhub.sys/usbhub.sys.spec | |diff --git a/configure.ac b/configure.ac |index 57ec39d..96414af 100644 |--- a/configure.ac |+++ b/configure.ac -- File to patch: Skip this patch? [y] y Skipping patch. 3 out of 3 hunks ignored can't find file to patch at input line 79 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -- |diff --git a/dlls/hal/hal.c b/dlls/hal/hal.c |index 82ba80c..5d8d9f8 100644 |--- a/dlls/hal/hal.c |+++ b/dlls/hal/hal.c -- File to patch: Skip this patch? [y] y Skipping patch. 1 out of 1 hunk ignored can't find file to patch at input line 93 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -- |diff --git a/dlls/hal/hal.spec b/dlls/hal/hal.spec |index 83eedea..13f9717 100644 |--- a/dlls/hal/hal.spec |+++ b/dlls/hal/hal.spec -- File to patch: Skip this patch? [y] y Skipping patch. 1 out of 1 hunk ignored can't find file to patch at input line 106 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -- |diff --git a/dlls/mountmgr.sys/device.c b/dlls/mountmgr.sys/device.c |index 0467079..0639aa9 100644 |--- a/dlls/mountmgr.sys/device.c |+++ b/dlls/mountmgr.sys/device.c -- File to patch: Skip this patch? [y] y Skipping patch. 3 out of 3 hunks ignored can't find file to patch at input line 166 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -- |diff --git a/dlls/mountmgr.sys/mountmgr.c b/dlls/mountmgr.sys/mountmgr.c |index 00112b9..04baba1 100644 |--- a/dlls/mountmgr.sys/mountmgr.c |+++ b/dlls/mountmgr.sys/mountmgr.c -- File to patch: Skip this patch? [y] y Skipping patch. 3 out of 3 hunks ignored can't find file to patch at input line 278 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -- |diff --git a/dlls/ntoskrnl.exe/Makefile.in b/dlls/ntoskrnl.exe/Makefile.in |index 0dad8c3..d6d8540 100644 |--- a/dlls/ntoskrnl.exe/Makefile.in |+++ b/dlls/ntoskrnl.exe/Makefile.in -- File to patch: Skip this patch? [y] y Skipping patch. 1 out of 1 hunk ignored can't find file to patch at input line 291 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -- |diff --git a/dlls/ntoskrnl.exe/ntoskrnl.c b/dlls/ntoskrnl.exe/ntoskrnl.c |index 0dc9aaf..947f971 100644 |--- a/dlls/ntoskrnl.exe/ntoskrnl.c |+++ b/dlls/ntoskrnl.exe/ntoskrnl.c -- File to patch: Skip this patch? [y] y Skipping patch. 38 out of 38 hunks ignored can't find file to patch at input line 178