Solved: R Pi 2 No Ethernet
|
18th Jun, 2015, 12:17 AM
(This post was last modified: 18th Jun, 2015 02:22 AM by deHakkelaar.)
Post: #7
|
|||
|
|||
RE: R Pi 2 No Ethernet
@DerfismX2,
Just as long as you stick with the 2A one and dont try to troubleshoot the .7A one. Have you tried without a DHCP reservation, just plain DHCP ? When you configure a static IP, can you post your network configuration: Terminal cat /etc/network/interfaces Did you try another ethernet cable ? Try connect the Pi to another port on your router ? If possible, drop output for "dmesg" command on pastebin and post the pastebin link here please? http://pastebin.com/ EDIT: If you dont have a means to grab the "dmesg" output because you dont have network, you can output dmesg to file onto the FAT partition "/boot" on the SD card: Terminal dmesg | sudo tee /boot/dmesg.log Afterwards, you can plug the SD card in your PC and pull the "dmesg.log" file from the FAT partition. Do power off the Pi when you remove or insert the SD card! Some usefull commands: Terminal # Display all available interfaces: ifconfig -a # Down the eth0 interface: sudo ifdown eth0 # Up the eth0 interface (with verbose log messages): sudo ifup -v eth0 # Release DHCP lease: sudo dhclient -r eth0 # Renew DHCP lease (with verbose log messages): sudo dhclient -v eth0 There are only 10 types of people in the world: those who understand binary, and those who don't |
|||
« Next Oldest | Next Newest »
|
Messages In This Thread |
R Pi 2 No Ethernet - DerfismX2 - 11th Jun, 2015, 06:18 AM
RE: R Pi 2 No Ethernet - StartledCat - 15th Jun, 2015, 05:54 AM
RE: R Pi 2 No Ethernet - DerfismX2 - 16th Jun, 2015, 07:39 AM
RE: R Pi 2 No Ethernet - deHakkelaar - 17th Jun, 2015, 12:24 AM
RE: R Pi 2 No Ethernet - DerfismX2 - 17th Jun, 2015, 02:17 AM
RE: R Pi 2 No Ethernet - f1vefour - 17th Jun, 2015, 10:44 AM
RE: R Pi 2 No Ethernet - deHakkelaar - 18th Jun, 2015 12:17 AM
RE: R Pi 2 No Ethernet - DerfismX2 - 18th Jun, 2015, 04:06 AM
RE: R Pi 2 No Ethernet - DerfismX2 - 20th Jun, 2015, 04:22 AM
RE: R Pi 2 No Ethernet - deHakkelaar - 20th Jun, 2015, 10:58 PM
RE: R Pi 2 No Ethernet - f1vefour - 20th Jun, 2015, 05:33 AM
|