16

There is a thing which is called miracast, it can mirror the display of the Android phone to another monitor, but my screen doesn't have this function, am I possible to do it in Ubuntu?

Pablo Bianchi
  • 15,657
JulianLai
  • 1,572

6 Answers6

7

Scrcpy

Scrcpy is an open source alternative that sounds promising, but I get across this bug. I didn't want to use TeamViewer, LogMeIn or AirDroid.

This alternative also let you remotely use the phone from Ubuntu.

  1. Install adb: sudo apt install adb.
  2. Install scrcpy (if you meet the requirements): brew install scrcpy (yes, brew) or apt install scrcpy.
  3. Enable adb debugging, the device should be listed on adb devices. Maybe you need to move to PTP and a little more.

When you get the message the Allow USB debugging? The computer's RSA key fingerprint is: [a fingerprint] is possible to check it with following command (the public key might be in ~/.android or ~/snap/scrcpy/current/.android/):

cut -d" " -f1 adbkey.pub | openssl base64 -A -d -a | openssl md5 -c

Also, scrcpy --help:

The project is very active, keep track of releases and update often.

If you like GUIs, try guiscrcpy (source), a scrcpy front-end written in Python pip3 install --upgrade guiscrcpy --user. Maybe some day will be the open source alternative to Microsoft's Your Phone.

Screen Stream over HTTP

A nice open source alternative, also on F-Droid.

screenshot

LiveScreen

Easy and no sign up crap. Just install it and on the app switch screen sharing on:

screenshot

Then on your browser (hopefully Firefox, or Brave) pointing to your mobile's IP:

screenshot

Furthermore

Pablo Bianchi
  • 15,657
3

You can use Teamviewer (sign-up needed)

  1. download it for your computer here.
  2. download Teamviewer host for your phone here

you will get a secure connection between them and are able to control the screen and phone fully.

Pablo Bianchi
  • 15,657
patrick
  • 513
1

I was able to do it easily with Ashot. It's an open source project, programmed in Java, so you just download and run (assuming you have Android Studio already set up).

When you extract the folder, run java -jar AShot-1.1.jar. It will ask you for the Android SDK. Browse to it, and select your path (something like /home/yourUserName/Android/Sdk/). It should connect automatically and display the Android screen that is connected via USB. If you get an error in connection, copy the adb executable from platform-tools/ to tools/ and try again.

To copy:

cd Android/Sdk
cp platform-tools/adb tools/

It has a slight delay, so it's not good for streaming video, but good enough for presentations.

lenooh
  • 2,092
0

Screen Stream is another app that can do this. You install the app on your Android device, and then connect to it through wifi (or optionally 3G) from your PC using a normal webbrowser.

Internally, the app captures the screen and sends it as a MJPEG stream to the browser. It is not super-fast, so unsuitable for video, but it works well enough for showing other stuff.

The app is open source and available from F-droid and the normal Google Play Store

0

WIRELESS OVER WIFI:

basic command from https://www.genymotion.com/blog/open-source-project-scrcpy-now-works-wirelessly/ (you can read more details and tips there):

# you need to have pc's adb and scrcpy working already thru usb cable on your android
# connect both the pc and your android in the same wifi
adb tcpip 5555
adb connect 192.168.0.123:5555 #get the IP from your WIFI settings on your android
scrcpy

#to undo adb usb

0

There is a Google Cast app for your Android phone you need to download.

Google Cast Extension for Chrome is discontinued because of remotedesktop.google.com.

Pablo Bianchi
  • 15,657