摘要: 打开Ubuntu虚拟机发现文件管理器无法打开,一直在转圈圈 在终端中输入 ``` nautilus ``` 然后显示如下信息 ``` nautilus: symbol lookup error: /usr/lib/x86_64-linux-gnu/tracker-2.0/libtracker-dat 阅读全文
posted @ 2023-07-25 17:32 槑孒 阅读(380) 评论(0) 推荐(0) 编辑
摘要: 以下安装过程均在`root用户`下进行 [官方编译步骤](https://gdal.org/development/building_from_source.html) http://download.osgeo.org/gdal/ java需要提前安装及配置好环境变量[`ubuntu安装OpenJ 阅读全文
posted @ 2023-07-25 15:20 槑孒 阅读(365) 评论(0) 推荐(0) 编辑
摘要: `系统环境:Ubuntu 22.04.1` ### 1. 问题发生 ``` -- The C compiler identification is GNU 11.3.0 -- The CXX compiler identification is unknown -- Detecting C comp 阅读全文
posted @ 2023-07-25 11:13 槑孒 阅读(358) 评论(0) 推荐(1) 编辑
摘要: 要停止并删除所有容器,可以使用以下命令: 1. 停止所有容器: ``` docker stop $(docker ps -aq) ``` 该命令将停止所有正在运行中的容器。 2. 删除所有容器: ``` docker rm $(docker ps -aq) ``` 该命令将删除所有容器,包括已停止的 阅读全文
posted @ 2023-07-25 10:29 槑孒 阅读(590) 评论(0) 推荐(0) 编辑
摘要: 要在Ubuntu上安装OpenJDK 17并配置环境变量,请按照以下步骤进行操作: 第一步:打开终端(Terminal)。 第二步:使用以下命令更新系统软件包列表: sudo apt update 第三步:安装OpenJDK 17: sudo apt install openjdk-17-jdk 以 阅读全文
posted @ 2023-07-25 09:33 槑孒 阅读(2822) 评论(0) 推荐(0) 编辑
摘要: 登录普通用户失败,报错信息: ![](https://img2023.cnblogs.com/blog/1987782/202307/1987782-20230725083601000-831714949.png) ### 解决办法 1、root用户登录失败解决办法 使用su命令登录到root用户时 阅读全文
posted @ 2023-07-25 08:48 槑孒 阅读(1467) 评论(0) 推荐(0) 编辑