嘗試在 Debian 伺服器上安裝 owncloud,遇到一些問題

嘗試在 Debian 伺服器上安裝 owncloud,遇到一些問題

我正在嘗試在我的 debian 伺服器上安裝 owncloud,但某些軟體包造成了一些麻煩。我不太習慣 Linux,可能需要一些幫助來解決問題:

這是我正在使用的命令:

cd && apt-get update && 
apt-get -y install apache2 php5 php-pear php-xml-parser php5-sqlite php5-json \
sqlite php5-mysql mp3info curl libcurl3 libcurl3-dev php5-curl zip php5-gd wget \
&& wget http://owncloud.org/releases/owncloud-3.0.0.tar.bz2 && \
tar xfj owncloud-3.0.0.tar.bz2 && \
cp -r owncloud /var/www/ && chown -R www-data:www-data /var/www/owncloud && \ 
/etc/init.d/apache2 restart

這是我收到的錯誤訊息:

The following packages have unmet dependencies:
 initscripts : Breaks: console-setup (< 1.74) but 1.68+squeeze2 is to be installed
               Breaks: initramfs-tools (< 0.104) but 0.98.8 is to be installed
 klibc-utils : Breaks: initramfs-tools (< 0.103) but 0.98.8 is to be installed
E: Broken packages

所以我想我對 initscripts 和 klibc-utils 有依賴性問題。

這裡是完整的控制台輸出

Reading package lists... Done
Reading package lists... Done
Building dependency tree
Reading state information... Done
Note, selecting 'php5-common' instead of 'php5-json'
Note, selecting 'libcurl4-openssl-dev' instead of 'libcurl3-dev'
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 initscripts : Breaks: console-setup (< 1.74) but 1.68+squeeze2 is to be installed
               Breaks: initramfs-tools (< 0.104) but 0.98.8 is to be installed
 klibc-utils : Breaks: initramfs-tools (< 0.103) but 0.98.8 is to be installed
E: Broken packages

有人知道如何解決這個問題嗎?

來源.列表:

###############################################################################
# Hetzner mirror

deb     http://mirror.hetzner.de/debian/packages squeeze main contrib non-free
deb     http://mirror.hetzner.de/debian/security squeeze/updates main contrib non-free



###############################################################################
# backup mirror
#

deb     http://cdn.debian.net/debian/  squeeze  main non-free contrib
deb-src http://cdn.debian.net/debian/  squeeze  main non-free contrib

deb     http://security.debian.org/  squeeze/updates  main contrib non-free
deb-src http://security.debian.org/  squeeze/updates  main contrib non-free

## backports
deb     http://mirror.hetzner.de/debian/backports squeeze-backports main contrib non-free
deb     http://backports.debian.org/debian-backports squeeze-backports main contrib non-free

## Phpmyadmin
deb http://ftp.us.debian.org/debian testing main contrib non-free

答案1

http://software.opensuse.org/download/package?project=isv:ownCloud:community&package=owncloud

現在安裝過程相當簡單。

Add repository and install manually(hide)

對於 Debian 6.0,以 root 身分執行以下命令:

迴聲德布http://download.opensuse.org/repositories/isv:ownCloud:community/Debian_6.0//' >> /etc/apt/sources.list.d/owncloud.list

apt-get 更新

apt-get 安裝 owncloud


您可以將儲存庫金鑰新增至 apt,如下所示:

wget apt-key add - < Release.key

答案2

讓我們從簡化情況開始。

第一次運行apt-get update && apt-get upgrade

如果工作正常,則運行wget http://owncloud.org/releases/owncloud-3.0.0.tar.bz2 && tar xfj owncloud-3.0.0.tar.bz2 && cp -r owncloud /var/www/ && chown -R www-data:www-data /var/www/owncloud && /etc/init.d/apache2 restart.

相關內容