Autor Archiv: madmoses
New Batterys arrived
Last week, I bought those 3 LiPo batteries and this charger which you can see on the image below. iMax B6 LiPro Balancer Charger 3* Zippy 20C Series 50000 2 Cell 7.4V batterie Now it seems to be no problem to drive the “madCar” over 10h . But until I can use this batteries I … Weiterlesen
Starting my new Project “madCar”
This is my first try to build a computer controlled car with wireless lan. As you can see in the video it is possible to control the car with a standard USB joystick connected to my desktop computer. The signals from the joystick are sent over wireless lan. Because of this you are able to … Weiterlesen
rtl8192su with OpenWRT for Bifferboard
Hi, to compile this WLAN stick, you have to choice rtl8192su driver in kernel_menu config. If you can not select this package as build-in, then try to follow this. After this I could stick the rtl8192su driver as build-in. After booting the image I tried to make a wifi detect. Unfortunately the output was … Weiterlesen
Bifferboard BIFFBOOT config
Here is my config for biffboot which I am using at the moment. Configuration values: bootsource: on-board flash console: enabled nic: enabled boottype: Linux 2.6 parameter block loadaddress: 0×00400000 cmndline: console=uart,io,0x3f8 rootfstype=squashfs,jffs2 kernelmax: 0×0010
Using Bifferboard as WLAN client
Hi, I just want to write my steps down which I have done until now to get my Wireless USB dongle to work on bifferboard. I have a “PHILIPS” usb stick with a “zd1211b” chipset. To make it work you have to choice the following packages in menuconfig: Kernel modules -> Wireless Drivers -> kmow_zd1211rw … Weiterlesen
Remote Filesystem mit sshfs mounten
1. Benötigte Software installieren #aptitude install sshfs 2. Mounten #sshfs benutzer@meinserver.de:/home/homedir /media/myserver Damit wir auf das Verzeichnis zugreifen können, müssen wir unseren User noch der Gruppe fuse hinzufühen: #adduser benutzername fuse (Aktuelle Session muss neu gestartet werden, damit man in der Gruppe ist)
NFS Client/Server unter Debian einrichten
Auf dem Server Zu erst installieren wir auf dem Server das Paket “nfs-kernel-Server”. #aptitude install nfs-kernel-server Freigaben verwalten Die Freigaben werden in der Datei /etc/exports verwaltet. Der Aufbau eines Eintrages sieht folgendermaßen aus: <pfad zu freigabe> <computername> (<optionen>). Um z.B. mein Homedir lesend freizugeben müsste man folgendes eintragen. /home/madmoses *(ro,async) Um die Einstellungen einzulesen, führen … Weiterlesen
Realtime Beispiel mit OpenWRT für Bifferboard
Als erstes laden wir das aktuelle OpenWRT für unser Bifferboard mit: #git clone git://github.com/bifferos/openwrt.git Danach noch die schritte bevor wir uns ans Compilieren machen cp bifferboard_example_config .config make package/symlinks make menuconfig dann in menü folgendes auswählen “Base system” -> “rtai-led-demo” Abschließend mit einem #make das ganze compilieren und mit #./tools/bifferboard/bb_eth_upload8.py eth0 00:01:02:03:04:05 auf unsere Board … Weiterlesen
Apache SVN unter Debian Squeeze installieren.
Um ein Svn Repository anzulegen installieren wir erstmal folgende Programme zu unserer Apache2 installation: #apt-get install subversion libapache2-svn Als nächstes erstellen wir uns ein Verzeichnis wo SVN später drinnen arbeiten soll. Wir müssen die Ordner für den Apache dann noch beschreibbar machen. #mkdir /var/svn/repository #chown www-data:www-data -R /var/svn/repository #chmod 770 -R /var/svn/repository/ Als nächstes öffnen … Weiterlesen