Do you want to have the Raspberry Pi icon shown on your Windows Explorer when you insert the RPI SD card in your drive?
If yes, just download this package and follow the inside instructions 🙂
Do you want to have the Raspberry Pi icon shown on your Windows Explorer when you insert the RPI SD card in your drive?
If yes, just download this package and follow the inside instructions 🙂
For setting a static IP for the Raspberry Pi 2 on the latest Raspbian release available at this time (20150505 through NOOBS v1.4.1), the old method modifying the /etc/network/interfaces file isn’t so efficiency as before. In fact, if you modify the /etc/network/interfaces by setting eth0 to static instead of manual (the default setting) your Raspberry Pi will get two IP adresses for the same eth0 interface. This sucks.
The “faulty” is the dhcpcd daemon, which is a DHCP client that seems to be run before the parsing of the /etc/network/interfaces file.
So you have 3 options there:
To implement the latest solution, just sudo nano /etc/dhcpcd.conf then at the end of the file, add the following:
1 2 3 4 5 |
# Custom static IP address for eth0. interface eth0 static ip_address=192.168.0.200/24 static routers=192.168.0.1 static domain_name_servers=192.168.0.1 |
Of course, adjust the IP as you wish. the 192.168.0.1 IP address is referring to my ISP router.
After this modification, restart the network interface or just perform a reboot. Now, your Raspberry Pi will have only one static address!
Note: For those that dislike to set a hard-coded IP, the second solution is the best of course.
Sources: