Zorba Installation - zorba

How to install Zorba in Ubuntu 12.04? When adding repository {using this command: sudo add-apt-repository ppa:juan457/zorba} , getting error
"Err http://ppa.launchpad.net precise/main Sources 404 Not Found".
can u suggest me how to clear this issue.

The most recent Zorba release (2.2) came out before Ubuntu 12.04 Precise Pangolin, so we didn't build packages for that Ubuntu version.
The next Zorba release (2.5) will be out within the next couple of days, so we will be updating the PPA binaries, including for Ubuntu 12.04.
You may be able to use the Ubuntu 11.10 Oneiric Ocelot packages in Ubuntu 12.04 by adding the following line to /etc/apt/sources.list:
deb http://ppa.launchpad.net/juan457/zorba/ubuntu oneiric main
and then doing "sudo apt-get update; sudo apt-get install zorba". However I can't swear that will work; it's possible some dependent libraries will be different between the two Ubuntu releases.

Related

Using installation script based off YUM on ubuntu 20.04

After countless hours of trying alternatives I've ran out of ideas..
I'm trying to install the Acronis Backup Plugin for CPanel & WHM on Ubuntu 20.04 from this https://applications.cpanel.net/listings/view/Acronis-Backup-plugin-for-WHM-cPanel
However, even after following their own documentation by running this code:
sh <(curl -L https://download.acronis.com/ci/cpanel/stable/install_acronis_cpanel.sh || wget -O -https://download.acronis.com/ci/cpanel/stable/install_acronis_cpanel.sh)
Problem is, the script uses yum install as ive read through the lines of the install_acronis_cpanel.sh
Now my question is, how can I get around this and install this package on ubuntu, because they say there is compatibility for 20.04 if I use RPM but even RPM throws an error of "package not found" when trying to install.
Thanks!

Launching latest version of MonoDevelop on Ubuntu 14.04 LTS

I installed MonoDevelop using following commands:
sudo add-apt-repository ppa:ermshiperete/monodevelop
sudo apt-get update
sudo apt-get install monodevelop-current
because I wanted latest version.
sudo apt-get install monodevelop
results in installing 4.x version which I wasn't interested in.
Now I can launch application via terminal using:
/opt/monodevelop/bin/monodevelop-launcher.sh
but "monodevelop" command results in following information:
The program 'monodevelop' is currently not installed. You can install it by typing:
sudo apt-get install monodevelop
and creating monodevelop.desktop file doesn't result in having program icon in launcher. Any ideas what I should do to be able to run MonoDevelop using "monodevelop" command?
I installed MonoDevelop using following commands:
sudo add-apt-repository ppa:ermshiperete/monodevelop
Do you realize that when adding a repository, you're trusting this user (what he decides to package in his repository), and that the version you get is the one that he himself alone decided to package?
I recommend you to add the repository of the official developers/packagers instead. Follow the instructions here (but uninstall any old packages first).

phpredis extension doesn't work, unable to load 'redis.so'

I installed nginx, php, php-fpm, php-pecl-redis by yum.
All of them work but the last one.
When I run /usr/sbin/php-fpm, I got this:
PHP Warning: PHP Startup: Unable to load dynamic library '/usr/lib/php/modules/redis.so' - /usr/lib/php/modules/redis.so: undefined symbol: igbinary_unserialize in Unknown on line 0
I don't know what igbnary_unserialize means and how to fix it.
I checked the redis.so file under right path. I add extension=redis.so to php.ini
PHP version: 5.3.3
PhpRedis version: 2.2.7
I had the same issue. I'm on Ubuntu 16.04 LTS. Running sudo apt-get install php-igbinary resolved the issue for me. I have other issues, but that's what solved this one.
For people who are upgrading their php from 7.0 to 7.4 like me, and not able to get php-redis working. These are the steps I used after following the answers above.
1) remove Redis
sudo apt purge php-redis
2) Install Igbinary
sudo apt-get install php-igbinary
3) Install php-redis again
sudo apt-get install php-redis
I did the steps above because it seems only php7.0 is recognising the php-redis install but not the currently enabled php7.4
I also recommend removing other versions of PHP if you have should your problem continue unsolved.
Probably an issue with igbinary, is this installed? (try for example: cat /etc/php.d/igbinary.ini).
Here you can find and install igbinary
Related to this bug https://bugs.launchpad.net/ubuntu/+source/php-redis/+bug/1762935
You should remove php-redis from packages:
apt purge php-redis , and install it via pecl install redis
You should add "extension=redis.so" to php.ini
and remove redis from config.d in your php directory:
rm /etc/php/7.2/fpm/conf.d/#20-redis.ini
and
rm /etc/php/7.2/cli/conf.d/#20-redis.ini
restart php fpm and you will see that problem solved
On Ubuntu 20 and PHP 7.4
I did this and it worked :
sudo apt purge php-redis
sudo apt intall php-redis php7.4-redis
TEST redis server :
$ php --ri redis
or
$ redis-cli ping
$ redis-cli info stats
just resolve the same problem:
php-pecl-redis installed by yum will cause this problem.
so you need to install the php-redis manually. wget the package and phpize - configure - make ....

Mono does not appeared to be installed error (winetricks) even though it's installed

I'm trying to install dotnet4.5 using winetricks on Ubuntu12.04 64bit. It keeps on giving me "Mono does not appear to be installed " error though I have mono installed. I ran these two commands to get mono and mono-complete
sudo apt-get mono-vbnc
sudo apt-get mono-complete
The Wine version I am using is 1.6. I have already tried reinstalling it. It's not just dotnet4.5 but all the versions of dotnet give me the same error.
I have already tried askUbuntu forums to no avail.
Try this:
apt-file update && sudo apt-get install `apt-file search mono.pc --package-only`

Facing error while installing Apache2 in Ubuntu 14.04 'has no installation candidate'

I don't know what I did but I'm not able to install apache2 in my Ubuntu 14.04.
When I use sudo apt-get install apache2 I face this error.
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package apache2 is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
However the following packages replace it:
libapache2-mpm-itk:i386 libapache2-mpm-itk
E: Package 'apache2' has no installation candidate
First make sure that your proxy is disabled as that can cause a problem sometimes.
Then run the following.
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install apache2
If that doesn't work you can always compile your own apache2. A tutorial for that is located here: https://www.virgohacks.net/install-apache-2-4-mysql-5-6-php-5-5-source-ubuntu-14-04/
Good luck