Difference between revisions of "Android: ScreenCast di Komputer Menggunakan sevensquare"

From OnnoWiki
Jump to navigation Jump to search
(New page: Sumber: http://www.upubuntu.com/2015/09/screencastingmirroring-android-device.html In this tutorial, we will see how to control any Android device remotely on your Ubuntu/Linux Mint deskt...)
 
Line 1: Line 1:
 
Sumber: http://www.upubuntu.com/2015/09/screencastingmirroring-android-device.html
 
Sumber: http://www.upubuntu.com/2015/09/screencastingmirroring-android-device.html
  
In this tutorial, we will see how to control any Android device remotely on your Ubuntu/Linux Mint desktop using both your mouse and keyboard. To do this, we will use the Seven Square tool which will allow you to view your Android device (smartphone, tablet, etc.) screen directly on your computer or laptop.
+
Berikut ini adalah catatan tentang bagaimana menginstalasi sevensquare, sebuah aplikasi yang memungkinkan ubuntu / mint untuk meremote android device. Keyboard & mouse linux akan dapat me-remote android device.
  
 +
Pastikan adb tools di instalasi, menggunakan perintah,
  
With your keyboard or mouse, you will be able to control your device remotely without the need to tap on the screen of your Android device. Before we start, make sure you have ADB tools installed on your system. If not, run this command from the terminal:
+
sudo apt-get install android-tools-adb
  
    sudo apt-get install android-tools-adb
+
Instalasi sevensquare berbasis QT, instalasi dependensi menggunakan,
  
 +
sudo apt-get install qt4-qmake libqt4-dev libqtcore4 libqtgui4
  
Installation
+
Install sevensquare menggunakan perintah berikut,
 
 
Seven Square is based on QT, so install these dependencies:
 
 
 
    sudo apt-get install qt4-qmake libqt4-dev libqtcore4 libqtgui4
 
 
 
 
 
Now install the tool using these commands:
 
  
 
  sudo su
 
  sudo su
Line 25: Line 20:
 
  sudo make install
 
  sudo make install
  
 +
Sambungkan android device ke komputer melalui USB, pastikan android tersambung menggunakan perintah
  
Connect your Android device to your computer via USB cable and ensure it is connected using "adb devices" command. Also, make sure USB debugging is enabled on your device:
+
adb devices
 
 
 
 
Then start Seven Square using this command:
 
 
 
    seven-square
 
 
 
 
 
Wait now until your Android device screen shows up:
 
 
 
  
 +
Pastikan juga USB debugging enable di device kita.
  
 +
Jalankan sevensquare, menggunakan perintah
  
 +
seven-square
  
 +
tunggu sampai android device screen tampil.
  
  

Revision as of 07:50, 3 April 2017

Sumber: http://www.upubuntu.com/2015/09/screencastingmirroring-android-device.html

Berikut ini adalah catatan tentang bagaimana menginstalasi sevensquare, sebuah aplikasi yang memungkinkan ubuntu / mint untuk meremote android device. Keyboard & mouse linux akan dapat me-remote android device.

Pastikan adb tools di instalasi, menggunakan perintah,

sudo apt-get install android-tools-adb

Instalasi sevensquare berbasis QT, instalasi dependensi menggunakan,

sudo apt-get install qt4-qmake libqt4-dev libqtcore4 libqtgui4

Install sevensquare menggunakan perintah berikut,

sudo su
cd /usr/local/src
git clone https://github.com/yangh/sevensquare.git 
cd sevensquare 
make 
sudo make install

Sambungkan android device ke komputer melalui USB, pastikan android tersambung menggunakan perintah

adb devices

Pastikan juga USB debugging enable di device kita.

Jalankan sevensquare, menggunakan perintah

seven-square

tunggu sampai android device screen tampil.


Referensi