Announcement

Collapse
No announcement yet.

Help installing Owncloud on kubuntu precise pangolin

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • bra|10n
    replied
    Ok so I guess I should wait...
    I tried installing the deb from a konsole and yes it gave all of the same depends.
    But am I right in thinking if these depends were not in my repos then the konsole would have reported "... but is not installable."

    Code:
    kubuntu@Precise:~/Documents$ sudo dpkg -i package owncloud-client_1.0.1-1_amd64.deb
    [sudo] password for kubuntu: 
    dpkg: error processing package (--install):
     cannot access archive: No such file or directory
    Selecting previously unselected package owncloud-client.
    (Reading database ... 90984 files and directories currently installed.)
    Unpacking owncloud-client (from owncloud-client_1.0.1-1_amd64.deb) ...
    dpkg: dependency problems prevent configuration of owncloud-client:
     owncloud-client depends on libqt4-core; however:
      Package libqt4-core is not installed.
     owncloud-client depends on libqt4-gui; however:
      Package libqt4-gui is not installed.
     owncloud-client depends on libcsync0; however:
      Package libcsync0 is not installed.
     owncloud-client depends on ntp; however:
      Package ntp is not installed.
     owncloud-client depends on libcsync-plugin-owncloud; however:
      Package libcsync-plugin-owncloud is not installed.
     owncloud-client depends on libcsync-plugin-smb; however:
      Package libcsync-plugin-smb is not installed.
     owncloud-client depends on libcsync-plugin-sftp; however:
      Package libcsync-plugin-sftp is not installed.
    dpkg: error processing owncloud-client (--install):
     dependency problems - leaving unconfigured
    Processing triggers for hicolor-icon-theme ...
    Errors were encountered while processing:
     package
     owncloud-client
    kubuntu@Precise:~/Documents$

    Leave a comment:


  • SteveRiley
    replied
    The client needs some dependencies you won't get if you install the .deb file. You can get a full package (er, ok, interpret that as you wish!) by creating the file
    Code:
    /etc/apt/sources.list.d/owncloud2012.list
    And pasting this line into it:
    Code:
    deb http://download.opensuse.org/repositories/isv:ownCloud:ownCloud2012/xUbuntu_12.04/ /
    followed by an update and then
    Code:
    apt-get install owncloud-client
    Here are the dependencies:
    Code:
    steve@x1:~$ [B]apt-cache depends owncloud-client[/B]
    owncloud-client
      Depends: libqt4-xml
      Depends: libqt4-core
      Depends: libqt4-gui
      Depends: libqt4-network
      Depends: iproute
      Depends: net-tools
      Depends: oxygen-icon-theme
      Depends: libcsync0
      Depends: ntp
      Depends: libcsync-plugin-owncloud
      Depends: libcsync-plugin-smb
      Depends: libcsync-plugin-sftp
    Bugs me that it wants to install ntp when we already have the perfectly usable ntpdate. But, worse -- the client appears to be broken, at least for me and some others: http://forum.owncloud.org/viewtopic.php?f=3&t=2323

    Leave a comment:


  • bra|10n
    replied
    I decided to try OwnCube because it offered a linux client and it seemed a simpler alternative.
    I did the registration thing and downloaded the Linux sync app Ubuntu-owncloud-client_1.0.1-1_amd64.deb but running this throws 'unmet dependencies error'.
    Am I right assuming with OwnCube, OwnCloud isn't required?

    Leave a comment:


  • carlosestensser
    replied
    bra|10n:
    I get the same error message as you all the time.
    SteveRiley:
    A million thanks for all your help, but unfortunately nothing nothing has worked so far.
    I am on hold for the moment, however, since I can't get into my router's config (blocked by mis isp), so no matter how far I get with the configuration, I can't share anything with other devices.

    Leave a comment:


  • SteveRiley
    replied
    My OwnCloud is running on a Ubuntu 11.10 server image, a t1.micro with an extra 24 GB disk at Amazon Web Services in the Oregon region.

    My installation and configuration sequence:
    • Followed the installation steps published in OwnCloud's support center
    • Registered a subdomain of an existing domain at freedns.afraid.org and delegated it to Route 53 (AWS DNS service)
    • (In Route 53) Created forward and reverse records for the server and an MX record for the domain
    • Set up a Postfix server to receive email
    • Enrolled my domain at CAcert and obtained a free SSL certificate
    • Configured Apache for SSL only and installed the certificate


    My OwnCloud instance is working as expected; I even imported my Google calendar without incident. The only problem I've encountered so far is a curious "authentication error" when I try upload files with Rekonq; uploads work fine with Firefox.

    So... it's odd that you don't have libapache2-mod-php5, as that's a dependency of php5. Well, hold on...your installation might have satisfied the dependency differently. Note:

    Code:
    ubuntu@ip-10-248-12-144:~$ [B]apt-cache depends php5[/B]
    php5
     |Depends: libapache2-mod-php5
     |Depends: libapache2-mod-php5filter
     |Depends: php5-cgi
      Depends: php5-fpm
      Depends: php5-common
    My Apache doesn't throw the error you're seeing because AWS's server build automatically adds an FQDN to /etc/hosts:

    Code:
    ubuntu@ip-10-248-12-144:~$ [B]cat /etc/hosts[/B]
    127.0.0.1 localhost
    # Added by cloud-init
    127.0.1.1       ip-10-248-12-144.us-west-2.compute.internal ip-10-248-12-144
    OwnCloud version 4 is due out in three week or so, I think.

    Leave a comment:


  • bra|10n
    replied
    Ok I had a shot at this :eek: and though I too will need's help, just posting here to share what's happened that hasn't been mentioned above in case it sheds some light...

    SR, after starting here,

    Code:
    sudo apt-get purge owncloud
    sudo apt-get --purge autoremove
    I got the output, "owncloud is not installed", nothing to remove. Good.
    Then,
    Code:
    sudo apt-get install php5-sqlite owncloud
    I noticed in the Konsole a running message,
    Code:
    apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName
    Perhaps this could be related to the OP's sucess/failure on different machines?

    For me also libapache2-mod-php5 was not installed.

    Leave a comment:


  • SteveRiley
    replied
    Found something... try this:
    Code:
    sudo a2enmod php5

    Leave a comment:


  • SteveRiley
    replied
    During your reinstallation process, how did you remove the packages? apt-get remove leaves configuration files hanging around, and therefore reinstalls won't actually be pristine. You need to apt-get purge to clean up left-over configs.

    Sorry that I couldn't be of more assistance. I'm just beginning to learn OwnCloud myself, and haven't experienced breakage, so I haven't had to delve into any troubleshooting.

    Leave a comment:


  • carlosestensser
    replied
    I installed pangolin in my notebook and I managed to install owncloud just fine (Actually, I just managed to login through the web browser, but I don't know what to do from now on).
    The worst part is that I don't want owncloud in my notebook!

    However, in my main computer I can't get it going: I reinstalled EVERY apache - mysl - sqlite - owncloud package but nothing happens, and I am sure that I am not missing any package since I have compared both systems.

    Leave a comment:


  • SteveRiley
    replied
    It appears that Apache is failing to parse the PHP files so rather than executing them, it simply delivers them as HTML to your browser.

    As I'm rather a beginner myself when it comes to Apache, I can't offer any other immediate ideas. When I searched Google for "browser downloads php file", I found some interesting results. Perhaps his will help.

    Leave a comment:


  • carlosestensser
    replied
    yes

    Leave a comment:


  • SteveRiley
    replied
    Did you restart Apache?
    Code:
    sudo service apache2 restart

    Leave a comment:


  • carlosestensser
    replied
    Still the same result.

    Leave a comment:


  • SteveRiley
    replied
    One package that's installed on my OwnCloud instance but missing from yours is libapache2-mod-php5. Which is odd, because this package is a dependency of several other packages that appear in your list. Try installing that.

    Leave a comment:


  • carlosestensser
    replied
    darwin@darwin-sdc1-kubuntu-pangolin:~$ dpkg -l | grep apache
    ii apache2 2.2.22-1ubuntu1 Apache HTTP Server metapackage
    ii apache2-mpm-worker 2.2.22-1ubuntu1 Apache HTTP Server - high speed threaded model
    ii apache2-utils 2.2.22-1ubuntu1 utility programs for webservers
    ii apache2.2-bin 2.2.22-1ubuntu1 Apache HTTP Server common binary files
    ii apache2.2-common 2.2.22-1ubuntu1 Apache HTTP Server common files
    darwin@darwin-sdc1-kubuntu-pangolin:~$ dpkg -l | grep php
    ii php-auth 1.6.2-1ubuntu1 PHP PEAR modules for creating an authentication system
    ii php-auth-http 2.1.6-4 HTTP authentication
    ii php-auth-sasl 1.0.4-1 Abstraction of various SASL mechanism responses
    ii php-config 1.10.12-1 Your configuration's swiss-army knife
    ii php-html-common 1.2.5-2 base class for other HTML classes
    ii php-html-safe 0.10.1-1 strip down all potentially dangerous content within HTML
    ii php-http 1.4.1-1 PHP PEAR module for HTTP related stuff
    ii php-http-request 1.4.4-3 provides an easy way to perform HTTP requests
    ii php-http-upload 1.0.0b1-2 Easy and secure management of files submitted via HTML Forms
    ii php-http-webdav-server 1.0.0RC4-2 WebDAV server base class
    ii php-net-ipv6 1.2.2b-1 Check and validate IPv6 addresses
    ii php-net-socket 1.0.9-2 PHP PEAR Network Socket Interface module
    ii php-net-url 1.0.15-2 easy parsing of Urls
    ii php-openid 2.2.2-1 PHP OpenID library
    ii php-pear 5.3.10-1ubuntu3 PEAR - PHP Extension and Application Repository
    ii php-xml-htmlsax3 3.0.0+cvs01112007-2 SAX parser for HTML and other badly formed XML documents
    ii php-xml-parser 1.3.2-4 PHP PEAR module for parsing XML
    ii php5 5.3.10-1ubuntu3 server-side, HTML-embedded scripting language (metapackage)
    ii php5-adodb 5.04-6 Extension optimising the ADOdb database abstraction library
    ii php5-auth-pam 0.4-10ubuntu1 A PHP5 extension for PAM authentication
    ii php5-cgi 5.3.10-1ubuntu3 server-side, HTML-embedded scripting language (CGI binary)
    ii php5-cli 5.3.10-1ubuntu3 command-line interpreter for the php5 scripting language
    ii php5-common 5.3.10-1ubuntu3 Common files for packages built from the php5 source
    ii php5-curl 5.3.10-1ubuntu3 CURL module for php5
    ii php5-dev 5.3.10-1ubuntu3 Files for PHP5 module development
    ii php5-enchant 5.3.10-1ubuntu3 Enchant module for php5
    ii php5-exactimage 0.8.5-3build2 fast image manipulation library (PHP bindings)
    ii php5-ffmpeg 0.6.0-2ubuntu3 audio and video support via ffmpeg for php5
    ii php5-fpm 5.3.10-1ubuntu3 server-side, HTML-embedded scripting language (FPM-CGI binary)
    ii php5-gd 5.3.10-1ubuntu3 GD module for php5
    ii php5-geoip 1.0.7-4 GeoIP module for php5
    ii php5-gmp 5.3.10-1ubuntu3 GMP module for php5
    ii php5-imagick 3.1.0~rc1-1 ImageMagick module for php5
    ii php5-imap 5.3.5-0ubuntu2 IMAP module for php5
    ii php5-interbase 5.3.5-0ubuntu1 interbase/firebird module for php5
    ii php5-intl 5.3.10-1ubuntu3 internationalisation module for php5
    ii php5-lasso 2.3.5-4build2 Library for Liberty Alliance and SAML protocols - PHP 5 bindings
    ii php5-ldap 5.3.10-1ubuntu3 LDAP module for php5
    ii php5-librdf 1.0.13.1-2build1 PHP5 language bindings for the Redland RDF library
    ii php5-mapscript 6.0.1-2ubuntu1 php5-cgi module for MapServer
    ii php5-mcrypt 5.3.5-0ubuntu1 MCrypt module for php5
    ii php5-memcache 3.0.6-1 memcache extension module for PHP5
    ii php5-memcached 1.0.2-2 memcached extension module for PHP5, uses libmemcached
    ii php5-midgard2 10.05.6-1 Midgard2 Content Repository - PHP5 language bindings and module
    ii php5-ming 1:0.4.3-1.2ubuntu2 Ming module for php5
    rc php5-mysql 5.3.10-1ubuntu3 MySQL module for php5
    ii php5-mysqlnd 5.3.10-1ubuntu3 MySQL module for php5 (Native Driver)
    ii php5-odbc 5.3.10-1ubuntu3 ODBC module for php5
    ii php5-pgsql 5.3.10-1ubuntu3 PostgreSQL module for php5
    ii php5-ps 1.3.6-6 ps module for PHP 5
    ii php5-pspell 5.3.10-1ubuntu3 pspell module for php5
    ii php5-radius 1.2.5-2ubuntu1 PECL radius module for PHP 5
    ii php5-recode 5.3.10-1ubuntu3 recode module for php5
    ii php5-remctl 3.0-5 PECL module for Kerberos-authenticated command execution
    ii php5-rrd 1.0.5-1 rrd module for PHP 5
    ii php5-sasl 0.1.0-1.1 Cyrus SASL extension for PHP 5
    ii php5-snmp 5.3.10-1ubuntu3 SNMP module for php5
    ii php5-sqlite 5.3.10-1ubuntu3 SQLite module for php5
    ii php5-suhosin 0.9.33-1 advanced protection module for php5
    ii php5-svn 1.0.1-1 PHP Bindings for the Subversion Revision control system
    ii php5-sybase 5.3.10-1ubuntu3 Sybase / MS SQL Server module for php5
    ii php5-tidy 5.3.10-1ubuntu3 tidy module for php5
    ii php5-tokyo-tyrant 0.5.0-1 PHP interface to Tokyo Cabinet's network interface, Tokyo Tyrant
    ii php5-uuid 1.6.2-1.1build3 OSSP uuid module for php5
    ii php5-xcache 1.3.2-1 Fast, stable PHP opcode cacher
    ii php5-xdebug 2.1.0-1 Xdebug Module for PHP 5
    ii php5-xmlrpc 5.3.10-1ubuntu3 XML-RPC module for php5
    ii php5-xsl 5.3.10-1ubuntu3 XSL module for php5
    ii phpbb3 3.0.9-1 full-featured, skinnable non-threaded web forum
    ii phpbb3-l10n 3.0.9-1 additional language files for phpBB
    ii phpldapadmin 1.2.2-4ubuntu1 web based interface for administering LDAP servers
    darwin@darwin-sdc1-kubuntu-pangolin:~$ dpkg -l | grep sql
    ii akonadi-backend-mysql 1.7.2-0ubuntu1 MySQL storage backend for Akonadi
    ii libaprutil1-dbd-sqlite3 1.3.12+dfsg-3 Apache Portable Runtime Utility Library - SQLite3 Driver
    ii libdbd-mysql-perl 4.020-1build2 Perl5 database interface to the MySQL database
    ii libhsqldb-java 1.8.0.10-9ubuntu2 Java SQL database engine
    ii libmysqlclient18 5.5.22-0ubuntu1 MySQL database client library
    ii libmysqlcppconn5 1.1.0-3build1 MySQL Connector for C++ (library)
    ii libqt4-sql 4:4.8.1-0ubuntu4 Qt 4 SQL module
    ii libqt4-sql-mysql 4:4.8.1-0ubuntu4 Qt 4 MySQL database driver
    ii libqt4-sql-sqlite 4:4.8.1-0ubuntu4 Qt 4 SQLite 3 database driver
    ii libqtscript4-sql 0.2.0-0ubuntu1 Qt Script bindings for the Qt 4 SQL library
    ii libreoffice-mysql-connector 1.0.1+LibO3.5.2-2ubuntu1 MySQL Connector extension for LibreOffice
    ii libsqlite3-0 3.7.9-2ubuntu1 SQLite 3 shared library
    ii mysql-client 5.5.22-0ubuntu1 MySQL database client (metapackage depending on the latest version)
    ii mysql-client-5.5 5.5.22-0ubuntu1 MySQL database client binaries
    ii mysql-client-core-5.5 5.5.22-0ubuntu1 MySQL database core client binaries
    ii mysql-common 5.5.22-0ubuntu1 MySQL database common files, e.g. /etc/mysql/my.cnf
    ii mysql-server-core-5.5 5.5.22-0ubuntu1 MySQL database server binaries
    rc php5-mysql 5.3.10-1ubuntu3 MySQL module for php5
    ii php5-mysqlnd 5.3.10-1ubuntu3 MySQL module for php5 (Native Driver)
    ii php5-pgsql 5.3.10-1ubuntu3 PostgreSQL module for php5
    ii php5-sqlite 5.3.10-1ubuntu3 SQLite module for php5

    Leave a comment:

Working...