Apple iPad

Solución el iPad no carga conectado al PC (Windows – Ubuntu)

¿Eres de los que tiene un iPad y no puedes cargarlo desde tu PC de sobremesa o portátil?, este problema por fin tiene solución.

Gigabyte dispone de una aplicación llamada On-OFFCharger, que a pesar de estar pensada para placas Gigabyte, funciona en pcs de otras marcas.

Yo lo he probado en un ultraportátil (el Acer Aspire One D255) y funcionó a la primera, sólo hay que descargar el programa desde aquí, al ejecutarlo se descomprime, y se instala rápidamente, una vez terminado reinicias, conectas el iPad al pc o portátil y voila, si todo va bien desaparecerá el mensaje de No se está cargando y verás como empieza a cargar el iPad.

El programa se carga automáticamente al iniciar Windows y no hay que configurar nada.

Si esta solución no te funciona, existe otra aplicación que se llama i-charger creada por MSI, pruébala.

Dime si te ha funcionado, saludos.

Siendo usuario de ubuntu busque la solución para mi sistema operativo.

La encontre en este link tan solo instalando un programa:

http://ubuntuguide.net/how-to-charge-ipad-on-ubuntu-linux-via-usb-ports

For charing iPad via USB ports, corresponding patches for Windows system has come out. In Ubuntu Linux there’s a small program created by Ondrej Zary from Rainbow-Software make it works as well.

There only provides a .tar.gz source package, so following is a compiling way to install this program on Ubuntu(works for both 32-bit & 64-bit).

1.) Download the source file from rainbow-software. Then extract the package.

If you’re luckily running a 64-bit Ubuntu, just download and install the deb from ipad-charge-1.0_20101231-1_amd64.deb.zip and ignore following.

2.) Install the dependences. It depends Linux, GCC, Make, libusb-1.0(look up the README file) and for Ubuntu we just need to install libusb-1.0

sudo apt-get install libusb-1.0.0 libusb-1.0.0-dev

Or you can install the packages from System -> Administration -> Synaptic Package Manager. Don’t forget the dev package, or you’ll get “can’t find /usr/include/libusb-1.0/libusb.h” similar error in make output.

3.) Now compile and install the program. Navigate to the extracted directory and do make & make install:

cd Downloads/ipad_charge_1.0
make
sudo make install

If you get the similar error output after make command:

gcc -Wall -Wextra ipad_charge.c -lusb -o ipad_charge

collect2: ld returned 1 exit status
make: *** [ipad_charge] Error 1

just edit “Makefile” (you can find it under ipad_charge_1.0 directory), and add a -1.0 after lusb in the second line to make it look likes:

gcc -Wall -Wextra ipad_charge.c -lusb-1.0 -o ipad_charge

Done! It should work automatically when you plug-in usb with iPad, and read README for more about usage.

Actualización

Pasos resumidos:

sudo apt-get install libusb-1.0-0 libusb-1.0-0-dev
wget –no-check-certificate https://github.com/downloads/mkorenkov/ipad_charge/ipad_charge_1.0.tar.gz
tar -xzf ipad_charge_1.0.tar.gz
cd ./ipad_charge_1.0
make
sudo make install

Fuente:

configurarequipos.com

Similar Posts

4 thoughts on “Solución el iPad no carga conectado al PC (Windows – Ubuntu)

Leave a Reply to julio Cancel reply

Your email address will not be published. Required fields are marked *