我是Linux领域的新手,但我想使用以下两个教程在我的Cubie卡车(Cubieboard 3)上安装Seafile 4.0.1,并使用Apache2和MySQL:
我遇到了一个问题,因为我想安装libapache2-mod-fastcgi,但没有找到软件包。我在sources.list文件中添加了非免费的repos。帮不上忙。
相反,我安装了libapache2-mod-fcgi并继续学习本教程。当我不得不重新启动apache2服务器时,出现了错误Invalid command 'FastCgiExternalServer。
对解决这个问题有什么帮助吗,我有什么问题吗?
更多信息:
它运行在Debian7.8上,uname -a给出了下面的输出:
Linux cubietruck 3.4.79 #3 SMP PREEMPT Wed Nov 12 11:39:10 CST 2014 armv7l GNU/Linux
发布于 2015-01-31 16:25:55
我遇到了完全相同的问题,试图在我的新Cubie载重车(Cubieboard 3)上安装HTTPS。
问题是,在repos中,arch 'armhf‘没有预编译的二进制文件。因此,它必须进行汇编。
我就这样解决了:
apt-get install apache2-threaded-dev cdbs debhelper dpatch libapr1-dev libtool pkg-config
apt-get -b source libapache-mod-fastcgi
dpkg -i libapache2-mod-fastcgi*.deb
# Enable the module if not already done
a2enmod fastcgi你会收到大量的警告,但最终还是奏效了。现在,我能够使用带有HTTPS的航海文件,使用apache作为seahub的反向代理。
我使用Igor的图像,内核为3.4.105,来自:http://www.igorpecovnik.com/2013/12/24/cubietruck-debian-wheezy-sd-card-image/
root@x:~# unname -a
Linux x 3.4.105-cubieboard #8 SMP PREEMPT Fri Jan 23 06:11:42 EST 2015 armv7l GNU/Linux如果您试图使用apt来安装libriache2-mod-快速mod,您会遇到的错误:
root@x:~# apt-get install libapache2-mod-fastcgi
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package libapache2-mod-fastcgi is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package 'libapache2-mod-fastcgi' has no installation candidatehttps://unix.stackexchange.com/questions/182070
复制相似问题