问题标签 [alpine]
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.
php - 在 alpine linux 上使用 Apache 的 PHP Codeigniter
我编写了一个小型 codeigniter 测试应用程序,目前正在我的 Windows 机器上运行。我创建了一个 linux vm 并尝试在这个新的虚拟服务器上安装该应用程序。我的一些网络应用程序运行正常,但其他部分没有。具体来说,这有效:
但这不会:
它失败并显示无法加载 controller2_model 的错误。
这是失败的控制器的实际代码(它实际上称为 xferLogger 与 controller2):
这是模型:
完整的错误消息是:遇到错误。无法找到您指定的模型:xferlogger_model。
这是我注意到的一件事。在错误消息中,您会注意到 logger 中的“L”是小写的。但在我的代码中,它是大写的 L。我已经检查了我的控制器、模型本身以及 routes.php 文件。我的外壳似乎找不到任何问题。
??
email - pine/alpines 通讯录中的 utf-8 字符
pine/alpine 地址簿的语法对于 unicode 字符是如何工作的?说我想包含条目
在我的高山通讯录中。当我打开地址簿文件时,此条目对应于以下行:
我想知道这种 utf-8 字符的语法是如何工作的。我对这个问题的动机如下:我希望能够(通过搜索和替换)生成一个地址簿文件,其中真正的 utf-8 字符出现(因为这更具可读性),然后编辑文件,然后然后将 utf-8 字符转换回 pine/alpines 语法。
amazon-ec2 - 在 Amazon EC2 linux 上安装 pine/alpine
谁能告诉我如何在运行 Amazon Linux 的 Amazon EC2 linux 实例上安装 pine 或 alpine(基于文本的电子邮件客户端)?
yum install pine 和 yum install alpine 不起作用。
email - Alpine INBOX 包含 0 条消息
我在 Alpine 中配置了两个收集列表。在 MS L 中,我输入了一个昵称,然后以下列方式输入了一个服务器:
mail.server:993/ssl/user=username
输入密码后,所有邮件都会显示在收件箱中,包括所有子文件夹。它们可以被编辑,等等。一段时间后,收件箱是空的。只有收件箱。所有子文件夹仍然有效。唯一有效的是删除和阅读收藏列表。重新启动 Alpine 不起作用。
这发生在两个集合列表中,但不会同时发生。
有人知道这可能是什么吗?
在此先感谢,斯特凡
linux - Compiling Mongo on Alpine
I'm attempting to compile Mongo on Alpine Linux.
Anybody know how to get past this error?
numpy - 在 Alpine linux 中寻找用于安装 numpy 的软件包
我一直在互联网上搜索Alpine linux的numpy包,没有找到,所以我尝试通过克隆git从源代码安装它,遇到了很多问题!所以我想到向社区询问 Alpine linux 发行版中是否有任何软件包可以安装 numpy 作为其中的一部分?!
python - 在 Alpine Linux 上安装 Pillow 时没有这样的文件或目录“limits.h”
我在 Raspberry Pi 2 上运行 alpine-linux。我正在尝试通过以下命令安装 Pillow:
这是命令的输出:
我认为这可能是相关部分:
我的研究表明这可能与头文件有关。我已经安装了这些:
linux - alpine linux lighttpd 安装缺少软件包
我正在关注http://wiki.alpinelinux.org/wiki/Setting_Up_Lighttpd_With_FastCGI上的文档,以便在 Alpine linux 上安装 lighttpd,但是在复制第一个命令时出现问题:
我收到以下错误:
有任何想法吗?
docker - 使用 Alpine Linux 对 octopress 进行 Docker 化
我不确定这是否是问这个问题的正确地方。我会尽力。如果不符合要求,请关闭。
我在 dockerizing octopress 以在 github.io 上发布内容时遇到问题,特别是使用 Alpine Linux。
这是我的 Dockerfile:
它在这里中断,这是第 12 步的一部分RUN bundle install
:
我在安装更高版本的 posix-spawn 时没有问题,但这是捆绑安装所需的。
如果我使用 Ubuntu 运行该文件,则不会出现此错误:
我已经安装了 ruby-dev 所以我认为这就足够了。你知道我还有什么可以检查的吗?
python - Why isn't pyenv finding openssl shared libraries under Alpine Linux?
I'm trying to build a docker image from gliderlabs/alpine:latest
containing only pyenv and it's dependencies. I would like for this container to be able to install and execute an arbitrary interpreter through pyenv.
Initial Attempt
I began with the following Dockerfile:
The Error
Once built, I can start a container and run bash, and the pyenv
command is available, as expected.
However, when I try to run pyenv install 3.4.3
I get the following error:
Attempted Fix
After a bit of googling I found this page, which, for OSX/homebrew, suggests the following fix:
Since I'm not using OSX or Homebrew, I attempted to adapt these commands to an Alpine environment by adding the following lines to the Dockerfile:
Please note that /usr/lib
contains:
libssl.a
libssl.so
libssl.so.1.0.0
and /usr/include
contains openssl
. This having been said, the modification seems to have no impact on my error when installing Python 3.4.3.
The Question
How can I get pyenv to install a python environment under a dockerized Alpine Linux?
Edit:
- The pyenv build log is apparently chocking because the
sockaddr_can
type is undefined. I'm officially lost. Is this amusl
bug ?