Run a VNC server on Android device

来源:互联网 发布:lego moc 搭建软件 编辑:程序博客网 时间:2024/05/18 03:30

- Download a VNC application

  . http://code.google.com/p/fastdroid-vnc/

  . http://code.google.com/p/android-vnc-server/


- Get root permission of the Android device

- Push the application to your device via adb

  > adb shell

      $ su

      # chmod 666 /data

  > adb push fastdroid-vnc /data
  > adb push androidvncserver /data
  > adb shell chmod 755 /data/fastdroid-vnc
  > adb shell chmod 755 /data/androidvncserver
  > adb shell /data/fastdroid-vnc -t /dev/input/event0 &
  > adb shell /data/androidvncserver -t /dev/input/event0 &



原创粉丝点击