howto connect a netbook and a mobile to use it as moden

Author: stephan  |  Category: Linux, Netbook, Netzwerk

[lang_en]
Bluetooth must be activated on the mobile and the netbook.
First we search for the mobile
hcitool scan
It had to look like this.
FF:FF:FF:FF:FF:FF Komunikator

To use it more simple . we put it into /etc/bluetooth/rfcomm.conf

rfcomm0 {
# Automatically bind the device at startup
bind yes;
# # Bluetooth address of the device
device FF:FF:FF:FF:FF:FF;
# # RFCOMM channel for the connection
channel 1;
comment "Handy";
}

then we can connect with
rfcomm connect 0

To setup the PPP connection I used the gnome-ppp. The way through the menu was system => settings => network settings.
There you should find a point „mobile internet“. For me it worked with the default settings.
You find your setting in

~/.gconf/system/networking/connections/

and the correct connection number.
[/lang_en]

[lang_de]
Bluetooth muss auf dem Handy und auf dem Netbook aktiviert sein .
Dann suchen wir das Handy mit folgendem Befehl.
hcitool scan
Die Anzeige müsste ungefähr so aussehen.
FF:FF:FF:FF:FF:FF Komunikator

Damit wir das einfacher nutzen können , binden wir das Handy in die Datei /etc/bluetooth/rfcomm.conf ein

rfcomm0 {
# Automatically bind the device at startup
bind yes;
# # Bluetooth address of the device
device FF:FF:FF:FF:FF:FF;
# # RFCOMM channel for the connection
channel 1;
comment "Handy";
}

Damit können wir uns jetzt mit dem Befehl
rfcomm connect 0
verbinden.

Zum einrichten der PPP Verbindung habe ich gnome-ppp genutzt . Dazu habe ich nun in den Netzwerkeinstellungen ( Der Weg: => System => Einstellungen => Netzwerkeinstellungen) im Reiter Mobiles Breitband diese eingerichteteingerichtet . Die Defaulteinstellungen haben bei mir schon funktioniert.
Die Einstellungen kann man in

~/.gconf/system/networking/connections/

und der richtigen Verbindungsnummer wiederfinden.
[/lang_de]

my new netbook

Author: stephan  |  Category: Netbook

[lang_de]
Es war zwar schon im Dezember aber ich habe mir ein Netbook gekauft.Es ist ein Samsung NC10
DSC00041
Als Betriebssystem habe ich ein UNR – Ubuntu netbook remix draufgespielt. Ein paar Projekte , die ich realisieren möchte : Verknüpfung mit einem Handy ( Internet) , Navigation (gpsd ) und anderes
[/lang_de]
[lang_en]
I’ll have it since December but , i want to talk about my new netbook . Its a samsung NC10
DSC00041
As OS I an used UNR – Ubuntu Netbook remix. Some projects I want to realize : using it with my mobile for internet , navigation ( gpsd ) and others thing.
[/lang_em]

Nagios is checking the weather

Author: stephan  |  Category: Linux, Nagios, Sonstiges

[lang_de]
Eine der weniger ernsthafteren Anwendungen für nagios ist eine Überprüfung des Wetters.
Dazu dient das Plugin check_weather
nagiosplugins.org
Dazu muss man sich bei weather.com registrieren um den webservice zu nutzen und um eine Userid und eine Lizenz zu bekommen .
Diese müßen in die check_weather.pl eingefügt werden

my $weather = Weather::Com::Simple->new(
partner_id => "meine ID",
license => "meine Lizenz",

Das Resultat:

/server/nagios/libexec > ./check_weather.pl -l neu-ulm
WEATHER OK - Temperature -11 degrees celsius at Neu-Ulm, Germany | celsius=-11;;

[/lang_de]
[lang_en]
One of the more humorous uses of nagios is the possibility to check the weather.
This is the use of the plugin check_weather
nagiosplugins.org
Then you have to register at weather.com to use the webservice and get a userid and a license.
The userid and the license hat to put into check_weather.pl

my $weather = Weather::Com::Simple->new(
partner_id => "my ID",
license => "myLicense",

The result

/server/nagios/libexec > ./check_weather.pl -l neu-ulm
WEATHER OK - Temperature -11 degrees celsius at Neu-Ulm, Germany | celsius=-11;;

[/lang_en]