VirtualBox - Maschine im Hintergrund starten (Server)

März 22, 2016 - Lesezeit: ~1 Minute
  • bekannte virtuelle Maschinen auflisten
vboxmanage list vms
  • virtuelle Maschine starten
vboxheadless --startvm maschine|guid &
  • virtuelle Maschine stoppen
vboxmanage controlvm maschine|guid acpipowerbutton
Tags:

Python 3 und Firebird-Client für Ubuntu installieren

März 17, 2016 - Lesezeit: ~1 Minute

Installation Firebird-Client

sudo apt-get install libfbclient2

Installation Setup_tools für Python 3

sudo apt-get install python3-setuptools

Installation Firebird-Modul für Python 3

sudo easy_install3 fdb
Tags:

Auf (K)ubuntu 14.04.4 wechseln

Februar 19, 2016 - Lesezeit: ~1 Minute
sudo apt-get install --install-recommends linux-generic-lts-wily xserver-xorg-core-lts-wily xserver-xorg-lts-wily xserver-xorg-video-all-lts-wily xserver-xorg-input-all-lts-wily libwayland-egl1-mesa-lts-wily libgl1-mesa-glx-lts-wily libgl1-mesa-glx-lts-wily:i386 libglapi-mesa-lts-wily:i386
Tags:

ATTiny 84/85 und die Arduino IDE

Mai 19, 2015 - Lesezeit: ~1 Minute

eine einfache Variante, um die ATTinys in der Arduino-IDE einzubinden

https://github.com/damellis/attiny

Update für Arduino 1.6

Im Dialog Datei/Einstellungen unter

https://raw.githubusercontent.com/damellis/attiny/ide-1.6.x-boards-manager/package_damellis_attiny_index.json

einfügen

2. Variante, umfangreicher

http://code.google.com/p/arduino-tiny/

Eine umfangreiche Anleitung

http://playground.boxtec.ch/doku.php/arduino/attiny
Tags: Arduino AVR

Fritzing selbst kompilieren

Mai 11, 2015 - Lesezeit: ~1 Minute

Ich habe versucht, die aktuelle Version von Fritzing zu erstellen. Dabei kam beim Make immer ein Fehler. Nach der Installtion von libboost-dev funktionierte alles:

sudo apt-get install libboost-dev libudev-dev libqt5svg5-dev libqt5serialport5-dev
qtchooser -run-tool=qmake -qt=5
make
sudo make install

Update:

für die Version 0.9 muss noch libqt5svg5-dev hinzugefügt werden.

Update2:

für die Version 0.9.1 muss noch libqt5serialport5-dev hinzugefügt werden

 

Tags: Ubuntu Kubuntu Fritzing

Ubuntu auf BeagleBone Black auf dem eMMC installieren

März 5, 2015 - Lesezeit: ~1 Minute

Erst eine ganz normale Installation nach elinux.org

Wenn das BeagleBone mit der Karte funktioniert, muss die Installation auf den eMMC kopiert werden

sudo apt-get install git
cd /opt/
sudo git clone https://github.com/RobertCNelson/boot-scripts
sudo /opt/boot-scripts/tools/eMMC/bbb-eMMC-flasher-eewiki-ext4.sh

Danach herunterfahren und neu starten, nach dem die Karte entfernt wurde.

 

Tags: Ubuntu Linux Beaglebone