当前位置:网站首页>Raspberry pie environment settings
Raspberry pie environment settings
2022-06-22 20:27:00 【Love Mai forever】
One . Linux System raspberry pie environment configuration
1. download
Raspbian Stretch with desktop and recommended software: With graphical desktop and recommended software
Raspbian Stretch with desktop: Desktop with graphics
Raspbian Stretch Lite: The minimalist version

Formatting tool SDCardFormatterv5
Burning tools Raspberry Pi
2.SD Card format
3. Burn image raspberry pi choice CHOOSE OS
4. configure network
Plug in the cable
I will explain this method , There are many related articles on the Internet , You can check it yourself .
Use mobile hotspot
① On the computer , Open the burning image just now SD card
② stay boot Under the table of contents , Build a ssh Empty file
③ stay boot Under the table of contents , Create a text file first
④ open the text file , Copy the following into the text
country=CN
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1network={
ssid=“ Your wireless network name ”
psk=“ Your wireless password ”
key_mgmt=WPA-PSK
priority=1
}
among , take ssid Change the content of to the name of the mobile hotspot ,psk Change the content of to the password of the mobile phone hotspot .
⑤ Save the text just now , And change the name to wpa_supplicant.conf
⑥ Take out SD card , take SD Insert the card into the raspberry pie , Turn on the phone hotspot and connect the raspberry pie at the same time
⑦ You can check the raspberry pie on your mobile phone ip Address
Ubuntu The network configuration
① take Ubuntu The network connection mode is changed to bridge mode
② open Ubuntu Terminal , Use ifconfig
sudo apt install net-tools
ifconfig③ see Ubuntu Network card name of , It's usually ens33
④ modify Ubuntu Network profile
sudo nano /etc/network/interfaces Add the following informationauto lo
iface lo inet loopback
auto ens33
iface ens33 inet static
address 192.168.43.109
// The first three and windows Under the system IP The first three digits of the address are consistent , The latter one sets it by himself
netmask 255.255.255.0
// And windows The subnet masks under the system are consistent
gateway 192.168.43.1
// And windows The gateways under the system are consistentsudo nano /etc/resolv.conf Add the following information
nameserver 192.168.43.1
⑤ Restart the clientCreate new users
sudo useradd -m user name -s /bin/bash
sudo passwd user name
sudo adduser user name sudo
sudo nano /etc/sudoersAdd a user name ALL=(ALL:ALL) ALL( Realize that newly added users can use sudo)
install ssh
sudo apt install ssh
ps -e | grep sshRemote login ( Use another host under the same subnet )
① open Putty② Enter url
③ Enter your username and password
Two .PC Platform preparation Linux System
Use VMware install ubuntu System

link
Ubuntu And various remote logins for raspberry pie ——putty,VNC viewer
Raspberry pie doesn't need a display VNC Viewer Remote connection by
边栏推荐
- 基于Sentinel的高可用限流系统的Grafana报表展示
- Simple integration of client go gin 11 delete
- 元宇宙中的云计算,提升你的数字体验
- 【已解决】--go_out: protoc-gen-go: Plugin failed with status code 1.
- 天,靠八股文逆袭了啊
- Recv function with timeout
- Summary of 2019: 31 is just another start
- I wrote a telnet command myself
- Matplotlib set axis scale interval
- IVX no code challenge five second game production
猜你喜欢
随机推荐
CVPR 2022 Oral | 视频文本预训练新SOTA,港大、腾讯ARC Lab推出基于多项选择题的借口任务
[deeply understand tcapulusdb technology] tcapulusdb table management - modify table
Bubble sort, select sort, direct insert sort
【深入理解TcaplusDB技术】TcaplusDB 表管理——修改表
DynamicDatabaseSource,在应用端支持数据库的主从
leetcode.11 --- 盛最多水的容器
Please describe the whole process from entering a URL in the browser to rendering the page.
Three dimensional world helps the laboratory to consolidate the complete quality system management
用RNN & CNN进行情感分析 - PyTorch
Zabbix学习笔记(三十七)
[in depth understanding of tcapulusdb technology] getting started with MySQL driver
[deeply understand tcapulusdb technology] tcapulusdb table management - clean up table
芯和半导体“射频EDA/滤波器设计平台”闪耀IMS2022
[deeply understand tcapulusdb technology] tcapulusdb table management - create a new table
MySQL基础——函数
Hash table (hash table)
[deeply understand tcapulusdb technology] view the online operation of tcapulusdb
[in depth understanding of tcaplus DB technology] getting started tcaplus SQL driver
年中大促 | 集成无忧,超值套餐 6 折起
跨域 CORS/OPTIONS










