How to install judy packages in oracle linux arm64v8 docker image - docker

I have a oracle linux arm64v8 docker image, And I want to install judy packages(judy-devel) into it.
But I keep getting Error: Unable to find a match: judy-devel
From my research I have found that, judy packages are not supported on the oracle linux arm64v8, is this true??
And Is there any way for me to install judy into my image, may be something that can bypass this "unsupported" issue.
Thanks
Plus- its my first time asking question here I went through the tutorial on how to ask proper question, but I apologies in advance if I make mistakes.

Related

benefit of deploy annaconda over docker or up on host

What is benefit of install annaconda over docker.
For python/pytorch programming. I installed annaconda docker image on Ubunut 20.4
But found many problems need to solve such as Display on opencv2 (already solved). and spyder error on libgl.so.1 cannot found and still no idea how to solve.
So, how about just install annacona on Ubuntu host. Becuase it should working as smoothly well on my job.

How to install USBIP in Docker Container

I want to use USBIP in an Ubuntu 20.04 Docker Container. I tried installing the "linux-tools-generic" Package, but when i run USBIP afterwards i get the message:
You may need to install the following packages for this specific kernel:
linux-tools-5.10.16.3-microsoft-standard-WSL2
linux-cloud-tools-5.10.16.3-microsoft-standard-WSL2
You may also want to install one of the following packages to keep up to date:
linux-tools-standard-WSL2
linux-cloud-tools-standard-WSL2
How can i install these Packages ? Could'nt find them with apt-get.
Since Docker relies on the features of the Linux kernel, you'll need to make sure that you have the USB/IP module compiled into your WSL kernel. It is not there in the stock WSL kernel, so you'll need to build your own. I haven't done this with USB/IP myself, but there are reports from the Home Assistant (home automation) forums that indicate that it works.
See this answer for more details.

How can i install Docker in Deepin 15.11?

The Fist Problem was that i couldn't run the Dockers container in my pc probaly 'cause the version of the SO is 15.11. - I just found ways of install in 15.9 or below. - And i really need the docker or other similar service
I'm not sure you have already installed it or not but hoping that it will be helpful for others at least
Please go through the below GitHub link it helped me installing docker on deepin20 Beta
https://gist.github.com/madkoding/3f9b02c431de5d748dfde6957b8b85ff

Ubuntu 16.04 install php5.3

Hi I need to install php5.3 in my ubuntu 16.04 but I want to keep if it's possible the php7.0 versiĆ³n so I could change versions if i need it.
How can I do this?
Thanks
The "best" way to do this is to use Vagrant. When I say "best" I mean, most maintainable over time and that allows you to keep your current setup.
Install Vagrant
Install VirtualBox
Find a suitable box on the hashicorp site
Create your Vagrant file
Run vagrant up
Alternatively, you can build your own box without pushing it to, or needing to pull from, hashicorp. See the excellent "Packer" project which allows you to define your box using JSON: https://www.packer.io/intro/index.html
Good luck :-)
There are Github projects phpbrew or phpenv.But it's really hard to make them work
Oh, yeah, Vagrant or Docker still might help you, as well as VirtualBox (or something like it)

How to install docker-engine using docker binary without internet connection

I have downloaded docker binary version 1.8.2 and copied that to my backup server (centos server) which doesn't have internet connectivity. I have marked this as executable and started the docker daemon as mentioned in [https://docs.docker.com/engine/installation/binaries/][1]. But it doesn't seem to get installed as a docker service. For all the commands, I have to execute as sudo ./docker-1.8.2 {command}. Is there a way to install docker-engine as a service? Currently sudo docker version shows command not found. I'm a newbie to docker setup. Please advise.
Why not download the rpm package (there are also centos 6 packages), copy to USB stick and then to your server and simply install it with rpm command and that's it. That way you'd get the same installation as if you were to run yum.
Of course you may have some dependencies missing, but you could download all of these as well.
Firstly, if you're downloading bare binaries on an enterprise linux, you're probably doing things in a very bad way. Immediately, you're breaking updates and consistency, and leaving your system in a risky, messy state.
Try using yumdownloader --resolve to get the docker installable and anything it needs.
A better option may be to mirror the installation artifacts, and grab it from the local mirror, but that's beyond the scope if you don't do this already.

Resources