Ultrazauberer
Semiprofi
Android Handy, in meinem Fall das HTC Desire. Mit iPhone/iPod dürfte es auch gehen. Schau doch einfach mal nach nen MPC für dein Handy.
Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: this_feature_currently_requires_accessing_site_using_safari
@nabend ja
Ich stehe nicht so auf die Web 2.0 Handys. Gibt es noch eine besser Möglichkeit?
USB-LCD + Fernbedienung hmm
Wie steuert den die MPD Fraktion den Server? Mit nem anderen PC wäre lächerlich.
Naja Ziel des Ganzen sollte sein ein großes logisches Laufwerk aus den ganzen Sticks.
Pogoplug:/$ ./usr/sbin/fw_printenv
ethact=egiga0
stdin=serial
stdout=serial
stderr=serial
bootargs=console=ttyS0,115200 root=/dev/sda1 rootdelay=10 rootfstype=ext2 mtdparts=orion_nand:1M(u-boot),4M(uImage),32M(rootfs),-(data)
bootdelay=3
baudrate=115200
arcNumber=2097
mainlineLinux=yes
console=ttyS0,115200
led_init=green blinking
led_exit=green off
led_error=orange blinking
mtdparts=mtdparts=orion_nand:1M(u-boot),4M(uImage),32M(rootfs),-(data)
mtdids=nand0=orion_nand
partition=nand0,2
rescue_installed=0
rescue_set_bootargs=setenv bootargs console=$console ubi.mtd=2 root=ubi0:rootfs ro rootfstype=ubifs $mtdparts $rescue_custom_params
rescue_bootcmd=if test $rescue_installed -eq 1; then run rescue_set_bootargs; nand read.e 0x800000 0x100000 0x400000; bootm 0x800000; else run pogo_bootcmd; fi
pogo_bootcmd=if fsload uboot-original-mtd0.kwb; then go 0x800200; fi
force_rescue=0
force_rescue_bootcmd=if test $force_rescue -eq 1 || ext2load usb 0:1 0x1700000 /rescueme 1 || fatload usb 0:1 0x1700000 /rescueme.txt 1; then run rescue_bootcmd; fi
ubifs_mtd=3
ubifs_set_bootargs=setenv bootargs console=$console ubi.mtd=$ubifs_mtd root=ubi0:rootfs rootfstype=ubifs $mtdparts init=$ubifs_init $ubifs_custom_params
ubifs_bootcmd=run ubifs_set_bootargs; if ubi part data && ubifsmount rootfs && ubifsload 0x800000 /boot/uImage && ubifsload 0x1100000 /boot/uInitrd; then bootm 0x800000 0x1100000; fi
usb_init=usb start; if ext2load usb 0:1 0x800000 /boot/uImage 1; then setenv usb_device 0:1; setenv usb_root /dev/sda1; elif ext2load usb 1:1 0x800000 /boot/uImage 1; then setenv usb_device 1:1; setenv usb_root /dev/sdb1; elif ext2load usb 2:1 0x800000 /boot/uImage 1; then setenv usb_device 2:1; setenv usb_root /dev/sdc1; elif ext2load usb 3:1 0x800000 /boot/uImage 1; then setenv usb_device 3:1;setenv usb_root /dev/sdd1; fi;
usb_device=0:1
usb_root=/dev/sda1
usb_rootfstype=ext2
usb_rootdelay=10
usb_set_bootargs=setenv bootargs console=$console root=$usb_root rootdelay=$usb_rootdelay rootfstype=$usb_rootfstype $mtdparts $usb_custom_params
usb_bootcmd=run usb_init; run usb_set_bootargs; run usb_boot;
usb_boot=mw 0x800000 0 1; ext2load usb $usb_device 0x800000 /boot/uImage; if ext2load usb $usb_device 0x1100000 /boot/uInitrd; then bootm 0x800000 0x1100000; else bootm 0x800000; fi;
bootcmd=usb start; run force_rescue_bootcmd; run ubifs_bootcmd; run usb_bootcmd; usb stop; run rescue_bootcmd; run pogo_bootcmd; reset
ethaddr=00:10:75:1A:CA:D3
#! /bin/sh
mount -t proc none /proc
mount -t sysfs none /sys
mount -t devpts none /dev/pts
mount -t tmpfs none /tmp
mkdir /tmp/var
echo "/tmp/core_%e_%t" > /proc/sys/kernel/core_pattern
hostname Pogoplug
ifconfig lo 127.0.0.1
ifconfig eth0 169.254.37.133
udhcpc -b `hostname`
telnetd
/etc/init.d/db
ntpd -g
#/etc/init.d/hbmgr.sh start
#/bin/mount -a
# Check if a USB device with partition sda is connected
# If one is found, reboot to start debian
#checkusb=`grep sda /proc/partitions`
#if [ -n "$checkusb" ]; then
# /sbin/reboot
#fi
Hallo.
Was muss ich tun damit das Paket iptables in der Version 1.4.9 installiert wird.
Man ich ein apt-get install iptables dann installiert der nur die Version 1.4.8
Hintergrund ist, dass ich möchte, dass die LED bei ankommenden TCP-Paketen blinkt.
saiH
Musste dir selber kompilieren anders kommst du nicht an die neuere Version:
Ich hab für mich selber die Schritte aufgeschrieben, damit sollte das leicht nachzuvollziehen sein:
neue Version von iptables inst - Hades2k - TTvhc2qk - Pastebin.com
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
echo none > /sys/class/leds/dockstar:orange:health/trigger
echo default-on > /sys/class/leds/dockstar:green:health/trigger
su -c "iptables -A INPUT -p tcp -j LED --led-trigger-id tcpin --led-delay 100"
echo netfilter-tcpin > /sys/class/leds/dockstar:green:health/trigger
exit 0
modprobe xt_LED
iptables -A INPUT -p tcp -j LED --led-trigger-id tcpin --led-delay 100
echo netfilter-tcpin > /sys/class/leds/dockstar:green:health/trigger