Advertisement
rabbitfighter007

Install Scrcpy phone mirror in Kali linux

Jun 9th, 2024
11
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | Cybersecurity | 0 0
  1. https://github.com/Genymobile/scrcpy/blob/master/doc/linux.md
  2.  
  3. First, you need to install the required packages:
  4.  
  5. # for Debian/Ubuntu:
  6.  
  7. sudo apt install ffmpeg libsdl2-2.0-0 adb wget \
  8. gcc git pkg-config meson ninja-build libsdl2-dev \
  9. libavcodec-dev libavdevice-dev libavformat-dev libavutil-dev \
  10. libswresample-dev libusb-1.0-0 libusb-1.0-0-dev
  11.  
  12. # Then clone the repo and execute the installation script (source):
  13.  
  14. git clone https://github.com/Genymobile/scrcpy
  15. cd scrcpy
  16. ./install_release.sh
  17.  
  18. # When a new release is out, update the repo and reinstall:
  19.  
  20. git pull
  21. ./install_release.sh
  22. To uninstall:
  23.  
  24. # To uninstall: sudo ninja -Cbuild-auto uninstall
  25.  
  26. # run from a terminal: scrcpy
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement