X-Git-Url: https://git.grml.org/?a=blobdiff_plain;f=grml_tips;h=c71c185b0062d071acc122b7a07599c1f1872b27;hb=75d5fd77dbfb9340ee3c19537516d7dff136b8b7;hp=f90532f2bd9ecfa4a439e0298b607024f1051af9;hpb=0dc8b954059ef797f5cdf07b82cf2b65e13f9d5d;p=grml-tips.git diff --git a/grml_tips b/grml_tips index f90532f..c71c185 100644 --- a/grml_tips +++ b/grml_tips @@ -1288,19 +1288,22 @@ Use a Vodafone 3G Datacard (UMTS) with Linux: Plug in your vodafone card and check in syslog whether the appropriate (probably /dev/ttyUSB0 or /dev/noz0) has been created. If so run: -# gcom -d $DEVICE +# comgt -d $DEVICE # wvdial --config /etc/wvdial.conf.umts $PROFILE Usage examples: -# gcom -d /dev/ttyUSB0 +# comgt -d /dev/ttyUSB0 # wvdial --config /etc/wvdial.conf.umts a1usb -# gcom -d /dev/noz0 +# comgt -d /dev/noz0 # wvdial --config /etc/wvdial.conf.umts tmnozomi -# gcom -d /dev/noz0 +# comgt -d /dev/noz0 # wvdial --config /etc/wvdial.conf.umts dreiusb +# comgt -d /dev/ttyACM0 +# wvdial --config /etc/wvdial.conf.umts yesss + If you receive invalid DNS nameservers when connecting, like: [...] @@ -1326,7 +1329,7 @@ Bus 004 Device 008: ID 1199:6813 Sierra Wireless, Inc. To get a list of available providers execute: -# gcom -s -d /dev/ttyUSB0 /usr/share/doc/gcom/examples/operator +# comgt -s -d /dev/ttyUSB0 /etc/comgt/operator -- hdparm - get/set hard disk parameters @@ -3169,3 +3172,7 @@ Find packages not available from any active apt repository: % apt-show-versions | awk '/No available version in archive/{print $1}' -- +Simple mailserver with python: + +% python -m smtpd -n -c DebuggingServer localhost:1025 +--