ownCloud command line client owncloudcmd
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgO9GURib1T8z7lCwjOGLQaGtrueEthgQ8LO42ZX8cOfTqDK4jvDDpKkLFwf2J49kYCMNW7d4ABih_XCb_2UXdq5fPJDkoyg7-8g_YfRUot-XnaXkNYycsNp7lA5_TW9td0FFpLQ2APzKcZ/s1600/1.jpg)
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhYQ0N5W1qAOxLP7t7iOM6O6AzbZnkXUy16s7P_CWfOb5UbTQY_aDsc727chyphenhyphen5W4IppVNernMMQeaUFTB_rFzAd95_CDt-tnwN-nBx6JyUp2duGjPaL5-VgNO41AVsA_vu30EJcipdDG409/s400/Clash+Royale+CLAN+TAG%2523URR8PPP.png)
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty margin-bottom:0;
up vote
1
down vote
favorite
The ownCloud documentation mentions a command line client owncloudcmd
which is supposed to be installed as part of the ownCloud Client package.
I have the owncloud-client
package from the official repositories installed on Ubuntu 18.04 (version 2.4.1). The GUI client works but I cannot find this owncloudcmd
executable.
Does anybody know why the Ubuntu package doesn't contain owncloudcmd
, and how I can install it?
command-line 18.04 owncloud-client
add a comment |Â
up vote
1
down vote
favorite
The ownCloud documentation mentions a command line client owncloudcmd
which is supposed to be installed as part of the ownCloud Client package.
I have the owncloud-client
package from the official repositories installed on Ubuntu 18.04 (version 2.4.1). The GUI client works but I cannot find this owncloudcmd
executable.
Does anybody know why the Ubuntu package doesn't contain owncloudcmd
, and how I can install it?
command-line 18.04 owncloud-client
add a comment |Â
up vote
1
down vote
favorite
up vote
1
down vote
favorite
The ownCloud documentation mentions a command line client owncloudcmd
which is supposed to be installed as part of the ownCloud Client package.
I have the owncloud-client
package from the official repositories installed on Ubuntu 18.04 (version 2.4.1). The GUI client works but I cannot find this owncloudcmd
executable.
Does anybody know why the Ubuntu package doesn't contain owncloudcmd
, and how I can install it?
command-line 18.04 owncloud-client
The ownCloud documentation mentions a command line client owncloudcmd
which is supposed to be installed as part of the ownCloud Client package.
I have the owncloud-client
package from the official repositories installed on Ubuntu 18.04 (version 2.4.1). The GUI client works but I cannot find this owncloudcmd
executable.
Does anybody know why the Ubuntu package doesn't contain owncloudcmd
, and how I can install it?
command-line 18.04 owncloud-client
edited yesterday
![](https://i.stack.imgur.com/9L8vd.png?s=32&g=1)
![](https://i.stack.imgur.com/9L8vd.png?s=32&g=1)
dessert
19.1k55392
19.1k55392
asked 2 days ago
Erwan
605
605
add a comment |Â
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
1
down vote
accepted
They split the package in two:
the packageowncloud-client
holds the GUI programowncloud
while
the packageowncloud-client-cmd
holds the CLI programowncloudcmd
The latter doesnâÂÂt depend on the GUI program, which probably is why they split the two â on a headless system you donâÂÂt need the GUI, so no need to install it. To use owncloudcmd
you just need to install the aforementioned package:
sudo apt install owncloud-client-cmd
On Ubuntu 18.04 this installs version 2.4.1 of the program. If for any reason you need the current version 2.4.2 and/or updates to the current version at any time, I recommend installing the Ubuntu PPA from software.opensuse.org. Follow these steps to set it up and install the package (I simplified this a bit):
Remove the repository package (you may skip this step if you didnâÂÂt install it):
sudo apt remove owncloud-client,-cmd
Add the repository:
echo 'deb http://download.opensuse.org/repositories/isv:/ownCloud:/desktop/Ubuntu_18.04/ /' | sudo tee /etc/apt/sources.list.d/isv:ownCloud:desktop.list
Add the repository key:
wget -nv https://download.opensuse.org/repositories/isv:ownCloud:desktop/Ubuntu_18.04/Release.key -O- | sudo apt-key add -
Update the sources and install the newest package version available. As the PPAâÂÂs version is newer, this ignores the official repositoryâÂÂs
owncloud-client
package:sudo apt update && sudo apt install owncloud-client
After this owncloud
and most notably owncloudcmd
work out of the box:
$ owncloudcmd --version
ownCloud version 2.4.2 (build 9883)
Git revision d6e9755121c22b8033d18d496b0e59b7bb752b62
Using Qt 5.6.2, built against Qt 5.6.2
Using 'OpenSSL 1.0.2n 7 Dec 2017'
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
accepted
They split the package in two:
the packageowncloud-client
holds the GUI programowncloud
while
the packageowncloud-client-cmd
holds the CLI programowncloudcmd
The latter doesnâÂÂt depend on the GUI program, which probably is why they split the two â on a headless system you donâÂÂt need the GUI, so no need to install it. To use owncloudcmd
you just need to install the aforementioned package:
sudo apt install owncloud-client-cmd
On Ubuntu 18.04 this installs version 2.4.1 of the program. If for any reason you need the current version 2.4.2 and/or updates to the current version at any time, I recommend installing the Ubuntu PPA from software.opensuse.org. Follow these steps to set it up and install the package (I simplified this a bit):
Remove the repository package (you may skip this step if you didnâÂÂt install it):
sudo apt remove owncloud-client,-cmd
Add the repository:
echo 'deb http://download.opensuse.org/repositories/isv:/ownCloud:/desktop/Ubuntu_18.04/ /' | sudo tee /etc/apt/sources.list.d/isv:ownCloud:desktop.list
Add the repository key:
wget -nv https://download.opensuse.org/repositories/isv:ownCloud:desktop/Ubuntu_18.04/Release.key -O- | sudo apt-key add -
Update the sources and install the newest package version available. As the PPAâÂÂs version is newer, this ignores the official repositoryâÂÂs
owncloud-client
package:sudo apt update && sudo apt install owncloud-client
After this owncloud
and most notably owncloudcmd
work out of the box:
$ owncloudcmd --version
ownCloud version 2.4.2 (build 9883)
Git revision d6e9755121c22b8033d18d496b0e59b7bb752b62
Using Qt 5.6.2, built against Qt 5.6.2
Using 'OpenSSL 1.0.2n 7 Dec 2017'
add a comment |Â
up vote
1
down vote
accepted
They split the package in two:
the packageowncloud-client
holds the GUI programowncloud
while
the packageowncloud-client-cmd
holds the CLI programowncloudcmd
The latter doesnâÂÂt depend on the GUI program, which probably is why they split the two â on a headless system you donâÂÂt need the GUI, so no need to install it. To use owncloudcmd
you just need to install the aforementioned package:
sudo apt install owncloud-client-cmd
On Ubuntu 18.04 this installs version 2.4.1 of the program. If for any reason you need the current version 2.4.2 and/or updates to the current version at any time, I recommend installing the Ubuntu PPA from software.opensuse.org. Follow these steps to set it up and install the package (I simplified this a bit):
Remove the repository package (you may skip this step if you didnâÂÂt install it):
sudo apt remove owncloud-client,-cmd
Add the repository:
echo 'deb http://download.opensuse.org/repositories/isv:/ownCloud:/desktop/Ubuntu_18.04/ /' | sudo tee /etc/apt/sources.list.d/isv:ownCloud:desktop.list
Add the repository key:
wget -nv https://download.opensuse.org/repositories/isv:ownCloud:desktop/Ubuntu_18.04/Release.key -O- | sudo apt-key add -
Update the sources and install the newest package version available. As the PPAâÂÂs version is newer, this ignores the official repositoryâÂÂs
owncloud-client
package:sudo apt update && sudo apt install owncloud-client
After this owncloud
and most notably owncloudcmd
work out of the box:
$ owncloudcmd --version
ownCloud version 2.4.2 (build 9883)
Git revision d6e9755121c22b8033d18d496b0e59b7bb752b62
Using Qt 5.6.2, built against Qt 5.6.2
Using 'OpenSSL 1.0.2n 7 Dec 2017'
add a comment |Â
up vote
1
down vote
accepted
up vote
1
down vote
accepted
They split the package in two:
the packageowncloud-client
holds the GUI programowncloud
while
the packageowncloud-client-cmd
holds the CLI programowncloudcmd
The latter doesnâÂÂt depend on the GUI program, which probably is why they split the two â on a headless system you donâÂÂt need the GUI, so no need to install it. To use owncloudcmd
you just need to install the aforementioned package:
sudo apt install owncloud-client-cmd
On Ubuntu 18.04 this installs version 2.4.1 of the program. If for any reason you need the current version 2.4.2 and/or updates to the current version at any time, I recommend installing the Ubuntu PPA from software.opensuse.org. Follow these steps to set it up and install the package (I simplified this a bit):
Remove the repository package (you may skip this step if you didnâÂÂt install it):
sudo apt remove owncloud-client,-cmd
Add the repository:
echo 'deb http://download.opensuse.org/repositories/isv:/ownCloud:/desktop/Ubuntu_18.04/ /' | sudo tee /etc/apt/sources.list.d/isv:ownCloud:desktop.list
Add the repository key:
wget -nv https://download.opensuse.org/repositories/isv:ownCloud:desktop/Ubuntu_18.04/Release.key -O- | sudo apt-key add -
Update the sources and install the newest package version available. As the PPAâÂÂs version is newer, this ignores the official repositoryâÂÂs
owncloud-client
package:sudo apt update && sudo apt install owncloud-client
After this owncloud
and most notably owncloudcmd
work out of the box:
$ owncloudcmd --version
ownCloud version 2.4.2 (build 9883)
Git revision d6e9755121c22b8033d18d496b0e59b7bb752b62
Using Qt 5.6.2, built against Qt 5.6.2
Using 'OpenSSL 1.0.2n 7 Dec 2017'
They split the package in two:
the packageowncloud-client
holds the GUI programowncloud
while
the packageowncloud-client-cmd
holds the CLI programowncloudcmd
The latter doesnâÂÂt depend on the GUI program, which probably is why they split the two â on a headless system you donâÂÂt need the GUI, so no need to install it. To use owncloudcmd
you just need to install the aforementioned package:
sudo apt install owncloud-client-cmd
On Ubuntu 18.04 this installs version 2.4.1 of the program. If for any reason you need the current version 2.4.2 and/or updates to the current version at any time, I recommend installing the Ubuntu PPA from software.opensuse.org. Follow these steps to set it up and install the package (I simplified this a bit):
Remove the repository package (you may skip this step if you didnâÂÂt install it):
sudo apt remove owncloud-client,-cmd
Add the repository:
echo 'deb http://download.opensuse.org/repositories/isv:/ownCloud:/desktop/Ubuntu_18.04/ /' | sudo tee /etc/apt/sources.list.d/isv:ownCloud:desktop.list
Add the repository key:
wget -nv https://download.opensuse.org/repositories/isv:ownCloud:desktop/Ubuntu_18.04/Release.key -O- | sudo apt-key add -
Update the sources and install the newest package version available. As the PPAâÂÂs version is newer, this ignores the official repositoryâÂÂs
owncloud-client
package:sudo apt update && sudo apt install owncloud-client
After this owncloud
and most notably owncloudcmd
work out of the box:
$ owncloudcmd --version
ownCloud version 2.4.2 (build 9883)
Git revision d6e9755121c22b8033d18d496b0e59b7bb752b62
Using Qt 5.6.2, built against Qt 5.6.2
Using 'OpenSSL 1.0.2n 7 Dec 2017'
edited 23 hours ago
answered 2 days ago
![](https://i.stack.imgur.com/9L8vd.png?s=32&g=1)
![](https://i.stack.imgur.com/9L8vd.png?s=32&g=1)
dessert
19.1k55392
19.1k55392
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1062057%2fowncloud-command-line-client-owncloudcmd%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password