usb0 problems with raspberry pi
i have recently bought a raspberry pi so i can learn "linux" and other stuff with it, i loaded it with noobs and add raspbian and ubuntu mate (this port from xda forums) and everything works well. than i decided to try and use vnc to have my phone (Galaxy s3) be used as the display. i tried to follow this tutorial but after i boot the pi and run ifconfig (both when the phone is and isn't connected) i can't see usb0
so after further investigation when i run ifup usb0 i get "cannot find device usb0", does anyone no a solution?
note (i have tried this with ubuntu mate and have yet to try with raspbian)
linux raspberry-pi
bumped to the homepage by Community♦ 31 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
i have recently bought a raspberry pi so i can learn "linux" and other stuff with it, i loaded it with noobs and add raspbian and ubuntu mate (this port from xda forums) and everything works well. than i decided to try and use vnc to have my phone (Galaxy s3) be used as the display. i tried to follow this tutorial but after i boot the pi and run ifconfig (both when the phone is and isn't connected) i can't see usb0
so after further investigation when i run ifup usb0 i get "cannot find device usb0", does anyone no a solution?
note (i have tried this with ubuntu mate and have yet to try with raspbian)
linux raspberry-pi
bumped to the homepage by Community♦ 31 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
i have recently bought a raspberry pi so i can learn "linux" and other stuff with it, i loaded it with noobs and add raspbian and ubuntu mate (this port from xda forums) and everything works well. than i decided to try and use vnc to have my phone (Galaxy s3) be used as the display. i tried to follow this tutorial but after i boot the pi and run ifconfig (both when the phone is and isn't connected) i can't see usb0
so after further investigation when i run ifup usb0 i get "cannot find device usb0", does anyone no a solution?
note (i have tried this with ubuntu mate and have yet to try with raspbian)
linux raspberry-pi
i have recently bought a raspberry pi so i can learn "linux" and other stuff with it, i loaded it with noobs and add raspbian and ubuntu mate (this port from xda forums) and everything works well. than i decided to try and use vnc to have my phone (Galaxy s3) be used as the display. i tried to follow this tutorial but after i boot the pi and run ifconfig (both when the phone is and isn't connected) i can't see usb0
so after further investigation when i run ifup usb0 i get "cannot find device usb0", does anyone no a solution?
note (i have tried this with ubuntu mate and have yet to try with raspbian)
linux raspberry-pi
linux raspberry-pi
asked Feb 13 '16 at 20:02
lee jenshillee jenshil
111
111
bumped to the homepage by Community♦ 31 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 31 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
The Linux distro the author of your document used refers to the network interface of the Raspberry Pi as usb0
. The Raspberry Pi uses a USB based Ethernet adapter, but the naming convention is up to the distro developers and therefore can change between various flavours of Linux. The distro on my Pi (Raspbian) has this as eth0
.
Try running ip link
to see what devices you have. On mine, I get:
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP mode DEFAULT qlen 1000
link/ether b8:27:eb:b7:1a:aa brd ff:ff:ff:ff:ff:ff
This shows the loopback device lo
and my Ethernet device eth0
. If the ip
command isn't available on your distro, then try running ifconfig
instead.
Whichever name you find for your Ethernet device, you should use that instead of usb0
in the document.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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%2funix.stackexchange.com%2fquestions%2f262087%2fusb0-problems-with-raspberry-pi%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
The Linux distro the author of your document used refers to the network interface of the Raspberry Pi as usb0
. The Raspberry Pi uses a USB based Ethernet adapter, but the naming convention is up to the distro developers and therefore can change between various flavours of Linux. The distro on my Pi (Raspbian) has this as eth0
.
Try running ip link
to see what devices you have. On mine, I get:
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP mode DEFAULT qlen 1000
link/ether b8:27:eb:b7:1a:aa brd ff:ff:ff:ff:ff:ff
This shows the loopback device lo
and my Ethernet device eth0
. If the ip
command isn't available on your distro, then try running ifconfig
instead.
Whichever name you find for your Ethernet device, you should use that instead of usb0
in the document.
add a comment |
The Linux distro the author of your document used refers to the network interface of the Raspberry Pi as usb0
. The Raspberry Pi uses a USB based Ethernet adapter, but the naming convention is up to the distro developers and therefore can change between various flavours of Linux. The distro on my Pi (Raspbian) has this as eth0
.
Try running ip link
to see what devices you have. On mine, I get:
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP mode DEFAULT qlen 1000
link/ether b8:27:eb:b7:1a:aa brd ff:ff:ff:ff:ff:ff
This shows the loopback device lo
and my Ethernet device eth0
. If the ip
command isn't available on your distro, then try running ifconfig
instead.
Whichever name you find for your Ethernet device, you should use that instead of usb0
in the document.
add a comment |
The Linux distro the author of your document used refers to the network interface of the Raspberry Pi as usb0
. The Raspberry Pi uses a USB based Ethernet adapter, but the naming convention is up to the distro developers and therefore can change between various flavours of Linux. The distro on my Pi (Raspbian) has this as eth0
.
Try running ip link
to see what devices you have. On mine, I get:
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP mode DEFAULT qlen 1000
link/ether b8:27:eb:b7:1a:aa brd ff:ff:ff:ff:ff:ff
This shows the loopback device lo
and my Ethernet device eth0
. If the ip
command isn't available on your distro, then try running ifconfig
instead.
Whichever name you find for your Ethernet device, you should use that instead of usb0
in the document.
The Linux distro the author of your document used refers to the network interface of the Raspberry Pi as usb0
. The Raspberry Pi uses a USB based Ethernet adapter, but the naming convention is up to the distro developers and therefore can change between various flavours of Linux. The distro on my Pi (Raspbian) has this as eth0
.
Try running ip link
to see what devices you have. On mine, I get:
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP mode DEFAULT qlen 1000
link/ether b8:27:eb:b7:1a:aa brd ff:ff:ff:ff:ff:ff
This shows the loopback device lo
and my Ethernet device eth0
. If the ip
command isn't available on your distro, then try running ifconfig
instead.
Whichever name you find for your Ethernet device, you should use that instead of usb0
in the document.
answered Feb 13 '16 at 22:01
garethTheRedgarethTheRed
24.6k36380
24.6k36380
add a comment |
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- 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%2funix.stackexchange.com%2fquestions%2f262087%2fusb0-problems-with-raspberry-pi%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