cannot install openjdk-8-jdk openjdk-8-jre on Ubuntu 14.04 LTS - ubuntu-14.04

In this tutorial it is recommended to install Ubuntu 14.04 LTS.
I have some installation problems with the JDK and JRE software.
I have looked through forms but still cannot install openjdk-8-jdk openjdk-8-jre on my Ubuntu 14.04 LTS.
I am using "trusty".... Please advise.

Related

How to make a compatible application with CQtDeployer for any version of Linux/Ubuntu?

I deployed my Qt Gui application with CQtDeployer on Ubuntu 18.04.
But, I can't run it on Ubuntu 16.04 / Ubuntu 14.04.
It has an error on version.
How can I fix it?
Just build and deploy your application on ubuntu 14.04
Your distribution not run because you build and deploy application on OS that has new version of (libc/libz) library.
So, If you want to create distribution that will be works correctly on all versions of your OS then you need to build and deploy application must early OS version.
Example
Application that was built on ubuntu 16.04 will be works great on ubuntu 18.04 , 20.04 and may be 22.04
But not 14.04 because minimum required libc level is some as on ubuntu 16.04.
How to get cqdeployer on ubuntu 14.04
Install from snap store:
sudo snap install cqtdeployer
sudo snap connect cqtdeployer:process-control
sudo snap connect cqtdeployer:removable-media
sudo snap connect cqtdeployer:system-backup
And NOTE
The ubuntu 14.04 too old. So i recommend to drop support of ubuntu 14.04.
User Ubuntu 16.04 as main build machine.

rabbitmq-server : Depends: socat but it is not going to be installed. Cannot install rabbitMQ

I have been trying now for a few hours to install rabbitMQ on my linux VM.
I am currently running:
Linux 4.18.0-15-generic x86_64
<pre>Distributor ID: Ubuntu
Description: Ubuntu 18.10
Release: 18.10
Codename: cosmic
I am following the instructions specified on rabbitMQ page
After running sudo apt-get install rabbitmq-server I receive the title error. Can someone confirm that there is no support for version 18.10 cosmic? That is the only thing I can think of that might explain it.
I fixed the problem. I was correct. I had to downgrade the version of Ubuntu I was using from 18.10 to 18.04.

How to install ColdFusion on Ubuntu 16.04? [duplicate]

This question already has an answer here:
How do I go about installing ColdFusion 11 Trial on an Ubuntu 14.04?
(1 answer)
Closed 5 years ago.
I tried installing ColdFusion on my Ubuntu 16.04 with the following commands.
But I'm unable to install it.
Commands used for installation are these:
sudo apt-get update
sudo apt-get install libstdc++5
sudo apt-get install apache2
sudo ./ColdFusion_11_WWE_linux64.bin
After running this command I got an error command not found
It appears ColdFusion 2016 is not officially supported on Ubuntu 16.04. Based on the system requirements specified by ColdFusion, I would recommend not using Ubuntu 16.04, but use Ubuntu 14.04 LTS or 15.04 instead.
From System requirements for ColdFusion 2016 on Linux (Ubuntu highlighted
in bold):
32-bit Red Hat Enterprise Linux 6.X (up to v6.5), Ubuntu 14.04 LTS,
Ubuntu 15.04
64-bit Red Hat Enterprise Linux 6.5, Red Hat Enterprise Linux 7.0 (up
to v7.2), SUSE Linux Enterprise Server 12, Ubuntu 14.04 LTS, Ubuntu
15.04, CentOS Linux 7

Error while installinng libimobiledevice in ubuntu 14.04

After installing libimobiledevice in ubuntu 14.04, when I run command 'ideviceinfo' it is generating error
'Could not connect to lockdownd, error "code -5"'
I have other dependencies - build-essential
libudev-dev,
libimobiledevice6,
libimobiledevice-utils,
libusb-1.0-0-dev,
libimobiledevice-dev,
libzip-dev
Correctly installed with no error.
Can I get some advices about the error ?
You didn't mention how you acquired libimobiledevice - did you install it via apt-get or did you compile it from source?
Ubuntu 14.04 ships with a very old version of libimobiledevice, and there have been changes made to libimobiledevice to provide compatibility with newer versions of iOS which are probably not in Ubuntu 14.04.
We host a PPA which provides up-to-date builds of libimobiledevice; currently only for Ubuntu 16.04 though. You can find it at https://launchpad.net/~quamotion/+archive/ubuntu/ppa/+packages .
Let me know if you need help configuring the PPA and installing the latest libimobiledevice.

How to install JavaPackage on ubuntu

I came across a debian application by the name JavaPackage which can create a debian installation file (.deb) form a java binary (.tar.gz) which you can then install using dpkg -i application_name.deb. With Ubuntu being a debian-based linux distribution, it is possible that it can be installed on ubuntu as well.
How do I go about installing it on Ubuntu/Kubuntu 16.04.2 LTS?
java-package is available in the official ubuntu repositories. All you need to do is update the repository with the latest version then install it as shown below:
sudo apt-get update
sudo apt-get install java-package

Resources