Σάββατο 24 Σεπτεμβρίου 2011

SIOCDELRT: No such process - SOLVED

first off you need to edit your /etc/hosts file * use vi

Code:
vi /etc/hosts
add your ip address and your name at line three

Code:
127.0.0.1    localhost    linux
#127.0.1.1    linux.WorkGroup    linux
192.168.20.20    voyage # <------ add your ip and name 


then restart your network and the error is fixed, the edited /etc/host file is also need for the static changes you made

Σάββατο 2 Απριλίου 2011

Dashware

An example of Integration of GoPro Video with GPS data using DashWare.

http://www.youtube.com/watch?v=Nncw0KdZYgQ

Enhanced by Zemanta

Πέμπτη 6 Ιανουαρίου 2011

Hobby Boards - Humidity Sensor

Added the Hobby Boards Hummidity sensor at the meteo station in Marathon.

http://www.wunderground.com/weatherstation/WXDailyHistory.asp?ID=IATTICAM2

Δευτέρα 3 Ιανουαρίου 2011

InternetProxyOnAlixBoard

#!/bin/sh
echo "Setting up IPTABLES proxy..."
#
# enabling IP forwarding...
#
echo "1" > /proc/sys/net/ipv4/ip_forward
echo "1" > /proc/sys/net/ipv4/ip_dynaddr
#
# Flushing packet filtering rules
#
iptables -t filter -F INPUT
iptables -t filter -F OUTPUT
iptables -t filter -F FORWARD
iptables -t nat -F
#
# Setting up default policies
#
iptables -t filter -P INPUT ACCEPT
iptables -t filter -P OUTPUT ACCEPT
iptables -t filter -P FORWARD DROP
iptables -t nat -P PREROUTING ACCEPT
iptables -t nat -P OUTPUT ACCEPT
iptables -t nat -P POSTROUTING ACCEPT
#
# Setting up NAT
#
iptables -t nat -A POSTROUTING -o ppp0 -j MASQUERADE
iptables -t filter -A FORWARD -i ppp0 -o eth0 -m state --state ESTABLISHED,RELATED -j ACCEPT
iptables -t filter -A FORWARD -i eth0 -o ppp0 -j ACCEPT

echo "proxy setup done."