Are those microPC's, like "Raspberry Pi 2", good enough for some new sort of mobile ubiquitous LAN extension systems? Will there be a new, technically driven, approach? MULEBERRY :)?
Posts mit dem Label pimail werden angezeigt. Alle Posts anzeigen
Posts mit dem Label pimail werden angezeigt. Alle Posts anzeigen
Dienstag, 7. April 2015
awesome: Where this blog has been read only in a few days... watch!
Standort:
Berlin, Deutschland
Sonntag, 5. April 2015
Visions for the future or better, presence: the drone-postman ?
Matternet has started, as promised. That's a remarkable milestone.
In combination with a yellow, not red :), box. Letters of up to 1.000 gr / 20 = 50 standard letters (and a additional USB-stick (~30 gr)) will soon replace mail delivery in subsaharan regions and other emerging regions. - This will combine physical delivery and data mule transport for information kiosks. - Satellites, loon and such thing will not be needed @ the moment. - Ok, it's a vision. But: who knows?
Standort:
Berlin, Deutschland
Sonntag, 29. März 2015
pimail.project: challenges
oh yes. there more diggin in net, the more challenges...
so: main problem is sustainable power supply, we cannot imagine in europe, in 220V there are pikes of 1000 Volts. This will destroy everything.
So only buffered solar power will be an adequate solution. 12 V, PC and screen!
Also SDCard is destroyed after 6-8 month of 24/365 working. Therefore all data and operations will be performed from external usb harddisk. I decided: 500 Gigabyte. SATA in an external casing. berryboot will help perfect!
Next challenge will be: starting Raspberry Pi , because of energetic aspects, this gadget will be ideal. But not operating from SD-card.
i continue digging now
http://www.amazon.de/i-norys-500GB-INO-IHDD0500S-D1-Desktop-Festplatte/dp/B00OYN8704/ref=sr_1_28?s=computers&ie=UTF8&qid=1427633691&sr=1-28&keywords=500gb+2.5+intern+festplattehttp://www.amazon.de/i-norys-500GB-INO-IHDD0500S-D1-Desktop-Festplatte/dp/B00OYN8704/ref=sr_1_28?s=computers&ie=UTF8&qid=1427633691&sr=1-28&keywords=500gb+2.5+intern+festplatte
Labels:
challenges,
pimail
Standort:
Berlin, Deutschland
Samstag, 28. März 2015
Ckeditor.com in combination with Raspberry Pi 2 Model B works fine!
Labels:
ckeditor,
pimail,
raspberry pi 2,
video
Standort:
Berlin, Deutschland
Samstag, 21. März 2015
pimail scheme of data mule
MULE must not be a mule of course :) - it could be a car, a motocycle, a bycicle, a smartphone, a plane, a rocket, everything....
Standort:
Berlin, Deutschland
completely outdated: DakNet calculations
those calculations, done yrs ago, are totally outdated today.
500 USD Motorcycle has been nonsense, totally.
Hub Wireless Interface & Antenna: €70 = 75 $ x 1 075
Mobile Access point & Antenna: € 70 = 75 $ x 2 150
Kiosk Wireless & Antenna: € 70 = 75 $ x 12 900
------------------------------------------------------------------------------------
total Capex: 1125 $ + motorcycle 2125 $
compare this to 5900 $
price today is << -50 %
Labels:
calculation,
pimail
Standort:
Berlin, Deutschland
Freitag, 20. März 2015
concept study: How pimail could look like some time!
Labels:
pimail,
user experience
Standort:
Berlin, Deutschland
Donnerstag, 19. März 2015
VIDEO: Live-Demo Part 3 - How to convert 32GB Raspberry Pi 2 - whezzy - into a standalone WiFi Hotspot (REALTEK / EDIMAX)
This is Part 3: The last steps - We use a fresh 32GB card with raspbian whezzy.
https://docs.google.com/document/d/16hJS7fnPyKUwbvR33_nMku_b6XcYaBJXVpeCIMoJzcQ/edit?usp=sharing
Those steps are done there:
we forgott this in Part II :( and correct it . Such things happen in real life!
https://docs.google.com/document/d/16hJS7fnPyKUwbvR33_nMku_b6XcYaBJXVpeCIMoJzcQ/edit?usp=sharing
Those steps are done there:
we forgott this in Part II :( and correct it . Such things happen in real life!
sudo nano /etc/network/interfaces
iface wlan0 inet static
address 10.10.10.10
netmask 255.255.255.0
#iface wlan0 inet manual
#wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf
#iface default inet dhcp
Standort:
Berlin, Deutschland
VIDEO: Live-Demo Part 2 - How to convert 32GB Raspberry Pi 2 - whezzy - into a standalone WiFi Hotspot (REALTEK / EDIMAX)
This is Part 2: Making the AP (15 Min) - We use a fresh 32GB card with whezzy installed on..
https://docs.google.com/document/d/16hJS7fnPyKUwbvR33_nMku_b6XcYaBJXVpeCIMoJzcQ/edit?usp=sharing
Those steps are done there:
https://docs.google.com/document/d/16hJS7fnPyKUwbvR33_nMku_b6XcYaBJXVpeCIMoJzcQ/edit?usp=sharing
Those steps are done there:
sudo apt-get install isc-dhcp-server
sudo apt-get autoremove hostapd
wget https://github.com/jenssegers/RTL8188-hostapd/archive/v2.0.tar.gz
tar -zxvf v2.0.tar.gz
tar -zxvf v2.0.tar.gz
cd RTL8188-hostapd-2.0/hostapd
sudo make
sudo make
sudo make install
sudo service hostapd restart
sudo nano /etc/dhcp/dhcpd.conf
#option domain-name "example.org";
#option domain-name-servers ns1.example.org, ns2.example.org;
#option domain-name-servers ns1.example.org, ns2.example.org;
authoritative;
subnet 10.10.10.0 netmask 255.255.255.0
{
range 10.10.10.20 10.10.10.80;
option broadcast-address 10.10.10.255;
option routers 10.10.10.1;
default-lease-time 600;
max-lease-time 7200;
option domain-name "local-network";
option domain-name-servers 8.8.8.8, 8.8.4.4;
}
range 10.10.10.20 10.10.10.80;
option broadcast-address 10.10.10.255;
option routers 10.10.10.1;
default-lease-time 600;
max-lease-time 7200;
option domain-name "local-network";
option domain-name-servers 8.8.8.8, 8.8.4.4;
}
sudo nano /etc/default/isc-dhcp-server
INTERFACES="wlan0"
--> we forgott something.. look Part III. Such things happen in real life :)
sudo nano /etc/sysctl.conf
net.ipv4.ip_forward=1
sudo sh -c "echo 1 > /proc/sys/net/ipv4/ip_forward"
sudo ifup wlan0
sudo iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE
sudo iptables -A FORWARD -i eth0 -o wlan0 -m state --state RELATED,ESTABLISHED -j ACCEPT
sudo iptables -A FORWARD -i wlan0 -o eth0 -j ACCEPT
sudo iptables -A FORWARD -i eth0 -o wlan0 -m state --state RELATED,ESTABLISHED -j ACCEPT
sudo iptables -A FORWARD -i wlan0 -o eth0 -j ACCEPT
sudo service isc-dhcp-server start
sudo service hostapd start
sudo service hostapd start
sudo update-rc.d hostapd enable
sudo update-rc.d isc-dhcp-server enable
sudo update-rc.d isc-dhcp-server enable
sudo sh -c "iptables-save > /etc/iptables.ipv4.nat"
sudo nano /etc/network/interfaces
up iptables-restore < /etc/iptables.ipv4.nat
sudo nano /etc/rc.local
sleep 10 && service hostapd restart
sudo reboot
Standort:
Berlin, Deutschland
VIDEO: Part 1/3 - How to convert 32GB Raspberry Pi 2 - whezzy - into a standalone WiFi Hotspot (REALTEK / EDIMAX)
This is Part 1: Preparations (15 Min) - We are using here a fresh whezzy system on a 32GB card.
Installation guide:
https://docs.google.com/document/d/16hJS7fnPyKUwbvR33_nMku_b6XcYaBJXVpeCIMoJzcQ/edit?usp=sharing
Those steps are recorded here
Installation guide:
https://docs.google.com/document/d/16hJS7fnPyKUwbvR33_nMku_b6XcYaBJXVpeCIMoJzcQ/edit?usp=sharing
Those steps are recorded here
sudo bash
sudo apt-get update && sudo apt-get upgrade -f && sudo apt-get dist-upgrade
sudo apt-get clean
sudo apt-get autoremove
sudo apt-get install git
sudo wget https://raw.github.com/Hexxeh/rpi-update/master/rpi-update -O /usr/bin/rpi-update && sudo chmod +x /usr/bin/rpi-update
sudo rpi-update
sudo reboot
Standort:
Berlin, Deutschland
Abonnieren
Posts (Atom)