Unable to install chrome on RHEL 7 - google-chrome

Receiving an error message while trying to install chrome in RHEL
Error: Package: google-chrome-stable-90.0.4430.212-1.x86_64
(google-chrome)
Requires: libvulkan.so.1()(64bit) Unable to install this package libvulkan.so.1()(64bit), unable to find a source to download
it.

for RHEL-7:
1. search "vulkan" on https://pkgs.org/search/?q=vulkan
2. download vulkan & vulkan-filesystem for centos-7
3. yum localinstall vulkan*.rpm
4. yum localinstall google-chrome-*.rpm

You need to install vulkan:
yum install vulkan

Related

Unable to install google-chrome-stable 95 on Centos 7

I'm trying to install the latest version of google-chrome-stable 95.0.4638.54 inside a container with CentOS 7 as base image.
My Dockerfile:
FROM centos:7
LABEL maintainer="team#dipcode.com"
ADD ./google-chrome.repo /etc/yum.repos.d/google-chrome.repo
RUN yum clean all \
&& yum -y install google-chrome-stable
The google-chrome.repo:
[google-chrome]
name=google-chrome
baseurl=http://dl.google.com/linux/chrome/rpm/stable/$basearch
enabled=1
gpgcheck=1
gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub
When building the Dockerfile, I'm getting the following error:
Error: Package: google-chrome-stable-95.0.4638.54-1.x86_64 (google-chrome)
Requires: libc.so.6(GLIBC_2.18)(64bit)
As far as I could see, CentOS 7 don't support GLIBC version 2.18 and don't intend to do it.
New versions of Google Chrome will stop supporting CentOS 7? Is there a way to surpass this issue?
It looks like the problem has been solved in a later release of google-chrome-stable.

ERROR: DTC (libfdt) version >= 1.4.2 not present. Please install the DTC (libfdt) devel package

I am trying to compile qemu from source, I'm trying to install qemu for hisilicon, but when I run ./configure I receive the error
ERROR: DTC (libfdt) version >= 1.4.2 not present.
Please install the DTC (libfdt) devel package
I have already installed qemu
sudo apt-get install -y qemu-kvm qemu virt-manager virt-viewer libvirt-bin
and I've already installed libfdt
sudo apt install libfdt-dev
But I'm still getting this message.
How can I install libfdt?
To fix this issue:
I cloned dtc from its repository and extracted the tarball to qemu/dtc/.
Compiled dtc from source first using make
Restarted configuring qemu.
The problem was qemu tries to search for dtc binaries in qemu/dtc. Even if you have installed dtc using sudo apt-get install device-tree-compiler, you will get the above error(mentioned in the question), so you probably need to have the binaries in qemu/dtc.

Kamailio install

First I would like to say I am new in this.
I am trying to install Kamailio on Ubuntu Linux Mint and I have this problem.
It says i dont have that directory.. how can i create it ?
i was following this steps.
https://www.kamailio.org/wiki/install/4.4.x/git
In file included from km_val.c:30:0:
km_val.h:32:19: fatal error: mysql.h: Adresár alebo súbor neexistuje
compilation terminated.
../../Makefile.rules:97: recipe for target 'km_val.o' failed
make1: * [km_val.o] Error 1
Makefile:511: recipe for target 'modules' failed
make: * [modules] Error 1
You have to install libmysqlclient-dev package:
apt install libmysqlclient-dev
On latest Debian-based operating systems that ship either with MySQL or MariaDB, you may have to install default-libmysqlclient-dev:
apt install default-libmysqlclient-dev
It is also recommended to install pkg-config package in order to discover the extra dependencies brought in by the specific mysql client library.

Zenoss core installation compatibility issue with MySQL

I am facing an issue between the Zenoss core installation and MySQL rpms.
The Zenoss core installation won't complete, complaining about mysql-client and mysql-shared versions, even though I have newer versions installed. As suggested in this Quest/answer ,
I also tried to install a 5.5.41 client package but it did not change anything. Here's the situation:
[root#bstfe1032 Zenoss]# yum -y --nogpgcheck localinstall zenoss-4.2.0.el6.x86_64.rpm
[...]
--> Finished Dependency Resolution
Error: Package: zenoss-4.2.0-1586.el6.x86_64 (/zenoss-4.2.0.el6.x86_64)
Requires: mysql-client >= 5.5.13
Error: Package: zenoss-4.2.0-1586.el6.x86_64 (/zenoss-4.2.0.el6.x86_64)
Requires: mysql-shared >= 5.5.13
You could try using --skip-broken to work around the problem
You could try running: rpm -Va --nofiles --nodigest
[root#bstfe1032 Zenoss]# rpm -qa|grep -i mysql
MySQL-client-5.6.22-1.el6.x86_64
MySQL-server-5.6.22-1.el6.x86_64
MySQL-shared-5.6.22-1.el6.x86_64
The Zenoss core install doc points to MySQL packages from mysql.org and this is where I got them.
Any idea of what I should try next ? I am using CentOS 6, this is a testbed and not a production machine because I wanted to give Zenoss core a test drive.
You are mixing "old" packages (zenoss-4.2.0) with too new one (MySQL 5.6) and it's not probably handled correctly in Zenoss core packages.
The best option for you is to use autodeploy script - https://github.com/zenoss/core-autodeploy/blob/4.2.5/core-autodeploy.sh
It will download last Zenoss packages from http://sourceforge.net/projects/zenoss/files/zenoss-4.2/zenoss-4.2.5/
and MySQL packages from ftp://mirror.anl.gov/pub/mysql/Downloads/MySQL-5.5/
See http://wiki.zenoss.org/Install_Zenoss for more information.

Installing datamapper mysql dm-mysql-adapter on redhat

I'm trying to move a small Sinatra app I have going on an Ubuntu box to a redhat box.
While installing gems, I get a "Can't build native extension" error while trying to install the gem dm-mysql-adapter.
I have mysql-devel installed, which I believe is the required library, but it doesn't seem to work.
All the info I can find online is for Ubuntu and says installing libmysqlclient-dev (which doesn't exist for Redhat; again, I believe mysql-devel is the appropriate package).
Any advice for someone using redhat?
you have the correct package "mysql-devel-5.1.48-1" but the gem installs fine on my centos5 box without the package installed, you could try the ruby-mysql gem instead.
[11:13:01][root#HOST:~]# gem search mysql
*** LOCAL GEMS ***
[11:13:03][root#HOST:~]# rpm -qa | grep -i mysql
perl-DBD-MySQL-3.0007-2.el5
mysql-5.0.77-4.el5_5.4
[11:13:11][root#HOST:~]# gem install mysql
Building native extensions. This could take a while...
Successfully installed mysql-2.8.1
1 gem installed
Installing ri documentation for mysql-2.8.1...
...
[11:13:22][root#HOST:~]#