Tell me more ×
Ask Ubuntu is a question and answer site for Ubuntu users and developers. It's 100% free, no registration required.

i have installed owncloud on ubuntu but i can find it on the menu dash, i even try to run own terminal by typing owncloud, but nothing start

i also have an ubuntu 1 account but i also would like to use owncloud

can i use owncloud on ubuntu?

our do i have to be with kde to use owncloud?

or do i have to install another package? i have install owncloud from synaptic

i am using ubuntu 12.04 beta

share|improve this question
OwnCloud working pretty fine over here, please provide information about your install. How did you install it? If you set it on your www folder simply go to your web browser and try localhost/cloud (change "clound" for whatever the name of your cloud folder is), if you used another method please let us know in order to help you. My Ubuntu Web Server OwnCloud demo can be reached right here: geppettvs.servehttp.com/cloud use "guest" as user and "demo" as password (without quotes, this account will be erased soon). Waiting for your information. Thank you. – Geppettvs D'Constanzo Mar 27 '12 at 23:39
i have installed using synaptic – user49523 Mar 27 '12 at 23:42
how do you start owncloud? – user49523 Mar 27 '12 at 23:44
OwnCloud is using PHP5 and MySQL services for a web interface, it should be used by installing it as a web service. Usually placed on /var/www but these services are mostly installed into their proper folders which may difficult to find how to call it from the browser. I simply downloaded the compressed file, unzipped, and placed its contents on my www folder, deleted the "data" folder inside the "cloud" folder and called it from a web browser. I named it "cloud" so you can reach it with that link. I usually reach it via localhost/cloud and it works. – Geppettvs D'Constanzo Mar 27 '12 at 23:56
OwnCloud seems not to be a program but a web service, so you won't find a way to run it as a program or GUI. I suggest you to give a chance downloading the compressed file and moving it to your /var/www folder, then call it via web browser and run the install. 0770 permissions are required in order to run install, MySQL or any compatible database is also required. After all, everything seems to be easy and the install runs like a charm. – Geppettvs D'Constanzo Mar 27 '12 at 23:59
show 3 more comments

2 Answers

OwnCloud is a web service that provides hosted services including CalDAV (calendar), WebDAV (Files), and CardDAV (address book) services.

Because OwnCloud provides the services which are consumed by the client PC, it is generally installed on a server, although some do run OwnCloud locally.

Since you installed OwnCloud on your PC, you automatically also installed (due to OwnCloud dependencies) the Apache server, which is probably already running on your computer.

If you decide that you want to keep OwnCloud running on your local pc, you should be able to access it through your browser at this url: http://localhost/owncloud

Files of interest if you decide to keep and configure the software:

/etc/apache2/conf.d/owncloud.conf
/var/lib/owncloud/config/config.sample.php

Sources:

apt-file list owncloud

http://bazaar.launchpad.net/~ubuntu-branches/ubuntu/oneiric/owncloud/oneiric/view/head:/debian/owncloud.install

share|improve this answer
it is fantastic, by the way :) I use it on my VPS and love it. Since it has fairly low requirements, you might even be able to run it on a shared web host, though I haven't tried it. – nathwill Mar 28 '12 at 4:00

Useful information has already been provided by @nathwill on his own answer, however, my considerations are the same as mentioned in the comments to your question, placed here for your convenience:

OwnCloud working pretty fine over here, If you set it on your www folder simply go to your web browser and try localhost/cloud (change "cloud" for whatever the name of your cloud folder is), if you used another method please let us know in order to help you. My Ubuntu Web Server OwnCloud demo can be reached right here: geppettvs.servehttp.com/cloud use "guest" as user and "demo" as password (without quotes, this account will be deleted soon).

OwnCloud is using PHP5 and MySQL services for a web interface, it should be used by installing it as a web service. Usually placed on /var/www but these services are mostly installed into their proper folders which may difficult to find how to call it from the browser. I simply downloaded the compressed file, unzipped, and placed its contents on my www folder, deleted the "data" folder inside the "cloud" folder and called it from a web browser. I named it "cloud" so you can reach it with that link. I usually reach it via localhost/cloud and it works.

OwnCloud seems not to be a program but a web service, so you won't find a way to run it as a program or GUI. I suggest you to give a chance downloading the compressed file and moving it to your /var/www folder, then call it via web browser and run the install. 0770 permissions are required in order to run install, MySQL or any compatible database is also required. After all, everything seems to be easy and the install runs like a charm. The service is provided by your own local system and will be online only if your computer is turned on, bandwidth depends on your ISP connection and the maximum space that you can use for online storage is defined by the limit of your hard disk drive or quota, depending what you specify for each user. The maximum file size that I can upload is 512mb, as mentioned in the popup when I hover the "upload button". Maybe something is different in your server/setup which may lead to limit the upload's filesize.

If you need further information don't hesitate to contact us.

Good luck!

share|improve this answer
i installed the owncloud but it seems to have uploading problem. i cant upload files... i also dont know how to change the 770 permission..command that should be used... please advise... thank you – user59907 May 3 '12 at 8:57
The command to be used in order to change the permissions is [ sudo chmod 770 FOLDERNAME -R ] where "foldername" is where you installed your owncloud, maybe you have placed it under "/var/www/owncloud", otherwise, use your absolute path to owncloud. The "-R" option will produce the same permissions to be applied to all the stuff inside of the owncloud folder. If you can't upload files can be related to the permissions. Give this a try and if you need further help please let us know how did you manage to install owncloud and its absolute path. Good luck! – Geppettvs D'Constanzo May 3 '12 at 15:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.