Ir al contenido principal

Usar tu android desde el PC mediante VNC

El motivo de este manual es para que mi novia pueda usar whatsapp sin cantearse en el trabajo y que no la despidan :) Aunque seguramente tambien sirva para automatizar tareas en el movil en combinacion con Sikuli, pero eso es otra historia.

Antes de nada hay que advertir que el movil debe estar rooteado, y para eso hay que seguir una de las mil guias que circulan por internet.

Bueno, los pasos son:
  1. Te bajas este archivo vnc.zip
  2. Lo descomprimes en la carpeta que mas te apetezca, para entendernos pongamos que la llamamos vnc
  3. En el movil instalas la aplicacion droid VNC server
  4. Una vez instalada la arrancas y le das a un boton enorme que pone "Start server"
Ahora hay dos opciones:
  • Si tu movil y tu ordenador estan conectados a una red wifi
    1. Inicias el programa vncviewer.exe, que se encuentra dentro de la carpeta vnc que descomprimimos antes, y donde pide la direccion escribes la que pone debajo del boton "Stop server"
  • Si no tienes wifi
    1. Conecta tu movil (no en modo de almacenamiento masivo) al ordenador, es decir, enchufalo y no toques nada
    2. Ejecuta el programa runme.bat que viene en la carpeta vnc
    3. Ejecuta el programa vncviewer y ahora apuntalo a la direccion localhost:5901
Bueno pues eso es todo, ahora podeis controlar completamente el movil desde el ordenador, usadlo con responsabilidad.

Extra: Youtube HOW-TO

Comentarios

Entradas populares de este blog

Use rclone to mount cloud storage

I realized that the fat clients that allows you to sync your contents are not only wasting CPU cycles but also lots of disk space. Yes, that enables you to have the file opened almost instantly, no matter its size, but for me that use case is almost never needed, I use the cloud storage to save stuff that is in the range of a few MiB. Here is where rclone comes into play, it allows you to mount your storage as if it were a regular disk, and it handles the communication with the cloud servers on the go. As there are many different combinations I'll cover only two Linux w/ Dropbox curl https://rclone.org/install.sh | bash # Use rclone config to add a new remote called db for dropbox MAIN_USER=$SUDO_USER MAIN_USER_HOME=$(grep ^$SUDO_USER: /etc/passwd | head -1 | cut -d: -f6) mkdir /media/db chown $MAIN_USER:$MAIN_USER /media/db cat <<EOF > /lib/systemd/system/rclone-db.service [Unit] Description=Dropbox rclone mount After=multi-user.targetrclone [Service] Type=simple User=$ M...