Showing posts with label Windows 10.how to. Show all posts
Showing posts with label Windows 10.how to. Show all posts

Thursday, January 3, 2019

Remote login Raspberry Pi using Windows 10 build-in SSH client

This post show how to login Raspberry Pi/Raspbian from Windows 10 using the build-in OpenSSH client.


With OpenSSH Client installed by default in Windows 10 April 2018 Update, there should be no setup needed in Windows side. If you cannot run ssh client, scroll to bottom to check if OpenSSH client installed.

In Raspberry Pi/Raspbian side, you only need to enable Interface of SSH in Raspberry Pi Configuration.


This video show how to. The Raspbian desktop is the Raspberry Pi via VNC view. The Command Prompt is what we run in Windows side using build-in ssh client,



Check if OpenSSH Client installed in Windows 10.
Setting -> Apps ->


Select Apps & Features and Manage optional features


Check if OpenSSH Client included in the list.


If not, click the Add a features.




Sunday, May 7, 2017

Try RASPBIAN JESSIE WITH PIXEL on x86 PC using VirtualBox/Windows 10


This video show how to download RASPBIAN JESSIE WITH PIXEL for x86, and install on Windows 10 with Oracle VirtualBox.


pixel_x86 image iso can be download here:
http://downloads.raspberrypi.org/pixel_x86/images/

Tuesday, March 22, 2016

Setup Bluetooth for Raspberry Pi 3/Raspbian Jessie, and pair/send file to Windows PC


To use the built-in Bluetooth of Raspberry Pi 3/Raspbian Jessie, we have to install some software:
$ sudo apt-get install pi-bluetooth
(it should be already installed in update Raspbian Jessie)
$ sudo apt-get install bluetooth bluez blueman

Then reboot.


This video show how to send/receive file between raspberry Pi 3/Raspbian Jessie and PC running Windows 10.


Tuesday, November 3, 2015

Raspberry Pi Bluetooth Serial Terminal, using HC-06 Bluetooth Module.


HC-06 is Bluetooth to UART Converter. This  post show how to config Raspberry Pi 2 running Raspbian Jessie, to connect HC-06 with serial port. Connect and log-in from Windows 10.

Connect HC-06 to Raspberry Pi GPIO connector:
RPi TXD - HC-06 RXD
RPi RXD - HC-06 TXD
RPi 3.3V - HC-06 VCC
RPi GND - HC-06 GND
*make sure your HC-06 is operate on 3.3V, NOT 5V.


By default, HC-06 work on 9600 baud. So we have to edit /boot/cmdline.txt in Raspberry Pi/Raspbian Jessie, to set 9600 baud.

in default:
dwc_otg.lpm_enable=0 console=ttyAMA0,115200 console=tty1 root=/dev/mmcblk0p2 rootfstype=ext4 elevator=deadline fsck.repair=yes rootwait

modify (with sudo right) default 115200 to 9600.
dwc_otg.lpm_enable=0 console=ttyAMA0,9600 console=tty1 root=/dev/mmcblk0p2 rootfstype=ext4 elevator=deadline fsck.repair=yes rootwait

Then you can connect and login from Windows 10 with Bluetooth.

This video show how to config Raspberry Pi, and log-in from Windows 10 using PuTTY. In this video, Raspberry Pi desktop is Remote Desktop Connection via WiFi. PuTTY run as Bluetooth Serial Terminal.




more:
- Android Bluetooth Terminal to login Raspberry Pi + HC-06

Saturday, October 10, 2015

Remote control Raspberry Pi from Windows 10 using Remote Desktop App

Updated@2016-06-15:
No longer work after Microsoft update Remote Desktop for Windows 10 recently.

Fortunately, Remote Desktop Connection to Raspberery Pi is still work:)

~ read "Microsoft Remote Desktop for Windows 10 updated, cannot connect RPi again ...!".

With Microsoft Remote Desktop app, you can remote control Raspberry Pi from Windows 10 PC.


In Raspberry Pi, install xrdp
$ sudo apt-get install xrdp

In Windows 10 Store, install Remote Desktop app by Microsoft Corporation.


Host:
Raspberry Pi 2 running Raspbian Jessie (2015-09-24) with XRDP installed
Client:
Windows 10, with Microsoft Remote Desktop App

Related:
- Remote Desktop Connection from Windows 10 to Raspberry Pi xrdp

Tuesday, September 22, 2015

Easy copy files between Raspberry and Windows, FileZilla Client


To copy files between Raspberry and Windows, FileZilla Client is suggested. FileZilla is a cross-platform graphical FTP, SFTP, and FTPS file management tool for Windows, Linux, Mac OS X, and more. With tons of intuitive tools, FileZilla helps you quickly move files between your computer and Web server (and also Raspberry Pi).

To transfer files between Windows and Raspberry Pi, FileZilla Client is needed to be installed on Windows. This video show how to download and install FileZilla Client, setup site for Raspberry Pi using SFTP - SSH protocol, and transfer file.

to Download FileZilla, visit: https://filezilla-project.org/

Monday, September 14, 2015

Find IP address of Raspberry Pi from Windows, use Advanced IP Scanner

Advanced IP Scanner is a free and fast network scanner allowing you to quickly retrieve information about network devices and get access to their various resources such as shared folders, HTTP, HTTPS, FTP, RDP and Radmin. The program does not require installation and has a simple and user-friendly interface. Advanced IP Scanner is widely used by system administrators and home users for network management and monitoring.

Advanced IP Scanner run on Windows 10 to find IP of Raspberry Pi


Related:
- Java example to find connected IPs in the same network


Thursday, September 10, 2015

Remote run Java on Raspberry Pi, host from NetBeans on Windows 10

This video show how to develop Java application with NetBeans IDE 8.0.2 running on Windows 10, create Remote Java SE platform, remote run/debug on Raspberry Pi/Raspbian Wheezy .




The following java code list system by calling System.getProperties().
package javaapplication14;

import java.util.Enumeration;
import java.util.Properties;

public class JavaApplication14 {

    public static void main(String[] args) {

        System.out.println("\nSystem Properties\n");
        System.out.println("=================\n");
        
        Properties properties = System.getProperties();
        System.out.println(properties.toString());
        System.out.println("\n");

        Enumeration<String> prop
                = (Enumeration<String>) properties.propertyNames();

        while (prop.hasMoreElements()) {
            String propName = prop.nextElement();
            System.out.println(
                    propName + " : "
                    + System.getProperty(propName));
        }
    }

}


How it run on Windows 10/Intel i5 vs Raspbian/Raspberry Pi 2.




Updated@2015-10-04: Appliable on Raspbian Jessie.

Tuesday, September 8, 2015

Windows 10 - how to find your WiFi IP and MAC address

To find your IP and MAC address in Windows 10:

- After WiFi connected. click on the WiFi icon on status bar, and click on "Network Settings"


- With NETWORK & INTERNET opened, and WiFi selected on left, scroll down.


- Click "Advanced options"


- Scroll down


- You can find your IP address in "IPv4 address", and MAC address in "Physical address".


Saturday, September 5, 2015

Remote Desktop Connection from Windows 10 to Raspberry Pi xrdp

This post show hoe to remote control Raspberry Pi from Windows 10, using Remote Desktop Connection.


In Raspberry Pi/Raspbian, install xrdp
$ sudo apt-get install xrdp


In Windows 10
- run Remote Desktop Connection
- Enter the IP address of your Pi, and click Connect
- Enter username and password to connect



Updated@2017-06-13:
VNC Server is now built-in to Raspberry Pi running RASPBIAN JESSIE WITH PIXEL. Please note that xrdp conflicts with the RealVNC server, so you shouldn’t install both at once.

This post show how to "Remote login Raspbian Jessie With Pixel using RealVNC Viewer from Windows".