调整目录结果,更新文档

pull/9/head
詹力 2024-02-05 23:39:00 +08:00
parent 2710351fbf
commit caf04a4d1c
53 changed files with 64 additions and 1 deletions

View File

@ -9,4 +9,23 @@
PIBot官方资料https://gitee.com/pibot/pibot_bringup/blob/master/doc/README.md#1-%E8%AF%B4%E6%98%8E
> 注意:`build`文件夹是编译生成不需要纳入git管理
> 注意:`build`文件夹是编译生成不需要纳入git管理
### 一、启动全覆盖 & 避障
#### 1.1 启动双目测距节点
```shell
# -------------------------- 目标检测和测距节点 --------------------------------
# 进入工作目录
cd ~/obj_dec
# 编译
catkin_make
# 引入环境变量
source ./devel/setup.bash
# 启动ros核心节点
roscore
# 运行
rosrun rknn_yolov5_demo main
```

View File

@ -0,0 +1,15 @@
使用方法:
```shell
# 进入工作目录
cd ~/obj_dec
# 编译
catkin_make
# 引入环境变量
source ./devel/setup.bash
# 启动ros核心节点
roscore
# 运行
rosrun rknn_yolov5_demo main
```

View File

Before

Width:  |  Height:  |  Size: 177 KiB

After

Width:  |  Height:  |  Size: 177 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 MiB

View File

@ -0,0 +1,29 @@
# Ubuntu桌面循环登陆问题
> 硬件Firefly ROC-RK3588S-PC 系统Ubuntu20.04
>
> 2024/02/05 詹力 罗瑞笛
描述在安装了x11-apps和vnc后发现vnc不好用所以删除了vnc。结果就导致了Ubuntu登陆界面循环登陆在密码输入正确后闪烁一下然后接着又要输入密码。
方案1网络上好多提到这个方案但是似乎没有太大作用。
```shell
# ctrl + alt + f1 \ f2 根据实际情况看看f1和f2哪个能进入tty命令行
ctrl + alt + f2
# 进入主界面
cd ~
ls -lA
# 如果看到 -rw----------------------- 1 root root 53 Nov 29:10:19 .Xauthority
# 整理的username是用于登陆的用户名
chown username:username .Xauthority
```
方案2罗瑞迪亲测解决
```shell
sudo apt-get install lightdm
# 然后在弹出的Configuring lightdm界面中选择lightdm
```
![](Image/Ubuntu桌面循环登陆问题-Img1.png)