How to install BeeBeep messenger in Ubuntu 15.04?

0

2

I want to install beebeep messenger in my laptop running Ubuntu 15.04 - how can I install this? I also so many code for this but cannot install this.

Mayank Vadiya

Posted 2015-09-22T07:08:53.927

Reputation: 113

Answers

1

  1. Download BeeBeep for Linux. Open a terminal (Ctrl+Alt+T) and run :

    wget http://downloads.sourceforge.net/project/beebeep/Linux/beebeep-2.0.3-amd64.tar.gz
    
  2. Unzip it :

    tar -zxvf beebeep-2.0.3-amd64.tar.gz
    
  3. Add execution permission

    cd beebeep-2.0.3-amd64/
    sudo chmod +x beebeep
    
  4. Install needed librairies :

    sudo apt-get install libxcb-screensaver0
    
  5. Launch the application by double clicking on beebeep or by running in a terminal :

    ./beebeep
    

When the application is launched, right click on it in the taskbar and select Lock to Launcher.


Tested and working on my Ubuntu 15.04 setup.

hg8

Posted 2015-09-22T07:08:53.927

Reputation: 237

i have already downloaded beebeep-2.0.0-amd64. – Mayank Vadiya – 2015-09-22T07:30:32.013

Begin at step 2) then... – hg8 – 2015-09-22T07:31:32.997

but its folder not zip file and this folder is in Documents folder. – Mayank Vadiya – 2015-09-22T07:32:42.583

This is the wrong version, it is the Windows version. Please just begin at step 1) it does not matter if you already have downloaded it. – hg8 – 2015-09-22T07:35:47.443

ok i will try your code – Mayank Vadiya – 2015-09-22T07:36:43.347

0

You can find a linux guide here.

Open a terminal and launch this command:

sudo apt-get install libqt5core5a libqt5gui5 libqt5widgets5 libqt5network5 libqt5printsupport5 libqt5multimedia5 libqt5multimedia5-plugins libxcb-screensaver0

Marco Mastroddi

Posted 2015-09-22T07:08:53.927

Reputation: 1