This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ####################################################################### | |
| # | |
| # Automated test of the responses of a Koukaam NETIO230[A/B] device | |
| # 2011-04-04 18-52 | |
| # | |
| ####################################################################### | |
| 100 HELLO 2F7BBC63 - KSHELL V1.2 | |
| login admin password | |
| 250 OK | |
| version |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # +----------------------------------------------------------------------+ | |
| # | | | |
| # | Mount the root file system / with the option noatime | | |
| # | | | |
| # | By Philipp Klaus <http://blog.philippklaus.de> | | |
| # | Tip found on <http://blogs.nullvision.com/?p=275> | | |
| # | | | |
| # +----------------------------------------------------------------------+ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # GLCD2USB example configuration | |
| Variables { | |
| tick 500 | |
| tack 100 | |
| minute 60000 | |
| } | |
| Display GLCD2USB { | |
| Driver 'GLCD2USB' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # This is the log from the GoFlex Home after a failed installation | |
| # (I did reboot after ubit installation but before installing OS on USB disk or HDD) | |
| # See <http://archlinuxarm.org/platforms/armv5/seagate-goflex-home> → Advanced → Netconsole | |
| # create an alias for the interface: | |
| philipp@lion:~$ sudo ifconfig br0:0 10.10.10.5 netmask 255.255.255.0 up | |
| # And listen for incoming data: | |
| philipp@lion:~$ nc.traditional -luks 10.10.10.5 -p 6666 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| import pygtk | |
| pygtk.require('2.0') | |
| import gtk # sets app name | |
| import gnomekeyring | |
| def hack(): | |
| for keyring in gnomekeyring.list_keyring_names_sync(): | |
| for id in gnomekeyring.list_item_ids_sync(keyring): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [root@PlugApps ~]# pacman -Sy apache mysql php | |
| :: Synchronizing package databases... | |
| core is up to date | |
| extra is up to date | |
| community is up to date | |
| aur is up to date | |
| resolving dependencies... | |
| looking for inter-conflicts... | |
| Targets (10): apr-1.4.2-1 libtool-2.4-2 unixodbc-2.3.0-1 apr-util-1.3.10-2 apache-2.2.17-1 libmysqlclient-5.5.11-1 mysql-clients-5.5.11-1 mysql-5.5.11-1 libxml2-2.7.8-1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # <http://blog.philippklaus.de/2010/09/openvpn/> | |
| set -x | |
| #SERVERNAME=$(hostname) | |
| SERVERNAME=$(ifconfig | grep -A 5 eth0 | grep -w 'inet addr' | tr '\t' ' ' | cut -d ':' -f 2 | cut -d ' ' -f 1) | |
| read -e -p "Please enter the server you want your clients to connect to [default: $SERVERNAME]: " input | |
| SERVERNAME="${input:-$SERVERNAME}" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| ## OpenVPN Status File Parser by Greg Armer | |
| ## <http://code.geek.sh/2009/07/simple-openvpn-server-statistics/> | |
| STATUS = "/etc/openvpn/openvpn.status" | |
| status_file = open(STATUS, 'r') | |
| stats = status_file.readlines() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| #### This script is published by Philipp Klaus <philipp.l.klaus@web.de> | |
| #### on <http://blog.philippklaus.de/2011/05/ipv6-6in4-tunnel-via-hurricane-electric-tunnelbroker-net-automatic-ip-update-on-mac-os-x/> | |
| #### It is originally by freese60 and modified by limemonkey. | |
| #### Found on <http://www.tunnelbroker.net/forums/index.php?topic=287.0> | |
| ### Uncomment this line to debug the script: | |
| #set -x |