本文主要是介绍OrangePiKunPengPro | WiFi连接测试,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
OrangePiKunPengPro
| WiFi
连接测试
时间:2024年9月1日16:20:18
文章目录
- `OrangePiKunPengPro` | `WiFi`连接测试
- 1.参考
- 2.实践
- 2-1.扫描周围的 `WIFI` 热点
- 2-2.连接`WiFi`
- 2-3.演示
- 2-4.软件安装
- 2-4-1.`nmap`安装
- 2-4-2.扫描本地开放的端口
- 2-4-3.安装`tree`命令
- 2-4.`SSH`登录开发板
- 2-5.安装`goAhead`服务器
- 2-5-1.下载代码
1.参考
1.OrangePiKunPengPro | WiFi连接测试-CSDN博客
2.OrangePi KunPengPro | 开发板开箱测评之学习与使用_orange pi开发板使用教程-CSDN博客
3.OrangePi KunPengPro | linux系统下挂载U盘_linux u盘挂载位置-CSDN博客
4.OrangePi KunPengPro | linux系统下软件包管理_orangepi 软件包管理-CSDN博客
2.实践
2-1.扫描周围的 WIFI
热点
[root@openEuler /]# nmcli dev wifi
2-2.连接WiFi
[root@openEuler /]# sudo nmcli dev wifi connect WiFi名称 password WiFi密码
2-3.演示
2-4.软件安装
2-4-1.nmap
安装
[root@openEuler /]# yum install nmap
2-4-2.扫描本地开放的端口
[root@openEuler /]# nmap localhost
[root@openEuler /]# yum install nmap
OS 13 kB/s | 3.8 kB 00:00
everything 16 kB/s | 3.8 kB 00:00
EPOL 5.6 kB/s | 3.0 kB 00:00
debuginfo 18 kB/s | 3.8 kB 00:00
source 3.1 kB/s | 3.8 kB 00:01
update 16 kB/s | 3.5 kB 00:00
update 6.7 MB/s | 29 MB 00:04
update-source 16 kB/s | 3.5 kB 00:00
update-source 1.1 MB/s | 936 kB 00:00
Dependencies resolved.
================================================================================Package Architecture Version Repository Size
================================================================================
Installing:nmap aarch64 2:7.92-8.oe2203sp3 update 5.8 MTransaction Summary
================================================================================
Install 1 PackageTotal download size: 5.8 M
Installed size: 24 M
Is this ok [y/N]: y
Downloading Packages:
nmap-7.92-8.oe2203sp3.aarch64.rpm 3.6 MB/s | 5.8 MB 00:01
--------------------------------------------------------------------------------
Total 3.6 MB/s | 5.8 MB 00:01
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transactionPreparing : 1/1 Installing : nmap-2:7.92-8.oe2203sp3.aarch64 1/1 Running scriptlet: nmap-2:7.92-8.oe2203sp3.aarch64 1/1 Verifying : nmap-2:7.92-8.oe2203sp3.aarch64 1/1 Installed:nmap-2:7.92-8.oe2203sp3.aarch64 Complete!
[root@openEuler /]# nmap localhost
Starting Nmap 7.92 ( https://nmap.org ) at 2024-09-01 16:44 CST
Nmap scan report for localhost (127.0.0.1)
Host is up (0.0000070s latency).
Other addresses for localhost (not scanned): ::1
Not shown: 997 closed tcp ports (reset)
PORT STATE SERVICE
22/tcp open ssh
8002/tcp open teradataordbms
8086/tcp open d-s-nNmap done: 1 IP address (1 host up) scanned in 0.21 seconds
2-4-3.安装tree
命令
[root@openEuler /]# yum install tree
Last metadata expiration check: 0:15:26 ago on 2024年09月01日 星期日 16时41分12秒.
Dependencies resolved.
================================================================================Package Architecture Version Repository Size
================================================================================
Installing:tree aarch64 2.0.4-2.oe2203sp3 OS 53 kTransaction Summary
================================================================================
Install 1 PackageTotal download size: 53 k
Installed size: 175 k
Is this ok [y/N]: y
Downloading Packages:
tree-2.0.4-2.oe2203sp3.aarch64.rpm 107 kB/s | 53 kB 00:00
--------------------------------------------------------------------------------
Total 106 kB/s | 53 kB 00:00
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transactionPreparing : 1/1 Installing : tree-2.0.4-2.oe2203sp3.aarch64 1/1 Verifying : tree-2.0.4-2.oe2203sp3.aarch64 1/1 Installed:tree-2.0.4-2.oe2203sp3.aarch64 Complete!
2-4.SSH
登录开发板
root@ThinkPad-FLY:~# ssh openEuler@192.168.43.216
2-5.安装goAhead
服务器
「讲解+图示」Linux下Goahead网页服务器的搭建与使用 (baidu.com)
goahead设备内嵌web——环境搭建_websopen 失败-CSDN博客
2-5-1.下载代码
[openEuler@openEuler web]$ git clone https://gitee.com/mirrors/GoAhead.git
Cloning into 'GoAhead'...
remote: Enumerating objects: 26151, done.
remote: Total 26151 (delta 0), reused 0 (delta 0), pack-reused 26151
Receiving objects: 100% (26151/26151), 24.72 MiB | 2.06 MiB/s, done.
Resolving deltas: 100% (19057/19057), done.
[openEuler@openEuler web]$ ls
GoAhead
[openEuler@openEuler web]$ pwd
/home/openEuler/project/web
这篇关于OrangePiKunPengPro | WiFi连接测试的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!