Raspberry Pi installation system ssh vnc mobile phone hotspot connection

First download the mirror on the Raspberry Pi official website

https://www.raspberrypi.org/downloads/

 

Download the appropriate version. Here is the raspbian system inserted into the SD card

It is recommended to use the SDformatter software to format the FAT format

Then use the WIN32 disk imager software image to copy to the left

Select U disk location on the right  

Note that the best mirror path does not carry Chinese

After the system is completed, the SD card is actually installed and inserted into the Raspberry Pi. Connect the monitor via HDIM and turn on

The second part without a monitor connected to the ssh vnc control system through the mobile phone hotspot

1. Delete the suffix name to the new ssh file in the boot folder and start the ssh service

2. Create a new wpa_supplicant.conf to boot, delete the suffix name and open it with Notepad

country = CN
ctrl_interface = DIR = / var / run / wpa_supplicant GROUP = netdev
update_config = 1
network = {
    ssid = "WiFi-A"
      psk = "12345678"
      key_mgmt = WPA-PSK
      priority = 1
}
Description and WiFi with different security Configuration example:
#ssid: network ssid
#psk: password
#priority: connection priority, the higher the number, the higher the priority (can not be a negative number)
#scan_ssid: need to specify this value when connecting to hidden WiFi 1
if your WiFi No password
network = {
      ssid = "your wireless network name (ssid)"
        key_mgmt = NONE
}

If your WiFi uses WEP encryption

network={

        ssid = "your wireless network name (ssid)"

        key_mgmt=NONE

        wep_key0 = "your wifi password"

}

If your WiFi uses WPA / WPA2 encryption

network={

        ssid = "your wireless network name (ssid)"

        key_mgmt=WPA-PSK

        psk = "your wifi password"

}

Save and exit Configure connection hotspot information

 

 

Third, connect to the ssh service remote login

Check the connected device ip through the Android terminal software of the mobile phone

 

Write to the host (H) point to confirm the successful connection Command window

sudo raspi-config to open the graphical window configuration

Set resolution

7 Advanced Options     Configure advanced settings

A5 Resolution        Set a specific screen resolution

--And open vnc

5 Interfacing Options  Configure connections to peripherals 

P3 VNC         Enable/Disable graphical remote access to your Pi using RealVNC

 

Initialize the connection 

Name pi

Password raspberry

 

Four, vnc

Download and install vnc software

Connect Raspberry Pi ip 

Initialize the connection 

Name pi

Password raspberry

Connect to see the visual interface

 

Guess you like

Origin www.cnblogs.com/wtadmirewxy/p/12677621.html