Archive for Oktober 18th, 2014

Raspberry Pi – eine dynamische IP@ einrichten

Samstag, Oktober 18th, 2014

raspberrypi_logo.jpg   … so lässt sich eine dynamische IP@ einrichten mit einem Nano WLAN-Stick EDIMAX EW-7811UN Wireless USB Adapter, 150 Mbit/s, IEEE802.11b/g/n

 

# ifconfig

# vi /etc/network/interfaces
auto lo
iface lo inet loopback
iface eth0 inet dhcp
allow-hotplug wlan0
auto wlan0
iface wlan0 inet dhcp
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
iface default inet dhcp
# vi  /etc/wpa_supplicant/wpa_supplicant.conf
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
network={
        ssid=“<ssid1>“
        proto=RSN
        pairwise=CCMP
        key_mgmt=WPA-PSK
        psk=“<ssid-key1>“
        auth_alg=OPEN
}
network={
        ssid=“<ssid2>“
        proto=RSN
        pairwise=CCMP
        key_mgmt=WPA-PSK
        psk=“<ssid-key2>“
        auth_alg=OPEN
}
# reboot

edimax_01

Android 5.0 (Lollipop) Developer Preview – provides a new platform for users to experience your app on a big screen

Samstag, Oktober 18th, 2014

Android5.0(Lollipop)_01