Linux

在 debian lenny 上安裝 mod_xsendfile 最乾淨的方法是什麼

  • February 18, 2010

我想在我的 debian lenny 伺服器上安裝 mod xsendfile,但我似乎在任何地方都找不到 deb,甚至在 backports 上

從源安裝時:http: //tn123.ath.cx/mod_xsendfile/似乎安裝程序在嘗試處理 apache conf 文件時有點生氣。

我可以把這一切都放在一起,但想知道在 apache 上安裝 xsendfile 是否有任何干淨的步驟?

(附帶問題:它不在主流儲存庫中是否有原因 - 它是否存在固有的不穩定因素?)

軟體包在squeeze/sid 中​​,只需在將任一repo 添加到/etc/apt/sources.list 後安裝libapache2-mod-xsendfile。

我不知道為什麼它以前不包括在內。它至少不穩定,我知道的就這麼多。

編輯:

我沒有編輯其他使用者文章的權限,但 Sam 來了。

如果您想使用 dpkg -i 安裝包,您必須下載單個包,選擇架構並下載。

例子:

dpkg -i libapache2-mod-xsendfile_0.9-2_i386.deb

我建議在/etc/apt/sources.list 中添加squeeze 或sid,然後使用apt(將下載、安裝並滿足包的任何依賴項):

apt-get install libapache2-mod-xsendfile

如果你想使用 apt-pinning 在你的 /etc/apt/preferences 中使用類似的東西

Package: *
Pin: release a=stable
Pin-Priority: 700

Package: *
Pin: release a=testing
Pin-Priority: 650

Package: *
Pin: release a=unstable
Pin-Priority: 600

這將導致 stable 比 testing(squeeze) 和 stable(sid) 具有更高的優先級,因此在使用 apt 工具下載軟體包時預設使用 stable。

引用自:https://serverfault.com/questions/113760