问题标签 [ubuntu-20.04]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
python-3.x - 缺少 python 基础包
升级到 ubuntu 焦点后,我丢失了 python3 dist 文件。比如math
, subprocess
, random
,thread
等等...我在旧的 ubuntu bionic 上安装了一个自编译的 python 3.8,我以异常方式删除了它(删除的目录位于/usr/local/lib/python3.8
)。后来我使用sudo apt remove python3 && sudo apt install python3
. 有什么办法可以找回这些包裹吗?ubuntu 焦点会发生常见错误吗?
我在旧仿生中编译 python 3.8 的方式
- 从 python 站点下载的 zip 文件
- 使用配置和安装
./configure && make && sudo make install
尝试使用 pip 安装某些东西时出错
elasticsearch - 在并行运行的 Ubuntu 上为 Elasticsearch 设置网络访问
我有一个运行版本 20.04 的 ubuntu 服务器实例安装在 Mac 上的并行上,但是我无法从网络上的其他设备访问它,只能从 ubuntu 实例访问它。
lsb_release -a
给出以下结果
我已经使用此处的说明从 APT 存储库安装了 Elasticsearch 版本 7.6.2
我可以curl -X GET 'http://localhost:9200'
在 ubuntu 上运行并获得以下输出
如果我运行,hostname -I
我会得到10.211.55.11 fdb2:2c26:f4e4:0:21c:42ff:fee9:e2c5
哪个是 ubuntu 实例的 IP 地址。
但是,当我curl -X GET 'http://10.211.55.11:9200'
从我的 Mac 运行时,我得到以下结果curl: (7) Failed to connect to 10.211.55.11 port 9200: Connection refused
如何从网络上的其他设备访问我的 Elasticsearch 实例?
sudo ufw status
给了我以下规则
/etc/elasticsearch/elasticsearch.yml
包含以下内容
添加network.host:0.0.0.0
将上述行添加到 elasticsearch.yml 文件后,出现以下错误
运行systemctl status elasticsearch.service
给我以下错误信息
/var/log/elasticsearch/elasticsearch.log
包含以下错误日志
caffe - Caffe error: can't use pretrained prototxt and caffemodel with caffe.Net
I want to use DEX trained net from here. But I'm having the following problem, when I use
This is the error log:
[libprotobuf ERROR google/protobuf/text_format.cc:307] Error parsing text-format caffe.NetParameter: 2:1: Invalid control characters encountered in text.
[libprotobuf ERROR google/protobuf/text_format.cc:307] Error parsing text-format caffe.NetParameter: 2:22: Interpreting non ascii codepoint 162.
[libprotobuf ERROR google/protobuf/text_format.cc:307] Error parsing text-format caffe.NetParameter: 2:22: Message type "caffe.NetParameter" has no field named "VGG_ILSVRC_16_layers".
WARNING: Logging before InitGoogleLogging() is written to STDERR
F0501 15:41:00.689872 5795 upgrade_proto.cpp:90] Check failed: ReadProtoFromTextFile(param_file, param) Failed to parse NetParameter file: gender.caffemodel * Check failure stack trace: *
I'm using Ubuntu 20.04 LTS and python 3.8.2.
ros - 如何在 Ubuntu 20.04 上设置 ROS 环境变量?
我尝试按照本指南安装 ROS,但即使在添加 ROS source.list 及其密钥之后
给出了错误。
然后我运行了这个命令
看看是否存在任何这样的包。我找不到ros-melodic-desktop-full
,但我找到了另一个类似的包ros-desktop-full
。所以我安装了它。安装顺利,没有出现任何错误。
指南中的下一步是设置 ROS 环境变量,但我没有这样的目录
那么如何设置环境变量呢?
附言
我还使用此命令安装了一些工具和依赖项
并初始化rosdep
pgadmin-4 - 如何在 Ubuntu 20 上安装 PgAdmin 4
我已经通过“Ubuntu Software”管理器安装了 PgAdmin III,但它崩溃了。我试过“sudo apt-get update”,然后,sudo apt-get pgadmin4。我收到一条消息说这个包不存在。我已经尝试了所有我发现的与 Ubuntu 20 相关的东西,还有一些与 Ubuntu 19 相关的东西。
postgresql - 软件包 'pgadmin4' 没有安装候选,适用于 Ubuntu 20.04
升级到 Ubuntu-20.04 后,我无法安装 pgadmin4。此外,任何其他版本的 pgadmin 都不起作用。
它显示以下错误:
在我的“pgdg.list”文件中,可以从下面的命令访问
我有:
python - 如何为旧的 python 版本安装 python-distutils
我正在运行安装了 python 3.6、3.7 和 3.8 的 Ubuntu 20.04。
我正在尝试使用“python3.7 -m pip install package”在 3.6 和 3.7 版本上使用 pip 安装一些软件包,但是,我收到了这个错误:
我已经安装python3-distutils
并python3-distutils-extra
安装了,但pip 仅适用于 python 3.8。
如何让 pip 在 python 3.6 和 3.7 上安装包?
mysql - 在 Ubuntu 20.04 上安全安装 MySQL 8 问题
我正在尝试安装和配置 mysql 和 phpmyadmin,但是在安装 mysql-server 之后,当我尝试使用命令 mysql_secure_installation 终端时要求我输入 root 密码。进入后显示ERROR:
Securing the MySQL server deployment.
Enter password for user root:
Error: Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2)
我尝试使用此页面https://kifarunix.com/install-mysql-8-on-ubuntu-20-04/中的信息安装 mysql
编辑: https ://www.hivelocity.net/kb/what-to-do-if-mysql-sock-file-is-missing/那没有帮助
ubuntu - 如何在 Ubuntu 20.04 上使用 Cloud-init 设置自定义密码?
最近,我通过将我的配置安装在图像中来让 Cloud-Init 工作。这一切都很好,它工作。如果我破坏了配置,它会告诉我。它没有告诉我的是为什么我不允许登录。
我尝试的是使用echo possible | mkpasswd -m sha-512 -s
并复制快速入门页面上的示例来创建自己的密码:https ://wiki.ubuntu.com/FoundationsTeam/AutomatedServerInstalls/QuickStart
都不工作。我也尝试过设置自定义用户名。不会改变任何东西。默认ubuntu:ubuntu
也是不可用的。ubuntu 和空白都不是。
我正在使用什么:
https://releases.ubuntu.com/20.04/ubuntu-20.04-live-server-amd64.iso
https://wiki.ubuntu.com/FoundationsTeam/AutomatedServerInstalls/QuickStart
以下配置及其提供的密码,或以上;
我也尝试过像这样设置用户块:
我要的是什么:
- 更好的文档说明预期的散列类型。
- 一个有效的用户数据配置
python-3.x - 如何在 Ubuntu 20.04 中安装 Python3.5.1?
我在 Ubuntu 20.04 上安装 python3.5.1 时遇到问题,因为在 ubuntu 20 中不推荐使用 libssl-dev 版本 1.0。
我该如何解决这个问题来安装 python3.5.1?
PS 只需要 3.5.1 版本,不需要 3.5.2,其他都不需要。