Search This Blog

2018-05-25

printrun `.stl' broken in stretch...

python: can't open file 'skeinforge/skeinforge_application/skeinforge_utilities/skeinforge_craft.py': [Errno 2] No such file or directory

this file from this package (that is not a dependency of printrun) does not exist in stretch... :(

applet-alarm-clock not playing sounds...

... in debian stretch...

apt install gtreamer1.0-alsa

otherwise setup custom command in `preferences'...

alsaplayer -q  /path/to/sound.ogg

2018-05-18

EleksMaker X/Y motors do not move...

... using EleksCAM... maybe just because your windows regional settings do not use a dot as decimal separator... it is as stupid as it seams... try this software instead.

2018-05-16

Debian stretch on QC5000M-ITX/PH

QC5000M-ITX/PH

@ BIOS ...

Fast Boot : if enabled grub only boots to /dev/sda1

PS2 Keyboard power on : cannot be actually be disabled
  . enabled : fails to resume properly
  . disabled : works as if enabled... lol... :)

Disable HDMI Audio : to make the sound card the default audio output.

Fails to enable the mouse on resume : choose a permanent usb (ohci) port for the mouse and add the following text to a new file (check that your device id is correct in the `echo' bellow)... make the file executable.

#!/bin/sh
#
# @ "/etc/pm/sleep.d/20_custom-ohci_pci".

case "${1}" in
  hibernate|suspend)
    # Unbind ohci device
    echo '0000:00:13.0' > /sys/bus/pci/drivers/ohci-pci/unbind
  ;;
  resume|thaw)
    # Bind ohci device
    echo '0000:00:13.0' > /sys/bus/pci/drivers/ohci-pci/bind
  ;;
esac

... and now the board works just fine as expected... :)