云服务器搭建lamp的wordpress

news2024/12/15 8:47:01

Ubuntu系统搭建过程目录

  • 一、检查环境
    • 1.1 检查是否安装Apache
    • 1.2 检查是否安装Mysql
    • 1.3 检查是否安装PHP
  • 二、安装Apache
    • 截图
  • 三、安装Mysql
    • 3.1 安全安装配置
    • 3.2 修改权限和密码
    • 3.3 重启MySQL服务
  • 四、安装PHP
    • 4.1 测试
    • 截图
  • 五、下载并安装wordpress以及配置
    • 5.1 下载并解压移动
    • 5.2 创建wordpress数据库以及wordpress用户
    • 5.3 重启Apache和mysql

Wordpress推荐 PHP 7.4+ 以及 MySQL 版本 8.0+

一、检查环境

1.1 检查是否安装Apache

[root@huaweiyun:~]# systemctl status apache2
/ 或者
[root@huaweiyun:~]# apache2 -v

1.2 检查是否安装Mysql

[root@huaweiyun:~]# mysql --version
/ 或者
[root@huaweiyun:~]#systemctl status mysql

1.3 检查是否安装PHP

[root@huaweiyun:~]# php -v

二、安装Apache

[root@huaweiyun:~]# apt -y install apache2
[root@huaweiyun:~]# apache2 -v
Server version: Apache/2.4.41 (Ubuntu)
Server built:   2024-07-17T18:58:09

截图

三、安装Mysql

[root@huaweiyun:~]# apt -y install mysql-server
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following additional packages will be installed:
  libcgi-fast-perl libcgi-pm-perl libencode-locale-perl libevent-core-2.1
  libevent-pthreads-2.1-7 libfcgi-perl libhtml-parser-perl libhtml-tagset
  libhtml-template-perl libhttp-date-perl libhttp-message-perl libio-html
  liblwp-mediatypes-perl libmecab2 libtimedate-perl liburi-perl mecab-ipa
  mecab-ipadic-utf8 mecab-utils mysql-client-8.0 mysql-client-core-8.0 my
  mysql-server-8.0 mysql-server-core-8.0
Suggested packages:
  libdata-dump-perl libipc-sharedcache-perl libwww-perl mailx tinyca
The following NEW packages will be installed:
  libcgi-fast-perl libcgi-pm-perl libencode-locale-perl libevent-core-2.1
  libevent-pthreads-2.1-7 libfcgi-perl libhtml-parser-perl libhtml-tagset
  libhtml-template-perl libhttp-date-perl libhttp-message-perl libio-html
  liblwp-mediatypes-perl libmecab2 libtimedate-perl liburi-perl mecab-ipa
  mecab-ipadic-utf8 mecab-utils mysql-client-8.0 mysql-client-core-8.0 my
  mysql-server mysql-server-8.0 mysql-server-core-8.0
  ..............................省略....................................
[root@huaweiyun:~]# apt install -y php-mysql
[root@huaweiyun:~]# mysql --version
mysql  Ver 8.0.40-0ubuntu0.20.04.1 for Linux on x86_64 ((Ubuntu))

3.1 安全安装配置

[root@huaweiyun:~]# mysql_secure_installation

Securing the MySQL server deployment.

Connecting to MySQL using a blank password.

VALIDATE PASSWORD COMPONENT can be used to test passwords
and improve security. It checks the strength of password
and allows the users to set only those passwords which are
secure enough. Would you like to setup VALIDATE PASSWORD component?  # 是否检查并设置密码的强度    yes  or  no ,这边建议选yes

Press y|Y for Yes, any other key for No: y

There are three levels of password validation policy:

LOW    Length >= 8     # 低长度>= 8
MEDIUM Length >= 8, numeric, mixed case, and special characters    # 支持数字、混合大小写和特殊字符
STRONG Length >= 8, numeric, mixed case, special characters and dictionary   # 数字,混合大小写,特殊字符和字典文件
file

# 0  1   2 分别代表LOW,MEDIUM ,STRONG
Please enter 0 = LOW, 1 = MEDIUM and 2 = STRONG: 1

# 默认情况下使用auth_socket跳过为root设置的密码作为身份验证。如果您希望使用密码身份验证,可以使用“ALTER_USER”命令。
Skipping password set for root as authentication with auth_socket is used by default.
If you would like to use password authentication instead, this can be done with the "ALTER_USER" command.
See https://dev.mysql.com/doc/refman/8.0/en/alter-user.html#alter-user-password-management for more information.

By default, a MySQL installation has an anonymous user,
allowing anyone to log into MySQL without having to have
a user account created for them. This is intended only for
testing, and to make the installation go a bit smoother.
You should remove them before moving into a production
environment.

# 是否删除匿名用户,建议在生产环境下删除
Remove anonymous users? (Press y|Y for Yes, any other key for No) : y
Success.


Normally, root should only be allowed to connect from
'localhost'. This ensures that someone cannot guess at
the root password from the network.

# 禁止root用户远程登录
Disallow root login remotely? (Press y|Y for Yes, any other key for No) : y
Success.

By default, MySQL comes with a database named 'test' that
anyone can access. This is also intended only for testing,
and should be removed before moving into a production
environment.

# 是否删除测试数据库
Remove test database and access to it? (Press y|Y for Yes, any other key for No) : y
 - Dropping test database...
Success.

 - Removing privileges on test database...
Success.

Reloading the privilege tables will ensure that all changes
made so far will take effect immediately.

# 是否现在重新加载特权表
Reload privilege tables now? (Press y|Y for Yes, any other key for No) : y
Success.

All done! 

3.2 修改权限和密码

# 进入mysql
[root@huaweiyun:~]# mysql
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 8
Server version: 8.0.40-0ubuntu0.20.04.1 (Ubuntu)

Copyright (c) 2000, 2024, Oracle and/or its affiliates.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

# 选择mysql数据库
mysql> use mysql;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed
# 查询MySQL中root用户的用户名、允许登录的主机和认证插件
mysql> SELECT user, host, plugin FROM user WHERE user='root';
+------+-----------+-------------+
| user | host      | plugin      |
+------+-----------+-------------+
| root | localhost | auth_socket |
+------+-----------+-------------+
1 row in set (0.00 sec)
# 如果plugin列显示为auth_socket,则需要将其更改为mysql_native_password
mysql> UPDATE user SET plugin='mysql_native_password' WHERE User='root'; 
Query OK, 1 row affected (0.01 sec)
Rows matched: 1  Changed: 1  Warnings: 0

mysql> FLUSH PRIVILEGES;
Query OK, 0 rows affected (0.00 sec)

# 再次查询
mysql> SELECT user, host, plugin, authentication_string FROM mysql.user WHERE user='root';
+------+-----------+-----------------------+-----------------------+
| user | host      | plugin                | authentication_string |
+------+-----------+-----------------------+-----------------------+
| root | localhost | mysql_native_password |                       |
+------+-----------+-----------------------+-----------------------+
1 row in set (0.00 sec)

# 修改root密码
mysql> ALTER USER 'root'@'localhost' IDENTIFIED BY '你自己的数据库密码‘;
# 刷新权限
mysql> FLUSH PRIVILEGES;
mysql> exit
Bye

3.3 重启MySQL服务

[root@huaweiyun:~]# systemctl restart mysql

四、安装PHP

[root@huaweiyun:~]# apt -y install php
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following additional packages will be installed:
  libapache2-mod-php7.4 php-common php7.4 php7.4-cli php7.4-common php7.4-json php7.4-opcache php7.4-readline
Suggested packages:
  php-pear
The following NEW packages will be installed:
  libapache2-mod-php7.4 php php-common php7.4 php7.4-cli php7.4-common php7.4-json php7.4-opcache php7.4-readline
0 upgraded, 9 newly installed, 0 to remove and 67 not upgraded.
Need to get 4,034 kB of archives.
After this operation, 18.0 MB of additional disk space will be used.
Get:1 http://repo.huaweicloud.com/ubuntu focal/main amd64 php-common all 2:75 [11.9 kB]
  ..............................省略....................................
[root@huaweiyun:~]# php -v
PHP 7.4.3-4ubuntu2.24 (cli) (built: Sep 30 2024 18:16:20) ( NTS )
Copyright (c) The PHP Group
Zend Engine v3.4.0, Copyright (c) Zend Technologies
    with Zend OPcache v7.4.3-4ubuntu2.24, Copyright (c), by Zend Technologies

4.1 测试

[root@huaweiyun:~]# cd /var/www/html
[root@huaweiyun:/var/www/html]# ls
index.html
[root@huaweiyun:/var/www/html]# vim info.php
[root@huaweiyun:/var/www/html]# cat info.php 
<?
    phpinfo();
>

截图

五、下载并安装wordpress以及配置

5.1 下载并解压移动

官网下载 https://cn.wordpress.org/download/releases/
在这里插入图片描述
复制链接地址

[root@huaweiyun:~/downloads]# wget https://cn.wordpress.org/wordpress-6.7.1-zh_CN.tar.gz                        # 下载
--2024-12-07 14:26:41--  https://cn.wordpress.org/wordpress-6.7.1-zh_CN.tar.gz
Resolving cn.wordpress.org (cn.wordpress.org)... 198.143.164.252
Connecting to cn.wordpress.org (cn.wordpress.org)|198.143.164.252|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 33984315 (32M) [application/octet-stream]
Saving to: ‘wordpress-6.7.1-zh_CN.tar.gz’

wordpress-6.7.1-zh_CN.tar.gz            100%[============================================================================>]  32.41M   689KB/s    in 78s     

2024-12-07 14:28:02 (428 KB/s) - ‘wordpress-6.7.1-zh_CN.tar.gz’ saved [33984315/33984315]

[root@huaweiyun:~/downloads]# ll
total 33196
drwxr-xr-x 2 root root     4096 Dec  7 14:26 ./
drwx------ 6 root root     4096 Dec  7 14:29 ../
-rw-r--r-- 1 root root 33984315 Nov 24 19:00 wordpress-6.7.1-zh_CN.tar.gz
[root@huaweiyun:~/downloads]# tar -zxvf wordpress-6.7.1-zh_CN.tar.gz     # 解压
[root@huaweiyun:~/downloads]# ll
total 33200
drwxr-xr-x 3 root root     4096 Dec  7 14:40 ./
drwx------ 6 root root     4096 Dec  7 14:29 ../
drwxr-xr-x 5 1006 1006     4096 Nov 24 19:00 wordpress/
-rw-r--r-- 1 root root 33984315 Nov 24 19:00 wordpress-6.7.1-zh_CN.tar.gz

[root@huaweiyun:~/downloads]# cd wordpress/
[root@huaweiyun:~/downloads/wordpress]# ll
total 244
drwxr-xr-x  5 1006 1006  4096 Nov 24 19:00 ./
drwxr-xr-x  3 root root  4096 Dec  7 14:40 ../
-rw-r--r--  1 1006 1006   405 Feb  6  2020 index.php
-rw-r--r--  1 1006 1006 19915 Jan  1  2024 license.txt
-rw-r--r--  1 1006 1006  7409 Jun 18 19:59 readme.html
-rw-r--r--  1 1006 1006  7387 Feb 13  2024 wp-activate.php
drwxr-xr-x  9 1006 1006  4096 Nov 24 19:00 wp-admin/
-rw-r--r--  1 1006 1006   351 Feb  6  2020 wp-blog-header.php
-rw-r--r--  1 1006 1006  2323 Jun 14  2023 wp-comments-post.php
-rw-r--r--  1 1006 1006  3336 Oct 15 23:24 wp-config-sample.php
drwxr-xr-x  5 1006 1006  4096 Nov 24 19:00 wp-content/
-rw-r--r--  1 1006 1006  5617 Aug  3 03:40 wp-cron.php
drwxr-xr-x 30 1006 1006 16384 Nov 24 19:00 wp-includes/
-rw-r--r--  1 1006 1006  2502 Nov 27  2022 wp-links-opml.php
-rw-r--r--  1 1006 1006  3937 Mar 11  2024 wp-load.php
-rw-r--r--  1 1006 1006 51367 Oct  1 03:12 wp-login.php
-rw-r--r--  1 1006 1006  8543 Sep 19 06:37 wp-mail.php
-rw-r--r--  1 1006 1006 29032 Oct  1 01:08 wp-settings.php
-rw-r--r--  1 1006 1006 34385 Jun 20  2023 wp-signup.php
-rw-r--r--  1 1006 1006  5102 Oct 18 23:56 wp-trackback.php
-rw-r--r--  1 1006 1006  3246 Mar  2  2024 xmlrpc.php
# 将 wordpress目录下的文件移动到/var/www/html目录下
[root@huaweiyun:~/downloads/wordpress]# mv * /var/www/html/
[root@huaweiyun:~/downloads/wordpress]# ll /var/www/html
total 260
drwxr-xr-x  5 root root  4096 Dec  7 14:51 ./
drwxr-xr-x  3 root root  4096 Dec  3 12:26 ../
-rw-r--r--  1 root root 10918 Dec  3 12:26 index.html
-rw-r--r--  1 1006 1006   405 Feb  6  2020 index.php
-rw-r--r--  1 root root    20 Dec  7 14:29 info.php
-rw-r--r--  1 1006 1006 19915 Jan  1  2024 license.txt
-rw-r--r--  1 1006 1006  7409 Jun 18 19:59 readme.html
-rw-r--r--  1 1006 1006  7387 Feb 13  2024 wp-activate.php
drwxr-xr-x  9 1006 1006  4096 Nov 24 19:00 wp-admin/
-rw-r--r--  1 1006 1006   351 Feb  6  2020 wp-blog-header.php
-rw-r--r--  1 1006 1006  2323 Jun 14  2023 wp-comments-post.php
-rw-r--r--  1 1006 1006  3336 Oct 15 23:24 wp-config-sample.php
drwxr-xr-x  5 1006 1006  4096 Nov 24 19:00 wp-content/
-rw-r--r--  1 1006 1006  5617 Aug  3 03:40 wp-cron.php
drwxr-xr-x 30 1006 1006 16384 Nov 24 19:00 wp-includes/
-rw-r--r--  1 1006 1006  2502 Nov 27  2022 wp-links-opml.php
-rw-r--r--  1 1006 1006  3937 Mar 11  2024 wp-load.php
-rw-r--r--  1 1006 1006 51367 Oct  1 03:12 wp-login.php
-rw-r--r--  1 1006 1006  8543 Sep 19 06:37 wp-mail.php
-rw-r--r--  1 1006 1006 29032 Oct  1 01:08 wp-settings.php
-rw-r--r--  1 1006 1006 34385 Jun 20  2023 wp-signup.php
-rw-r--r--  1 1006 1006  5102 Oct 18 23:56 wp-trackback.php
-rw-r--r--  1 1006 1006  3246 Mar  2  2024 xmlrpc.php

# 将/var/www/html/下面所有者修改为www-data
[root@huaweiyun:/var/www/html]# chown -R www-data.www-data /var/www/html
[root@huaweiyun:/var/www/html]# ll
total 260
drwxr-xr-x  5 www-data www-data  4096 Dec  7 14:51 ./
drwxr-xr-x  3 root     root      4096 Dec  3 12:26 ../
-rw-r--r--  1 www-data www-data 10918 Dec  3 12:26 index.html
-rw-r--r--  1 www-data www-data   405 Feb  6  2020 index.php
-rw-r--r--  1 www-data www-data    20 Dec  7 14:29 info.php
-rw-r--r--  1 www-data www-data 19915 Jan  1  2024 license.txt
-rw-r--r--  1 www-data www-data  7409 Jun 18 19:59 readme.html
-rw-r--r--  1 www-data www-data  7387 Feb 13  2024 wp-activate.php
drwxr-xr-x  9 www-data www-data  4096 Nov 24 19:00 wp-admin/
-rw-r--r--  1 www-data www-data   351 Feb  6  2020 wp-blog-header.php
-rw-r--r--  1 www-data www-data  2323 Jun 14  2023 wp-comments-post.php
-rw-r--r--  1 www-data www-data  3336 Oct 15 23:24 wp-config-sample.php
drwxr-xr-x  5 www-data www-data  4096 Nov 24 19:00 wp-content/
-rw-r--r--  1 www-data www-data  5617 Aug  3 03:40 wp-cron.php
drwxr-xr-x 30 www-data www-data 16384 Nov 24 19:00 wp-includes/
-rw-r--r--  1 www-data www-data  2502 Nov 27  2022 wp-links-opml.php
-rw-r--r--  1 www-data www-data  3937 Mar 11  2024 wp-load.php
-rw-r--r--  1 www-data www-data 51367 Oct  1 03:12 wp-login.php
-rw-r--r--  1 www-data www-data  8543 Sep 19 06:37 wp-mail.php
-rw-r--r--  1 www-data www-data 29032 Oct  1 01:08 wp-settings.php
-rw-r--r--  1 www-data www-data 34385 Jun 20  2023 wp-signup.php
-rw-r--r--  1 www-data www-data  5102 Oct 18 23:56 wp-trackback.php
-rw-r--r--  1 www-data www-data  3246 Mar  2  2024 xmlrpc.php

# 赋予文件的执行权限
[root@huaweiyun:/var/www/html]# chmod -R 755 /var/www/html
[root@huaweiyun:/var/www/html]# ll
total 260
drwxr-xr-x  5 www-data www-data  4096 Dec  7 14:51 ./
drwxr-xr-x  3 root     root      4096 Dec  3 12:26 ../
-rwxr-xr-x  1 www-data www-data 10918 Dec  3 12:26 index.html*
-rwxr-xr-x  1 www-data www-data   405 Feb  6  2020 index.php*
-rwxr-xr-x  1 www-data www-data    20 Dec  7 14:29 info.php*
-rwxr-xr-x  1 www-data www-data 19915 Jan  1  2024 license.txt*
-rwxr-xr-x  1 www-data www-data  7409 Jun 18 19:59 readme.html*
-rwxr-xr-x  1 www-data www-data  7387 Feb 13  2024 wp-activate.php*
drwxr-xr-x  9 www-data www-data  4096 Nov 24 19:00 wp-admin/
-rwxr-xr-x  1 www-data www-data   351 Feb  6  2020 wp-blog-header.php*
-rwxr-xr-x  1 www-data www-data  2323 Jun 14  2023 wp-comments-post.php*
-rwxr-xr-x  1 www-data www-data  3336 Oct 15 23:24 wp-config-sample.php*
drwxr-xr-x  5 www-data www-data  4096 Nov 24 19:00 wp-content/
-rwxr-xr-x  1 www-data www-data  5617 Aug  3 03:40 wp-cron.php*
drwxr-xr-x 30 www-data www-data 16384 Nov 24 19:00 wp-includes/
-rwxr-xr-x  1 www-data www-data  2502 Nov 27  2022 wp-links-opml.php*
-rwxr-xr-x  1 www-data www-data  3937 Mar 11  2024 wp-load.php*
-rwxr-xr-x  1 www-data www-data 51367 Oct  1 03:12 wp-login.php*
-rwxr-xr-x  1 www-data www-data  8543 Sep 19 06:37 wp-mail.php*
-rwxr-xr-x  1 www-data www-data 29032 Oct  1 01:08 wp-settings.php*
-rwxr-xr-x  1 www-data www-data 34385 Jun 20  2023 wp-signup.php*
-rwxr-xr-x  1 www-data www-data  5102 Oct 18 23:56 wp-trackback.php*
-rwxr-xr-x  1 www-data www-data  3246 Mar  2  2024 xmlrpc.php*

5.2 创建wordpress数据库以及wordpress用户

[root@huaweiyun:~]# mysql -uroot -p
Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 11
Server version: 8.0.40-0ubuntu0.20.04.1 (Ubuntu)

Copyright (c) 2000, 2024, Oracle and/or its affiliates.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
# 创建数据库
mysql> create database wordpress;
Query OK, 1 row affected (0.01 sec)
# 创建wordpress数据库管理员
mysql> create user wordpressUser;
ERROR 1819 (HY000): Your password does not satisfy the current policy requirements
mysql> create user wordpressUser identified by '数据库密码';
Query OK, 0 rows affected (0.01 sec)
# 给wordpress创建一个账号,方便管理wordpress数据库,并输入密码
mysql> grant all on wordpress.* to wordpressUser;
Query OK, 0 rows affected (0.01 sec)
# 刷新权限,配置生效
mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)

mysql> exit
Bye

5.3 重启Apache和mysql

[root@huaweiyun:~]# systemctl restart apache2
[root@huaweiyun:~]# systemctl restart mysql

1、输入域名或者ip,会出现以下页面,点击现在开始
在这里插入图片描述
2、输入数据库名、用户名以及密码(这里的输入的信息要与上面安装数据库时的信息一致)
在这里插入图片描述
3、接下来,会出现这个画面
在这里插入图片描述
找到这个文件,并打开
在这里插入图片描述

[root@huaweiyun:/var/www/html]# vim wp-config-sample.php

在这里插入图片描述

这里需要把手动创建文件wp-config.php
不然就会出现以下问题

[root@huaweiyun:/var/www/html/wordpress]# vim wp-config.php
[root@huaweiyun:/var/www/html/wordpress]# chown www-data.www-data wp-config.php
[root@huaweiyun:/var/www/html/wordpress]# chmod -R 755 wp-config.php

在这里插入图片描述

[root@huaweiyun:~]# systemctl restart mysql     # 重启数据库
[root@huaweiyun:~]# systemctl restart apache2     # 重启数据库

4、重启服务刷新页面之后,就安装成功了,设置账号密码等等
在这里插入图片描述
随后,可以自己在网上寻找主题,以下链接可以找找
https://blog.csdn.net/feiying0canglang/article/details/129671505
换主题操作文档https://www.yuque.com/applek/corepress/setup

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/2259842.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

C#速成(GID+图形编程)

常用类 类说明Brush填充图形形状,画刷GraphicsGDI绘图画面&#xff0c;无法继承Pen定义绘制的对象直线等&#xff08;颜色&#xff0c;粗细&#xff09;Font定义文本格式&#xff08;字体&#xff0c;字号&#xff09; 常用结构 结构说明Color颜色Point在平面中定义点Rectan…

babeltrace与CTF相关学习笔记-4

babeltrace与CTF相关学习笔记-4 写在前面metadata_string 重头开始定位&#xff0c;操作meta的位置bt_ctf_trace_get_metadata_string stream部分内存的问题 写在前面 正在并行做几件事。 在编译过程中&#xff0c;突然想到&#xff0c;还是再详细研究一下之前的例程。 一是详…

多旋翼无人机 :桨叶设计—跷跷板结构

多旋翼无人机 &#xff1a;桨叶设计——跷跷板结构 前言跷跷板结构 前言 2024年11月&#xff0c;大疆发布了最新的农业无人机T70和T100。其中T70不同于以往的机型&#xff0c;在桨夹处采用了翘翘板结构&#xff0c;大疆将其命名为“挥舞桨叶”。 T70 无人机如下 放大其中螺旋…

低通滤波器,高通滤波器,公式

1 低通滤波器 &#xff1a;输出的是电容的电压 1 低通滤波器可以把低频信号上面的高频信号给滤掉 2 100hz正常通过 3 经过低通滤波器后&#xff0c;波形光滑&#xff0c;绿色波形。一致 4 电容充电速度跟不上输入信号的速度&#xff08;因为加了电阻&#xff0c;限制了电流&…

如何打造个人知识体系?

第一&#xff0c;每个人的基本情况不同。比如我有一个类别跟「设计」相关&#xff0c;这是自己的个人爱好&#xff0c;但不一定适合其他人。再比如我还有一个类别跟「广告文案」相关&#xff0c;因为里面很多表达可以借用到演讲或写作中&#xff0c;这也不适合所有人。 第二&am…

5G中的ATG Band

Air to Ground Networks for NR是R18 NR引入的。ATG很多部分和NTN类似中的内容类似。比较明显不同的是&#xff0c;NTN的RF内容有TS 38.101-5单独去讲&#xff0c;而ATG则会和地面网络共用某些band&#xff0c;这部分在38.101-1中有描述。 所以会存在ATG与地面网络之间的相邻信…

《自动驾驶技术的深度思考:安全与伦理的挑战》

内容概要 在当今这个自动驾驶技术飞速发展的时代&#xff0c;我们生活的节奏恰似一场疾驰的赛车&#xff0c;然而&#xff0c;赛道上并非总是平坦。在这场技术革命中&#xff0c;安全与伦理问题像是潜伏在阴影中的幽灵&#xff0c;轮番考验着我们的道德底线与法律界限。 随着…

hbuilder 安卓app手机调试中基座如何设置

app端使用基座 手机在线预览功能 1.点击运行 2.点击运行到手机或者模拟器 3.制作自定义调试基座 4.先生成证书【可以看我上一篇文档写的有】&#xff0c;点击打包 5.打包出android自定义调试基座【android_debug.apk】,【就跟app打包一样需要等个几分钟】 6.点击运行到手…

【AIGC】如何高效使用ChatGPT挖掘AI最大潜能?26个Prompt提问秘诀帮你提升300%效率的!

还记得第一次使用ChatGPT时&#xff0c;那种既兴奋又困惑的心情吗&#xff1f;我是从一个对AI一知半解的普通用户&#xff0c;逐步成长为现在的“ChatGPT大神”。这一过程并非一蹴而就&#xff0c;而是通过不断的探索和实践&#xff0c;掌握了一系列高效使用的技巧。今天&#…

汽车免拆诊断案例 | 2014款保时捷卡宴车发动机偶尔无法起动

故障现象 一辆2014款保时捷卡宴车&#xff0c;搭载3.0T 发动机&#xff0c;累计行驶里程约为18万km。车主反映&#xff0c;发动机偶尔无法起动。 故障诊断 接车后试车&#xff0c;发动机起动及运转均正常。用故障检测仪检测&#xff0c;发动机控制单元&#xff08;DME&#x…

aippt:AI 智能生成 PPT 的开源项目

aippt&#xff1a;AI 智能生成 PPT 的开源项目 在现代办公和学习中&#xff0c;PPT&#xff08;PowerPoint Presentation&#xff09;是一种非常重要的展示工具。然而&#xff0c;制作一份高质量的PPT往往需要花费大量的时间和精力。为了解决这一问题&#xff0c;aippt项目应运…

【泛微系统】流程发起次数报表

流程发起次数报表 应用场景: 查询所有发起过业务流程的员工的信息,可作为绩效考核、系统使用情况等依据; 如何使用该SQL生成系统在线报表,实时查询最新的发起数据? 1、数据库创建视图,并定义一个视图名称如;view_test1 2、系统后台建模引擎-表单-右键创建一个虚拟表单…

【电子元器件】电感基础知识

本文章是笔者整理的备忘笔记。希望在帮助自己温习避免遗忘的同时&#xff0c;也能帮助其他需要参考的朋友。如有谬误&#xff0c;欢迎大家进行指正。 一、 电感的基本工作原理 1. 电感的基本工作原理如下&#xff1a; &#xff08;1&#xff09; 当线圈中有电流通过时&#…

IDEA 修改格式化仅格式化本次改动代码

最近总是发现格式化的时候会格式化文件所有代码&#xff0c;提交Git 后再看提交日志&#xff0c;就很不清晰。修改方式如下 中文&#xff1a; 格式化代码快捷键[中文配置]&#xff1a; 英文&#xff1a; 格式化代码快捷键[英文配置]&#xff1a;

数据结构开始——时间复杂度和空间复杂度知识点笔记总结

好了&#xff0c;经过了漫长的时间学习c语言语法知识&#xff0c;现在我们到了数据结构的学习。 首先&#xff0c;我们得思考一下 什么是数据结构&#xff1f; 数据结构(Data Structure)是计算机存储、组织数据的方式&#xff0c;指相互之间存在一种或多种特定关系的数据元素…

【游戏设计原理】7 - 加德纳的多元智能理论

虽然多元智能理论是对认知方式的分类&#xff0c;但它也可以为游戏设计提供丰富的思路和策略&#xff0c;帮助设计师创建更具吸引力、包容性和多样性的游戏。通过理解不同玩家的认知方式和优势&#xff0c;我们可以更精准地设计游戏的元素和玩法&#xff0c;使其能够吸引广泛的…

【OpenCV】基于分水岭算法的图像分割

介绍 分水岭算法&#xff08;Watershed Algorithm&#xff09;是一种基于形态学的图像分割方法&#xff0c;它模仿了地理学中的分水岭概念。在图像处理中&#xff0c;分水岭算法通过模拟水流从山顶流向谷底的过程来分割图像&#xff0c;其中局部极小值点被视为“山谷”&#x…

ubuntu20.04+ROS Noetic 安装PX4+Mavros

文章目录 系统环境安装依赖PX4 安装老版本安装测试环境变量添加版本查看 安装MAVROS&#xff08;二进制安装非源码安装&#xff09;测试 OGC 地面站安装测试mavros与sitl通信参考 系统环境 ubuntu 20.04 ROS Noetic 如果系统安装了Anaconda等虚拟环境管理器&#xff0c;要退出…

Vue Web开发(七)

1. echarts介绍 echarts官方文档 首先我们先完成每个页面的路由&#xff0c;之前已经有home页面和user页面&#xff0c;缺少mail页面和其它选项下的page1和page2页面。在view文件夹下新建mail文件夹&#xff0c;新建index.vue&#xff0c;填充user页面的内容即可。在view下新建…

WordPress插件 Download-block-plugin下载按钮图标美化

WordPress插件 Download-block-plugin下载按钮图标美化