Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

error while loading shared libraries: libaio.so.1: cannot open shared object file: No such file or directory"

sudo apt-get install libaio1 libaio-dev
Comment

error while loading shared libraries: libGL.so.1: cannot open shared object file: No such file or directory

sudo apt-get install ffmpeg libsm6 libxext6  -y
Comment

yay: error while loading shared libraries: libalpm.so.12: cannot open shared object file: No such file or directory

1- Remove yay by running
$ sudo pacman -R yay

2- Make a new directory and change to it (makes for easier cleanup): 
$ mkdir /tmp/yay && cd /tmp/yay

3- Download the latest PKGBUILD for yay by running 
$ curl -OJ 'https://aur.archlinux.org/cgit/aur.git/plain/PKGBUILD?h=yay'

4- Build and install the package by running 
$ makepkg -si

5- Get rid of of the evidence: 
$ rm -rf /tmp/yay
Comment

how to fix error while loading shared libraries: libcrypto.so.1.1: cannot open shared object file: No such file or directory on ubuntu 22.04.01

wget http://nz2.archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2.16_amd64.deb

sudo dpkg -i libssl1.1_1.1.1f-1ubuntu2.16_amd64.deb
Comment

error while loading shared libraries: libmod2.so: cannot open shared object file: No such file or directory

One of the solution is to use

export LD_LIBRARY_PATH=PATH_TO_LIBRARY_LIBMOD2



1. You check the path of libmod2.so

2. Replace in place of PATH_TO_LIBRARY_LIBMOD2

Note: Don't add the filename. It just needs the path.
Comment

PREVIOUS NEXT
Code Example
Shell :: linux create public key 
Shell :: install playwright 
Shell :: vscode get list of installed extensions 
Shell :: terminal unzip 
Shell :: kubectl copy secret namespace 
Shell :: ubuntu install latest node and npm 
Shell :: Fix the upstream dependency conflict, or retry 
Shell :: grab ipaddress in variable linux 
Shell :: how ro rename a foldre powershell 
Shell :: git filter branch recursively 
Shell :: truffle hd 
Shell :: mv batch rename extension 
Shell :: ros rerun a node autimaticaly if it fails 
Shell :: ubuntu disable ssh 
Shell :: create alias ubuntu 
Shell :: ubuntu install rust 
Shell :: find git repo size 
Shell :: find gradle version 
Shell :: change last commit date 
Shell :: origin branch still showing in vscode though deleted 
Shell :: how to debug a specific pod when Replication controller is doing load balancing 
Shell :: git config 
Shell :: remove docker ubuntu 
Shell :: centos zip folder 
Shell :: set pin on mcp23017 using raspberry pi shell 
Shell :: git commit convention 
Shell :: python requirements 
Shell :: git diff exclude file 
Shell :: crontab do action inside folder 
Shell :: stop docker container 
ADD CONTENT
Topic
Content
Source link
Name
6+5 =