breach_core icon indicating copy to clipboard operation
breach_core copied to clipboard

libudev.so.0: cannot open shared object file on Ubuntu 14.10

Open pixelr0 opened this issue 10 years ago • 10 comments

i get this error when running breach in Ubuntu 14.10 AMD 64

pixel@pixel:~/Downloads/breach-v0.3.22-alpha.6-linux-x64$ CHROME_DEVEL_SANDBOX=/opt/google/chrome/chrome-sandbox ./breach /home/pixel/Downloads/breach-v0.3.22-alpha.6-linux-x64/AUTO_UPDATE_BUNDLE/exo_browser/exo_browser: error while loading shared libraries: libudev.so.0: cannot open shared object file: No such file or directory

there is /opt/google/chrome/libudev.so.0

/lib/x86_64-linux-gnu/libudev.so.1 /lib/x86_64-linux-gnu/libudev.so.1.4.0

pixelr0 avatar Aug 01 '14 13:08 pixelr0

Try running as

LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/google/chrome CHROME_DEVEL_SANDBOX=/opt/google/chrome/chrome-sandbox ./breach

morganrallen avatar Aug 01 '14 16:08 morganrallen

thanks @morganrallen that worked

pixelr0 avatar Aug 09 '14 10:08 pixelr0

i'm keeping this issue opened because this is a workaround, doesn't really fix the problem on Ubuntu.

pixelr0 avatar Aug 29 '14 14:08 pixelr0

I solve the same problem on arch linux installing from yaourt : aur/libudev.so.0 :)

archie-rp avatar Aug 29 '14 23:08 archie-rp

oh you, arch user :> unfortunately libudev.so.0 is not in Ubuntu's repository (13.10+)

pixelr0 avatar Aug 30 '14 04:08 pixelr0

try this http://askubuntu.com/questions/369310/how-to-fix-missing-libudev-so-0-for-chrome-to-start-again

archie-rp avatar Aug 30 '14 16:08 archie-rp

check if you have that file "sudo find / -name libudev*" then do like ln -s /usr/lib/libudev.so.0 -> /usr/lib/libudev.so

archie-rp avatar Aug 30 '14 16:08 archie-rp

You can fix the issue by creating an according symlink.

On 64-bit systems things should go somewhat like this:

sudo ln -s /lib/x86_64-linux-gnu/libudev.so.1 /usr/lib/libudev.so.0

On 32-bit systems things need the related 32-bit paths:

sudo ln -s /lib/i386-linux-gnu/libudev.so.1  /usr/lib/libudev.so.0

Don’t forget to verify your local version of libudev is indeed "libudev.so.1". If it isn’t, modify that part so that it fits your local libudev version.

ghost avatar Feb 04 '15 06:02 ghost

@e-sushi thanks work for me , The error was cased by Pingendo program (Boostrap layout Crator) ...

MuhamedAuda avatar Feb 21 '15 10:02 MuhamedAuda

Thanks @e-sushi ! works perfectly

sk8darr avatar Mar 16 '16 16:03 sk8darr