PDA

View Full Version : installing cairo dock w/ Xfce


vinoman
5th September 2011, 12:31 PM
I running F15 w/ Xfce and I wanted to know how to install cairo dock and if it works well with Xfce?

cymbaline42
5th September 2011, 05:38 PM
Run in terminal: su -c 'yum install cairo-dock'

If you prefer GUI, open Add/Remove Software and search for 'cairo-dock'

vinoman
5th September 2011, 05:47 PM

Thanks, I like using the command line. What does the -c do? as opposed to # yum install cairo-dock?

Once its installed, does it just take over the standard Xfce dock? Can you go back to it later if you like?

DBelton
5th September 2011, 05:58 PM
you also have to have the rpmfusion repo's installed since cairo-dock is there and not in the standard fedora repo.


su -c 'yum localinstall --nogpgcheck http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-stable.noarch.rpm'


Edit:

The su -c passes a single command to the shell
it is basically identical to:

su
(root password)
yum install cairo-dock
exit

cymbaline42
5th September 2011, 06:04 PM
'-c' gives you superuser privileges for that ONE command only.

It doesn't replace it, they can run together. You can either autohide or close the XFCE default panel while cairo-dock is running.

MeMechant
6th November 2011, 06:22 PM
Hi,

If i want to remove cairo-dock it seems that "sudo yum remove cairo-dock" doesn't do the trick? what command should i use ? I use the install method describe in this post.

blittle
16th November 2011, 06:00 PM
The command is

yum erase [package]

So you'd need to do:

sudo yum erase cairo-dock

ozjd
16th November 2011, 09:41 PM
The command is

yum erase [package]

So you'd need to do:

sudo yum erase cairo-dock

According to 'man yum' remove and erase are identical. Either should work.