libusb-0.1.so.4 shared lib error in ubuntu 64 bit system
Multi tool use
I am trying to install ZTE MF191 driver in ubuntu 12.04 64 bit machine. I am not sure is it support 64 bit or not. But it works fine in 32bit system. These driver package has a executable file named zr When i try to run this it throws an error
libusb-0.1.so.4: cannot open shared object file: No such file or directory
I googled it but can't find a way to install(lib) it. Some people suggested to install 32bit version but i can't find one in synaptic. Please help.
64-bit shared-library
add a comment |
I am trying to install ZTE MF191 driver in ubuntu 12.04 64 bit machine. I am not sure is it support 64 bit or not. But it works fine in 32bit system. These driver package has a executable file named zr When i try to run this it throws an error
libusb-0.1.so.4: cannot open shared object file: No such file or directory
I googled it but can't find a way to install(lib) it. Some people suggested to install 32bit version but i can't find one in synaptic. Please help.
64-bit shared-library
add a comment |
I am trying to install ZTE MF191 driver in ubuntu 12.04 64 bit machine. I am not sure is it support 64 bit or not. But it works fine in 32bit system. These driver package has a executable file named zr When i try to run this it throws an error
libusb-0.1.so.4: cannot open shared object file: No such file or directory
I googled it but can't find a way to install(lib) it. Some people suggested to install 32bit version but i can't find one in synaptic. Please help.
64-bit shared-library
I am trying to install ZTE MF191 driver in ubuntu 12.04 64 bit machine. I am not sure is it support 64 bit or not. But it works fine in 32bit system. These driver package has a executable file named zr When i try to run this it throws an error
libusb-0.1.so.4: cannot open shared object file: No such file or directory
I googled it but can't find a way to install(lib) it. Some people suggested to install 32bit version but i can't find one in synaptic. Please help.
64-bit shared-library
64-bit shared-library
asked Jun 22 '13 at 11:48
shantanushantanu
4,636115188
4,636115188
add a comment |
add a comment |
4 Answers
4
active
oldest
votes
To install the 32-bit version, run:
apt-get install libusb-0.1-4:i386
This only works if MultiArch is enabled (maybe it doesn't if you upgraded from an older Ubuntu version). Look for foreign-architecture i386
in /etc/dpkg/dpkg.cfg.d/multiarch to check if MultiArch is enabled, and if it doesn't, run echo "foreign-architecture i386" | sudo tee /etc/dpkg/dpkg.cfg.d/multiarch
to enable MultiArch and apt-get update
to get the new package lists.
add a comment |
to install libusb use sudo apt-get install libusb-0.1-4
Thanks for your quick reply. lisusb-0.1-4 is already installed.
– shantanu
Jun 22 '13 at 13:50
Thank you for your answer it fixed the matter for me there: askubuntu.com/questions/868063/…
– Natim
Jan 11 '17 at 14:45
add a comment |
It failed for me even after sudo apt-get install libusb-0.1-4:i386
/sudo apt-get install libusb-0.1-4
so I did sudo apt-get install libusb-dev
and it worked fine on my Ubuntu 64bit system
Had the same issue, your solution worked for me, thanks.
– Mtl Dev
Sep 18 '18 at 18:53
add a comment |
This error still exists in Ubuntu 18.04 LTS; my workaround was to install libusb-dev
. This resolved it for me.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f311401%2flibusb-0-1-so-4-shared-lib-error-in-ubuntu-64-bit-system%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
To install the 32-bit version, run:
apt-get install libusb-0.1-4:i386
This only works if MultiArch is enabled (maybe it doesn't if you upgraded from an older Ubuntu version). Look for foreign-architecture i386
in /etc/dpkg/dpkg.cfg.d/multiarch to check if MultiArch is enabled, and if it doesn't, run echo "foreign-architecture i386" | sudo tee /etc/dpkg/dpkg.cfg.d/multiarch
to enable MultiArch and apt-get update
to get the new package lists.
add a comment |
To install the 32-bit version, run:
apt-get install libusb-0.1-4:i386
This only works if MultiArch is enabled (maybe it doesn't if you upgraded from an older Ubuntu version). Look for foreign-architecture i386
in /etc/dpkg/dpkg.cfg.d/multiarch to check if MultiArch is enabled, and if it doesn't, run echo "foreign-architecture i386" | sudo tee /etc/dpkg/dpkg.cfg.d/multiarch
to enable MultiArch and apt-get update
to get the new package lists.
add a comment |
To install the 32-bit version, run:
apt-get install libusb-0.1-4:i386
This only works if MultiArch is enabled (maybe it doesn't if you upgraded from an older Ubuntu version). Look for foreign-architecture i386
in /etc/dpkg/dpkg.cfg.d/multiarch to check if MultiArch is enabled, and if it doesn't, run echo "foreign-architecture i386" | sudo tee /etc/dpkg/dpkg.cfg.d/multiarch
to enable MultiArch and apt-get update
to get the new package lists.
To install the 32-bit version, run:
apt-get install libusb-0.1-4:i386
This only works if MultiArch is enabled (maybe it doesn't if you upgraded from an older Ubuntu version). Look for foreign-architecture i386
in /etc/dpkg/dpkg.cfg.d/multiarch to check if MultiArch is enabled, and if it doesn't, run echo "foreign-architecture i386" | sudo tee /etc/dpkg/dpkg.cfg.d/multiarch
to enable MultiArch and apt-get update
to get the new package lists.
answered Jun 22 '13 at 15:07
Eric CarvalhoEric Carvalho
41.7k17115146
41.7k17115146
add a comment |
add a comment |
to install libusb use sudo apt-get install libusb-0.1-4
Thanks for your quick reply. lisusb-0.1-4 is already installed.
– shantanu
Jun 22 '13 at 13:50
Thank you for your answer it fixed the matter for me there: askubuntu.com/questions/868063/…
– Natim
Jan 11 '17 at 14:45
add a comment |
to install libusb use sudo apt-get install libusb-0.1-4
Thanks for your quick reply. lisusb-0.1-4 is already installed.
– shantanu
Jun 22 '13 at 13:50
Thank you for your answer it fixed the matter for me there: askubuntu.com/questions/868063/…
– Natim
Jan 11 '17 at 14:45
add a comment |
to install libusb use sudo apt-get install libusb-0.1-4
to install libusb use sudo apt-get install libusb-0.1-4
answered Jun 22 '13 at 13:24
BiggJJBiggJJ
1,123722
1,123722
Thanks for your quick reply. lisusb-0.1-4 is already installed.
– shantanu
Jun 22 '13 at 13:50
Thank you for your answer it fixed the matter for me there: askubuntu.com/questions/868063/…
– Natim
Jan 11 '17 at 14:45
add a comment |
Thanks for your quick reply. lisusb-0.1-4 is already installed.
– shantanu
Jun 22 '13 at 13:50
Thank you for your answer it fixed the matter for me there: askubuntu.com/questions/868063/…
– Natim
Jan 11 '17 at 14:45
Thanks for your quick reply. lisusb-0.1-4 is already installed.
– shantanu
Jun 22 '13 at 13:50
Thanks for your quick reply. lisusb-0.1-4 is already installed.
– shantanu
Jun 22 '13 at 13:50
Thank you for your answer it fixed the matter for me there: askubuntu.com/questions/868063/…
– Natim
Jan 11 '17 at 14:45
Thank you for your answer it fixed the matter for me there: askubuntu.com/questions/868063/…
– Natim
Jan 11 '17 at 14:45
add a comment |
It failed for me even after sudo apt-get install libusb-0.1-4:i386
/sudo apt-get install libusb-0.1-4
so I did sudo apt-get install libusb-dev
and it worked fine on my Ubuntu 64bit system
Had the same issue, your solution worked for me, thanks.
– Mtl Dev
Sep 18 '18 at 18:53
add a comment |
It failed for me even after sudo apt-get install libusb-0.1-4:i386
/sudo apt-get install libusb-0.1-4
so I did sudo apt-get install libusb-dev
and it worked fine on my Ubuntu 64bit system
Had the same issue, your solution worked for me, thanks.
– Mtl Dev
Sep 18 '18 at 18:53
add a comment |
It failed for me even after sudo apt-get install libusb-0.1-4:i386
/sudo apt-get install libusb-0.1-4
so I did sudo apt-get install libusb-dev
and it worked fine on my Ubuntu 64bit system
It failed for me even after sudo apt-get install libusb-0.1-4:i386
/sudo apt-get install libusb-0.1-4
so I did sudo apt-get install libusb-dev
and it worked fine on my Ubuntu 64bit system
answered Mar 2 '18 at 7:36
Sagar SakreSagar Sakre
1213
1213
Had the same issue, your solution worked for me, thanks.
– Mtl Dev
Sep 18 '18 at 18:53
add a comment |
Had the same issue, your solution worked for me, thanks.
– Mtl Dev
Sep 18 '18 at 18:53
Had the same issue, your solution worked for me, thanks.
– Mtl Dev
Sep 18 '18 at 18:53
Had the same issue, your solution worked for me, thanks.
– Mtl Dev
Sep 18 '18 at 18:53
add a comment |
This error still exists in Ubuntu 18.04 LTS; my workaround was to install libusb-dev
. This resolved it for me.
add a comment |
This error still exists in Ubuntu 18.04 LTS; my workaround was to install libusb-dev
. This resolved it for me.
add a comment |
This error still exists in Ubuntu 18.04 LTS; my workaround was to install libusb-dev
. This resolved it for me.
This error still exists in Ubuntu 18.04 LTS; my workaround was to install libusb-dev
. This resolved it for me.
edited Jan 22 at 2:41
Benjamin R
1,070816
1,070816
answered Jan 21 at 17:16
Thomas ZahreddinThomas Zahreddin
91
91
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f311401%2flibusb-0-1-so-4-shared-lib-error-in-ubuntu-64-bit-system%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
dDJR8DXB5kz0fJF,Ge,tapl95iGw1rfK lV2uUtPxO9,6yZmXtwt BhLOKYVRVpmL7ltMSSBVz W,GEZq3