Categories
Uncategorized

Terrasse

Gemütliche Erweiterung aus Douglasie für unsere Terrasse. Mit kleinen Details per CNC.

Categories
Uncategorized

Insektenhotels

Categories
Uncategorized

Frästisch

Categories
Uncategorized

Akazien Terrassenmöbel

zur Erweiterung/Verschönerung unserer pulverbeschichteten Alu-Möbel

Das Kissenlager in der Planungsphase, mit Notizen
Platten leimen
Der Kissenschrank, a.k.a. Sideboard
das gesamte Ensemble
Categories
Uncategorized

kleine Gartenterrasse

Mai 2020

Categories
Uncategorized

VMWare Fusion tools – certificate expired

When installing VMWare tools in my Mavericks VM, I got an error that VMWare tools can’t be installed due to an expired certificate. (resetting the clock doesn’t help… 😉

VMWare Tools can be downloaded from VMWare update server, e.g.:

https://softwareupdate.vmware.com/cds/vmw-desktop/fusion/11.5.3/15870345/core/

The downloaded TAR contains a ZIP.
The ZIP contains the OSX Fusion app.
The Fusion app (in its package content) contains the VMware tools ISO files.

darwin.iso for newer OSX versions.
darwinPre15.iso for older OSX versions, such as Mavericks

The full paths are:
com.vmware.fusion.zip\com.vmware.fusion\payload\VMware Fusion.app\Contents\Library\isoimages\darwin.iso
com.vmware.fusion.zip\com.vmware.fusion\payload\VMware Fusion.app\Contents\Library\isoimages\darwinPre15.iso

Mount the according ISO image to your client, install VMWare tools.

Categories
Uncategorized

connect to VMWare fusion VM via hostname

ping ubuntu1804server
ping: cannot resolve ubuntu1804server: Unknown host

can be solved by installing libnss-mdns in the guest OS.
The guest can now be addressed by

ping ubuntu1804server.local
Categories
Uncategorized

Kaufladen

Passend zur beliebten Spielküche eines bekannten Möbelherstellers

Planungsphase, inkl. Plattenaufteilung
Einzelteile, fertig geschnitten
gefaste Streben, versenkte Schrauben
Details
Platten gefast und abgerundet
Seitenteile nach Nut/Feder Prinzip
fertig aufgebaut: Tresen und Regal. Im Hintergrund: Werkstattchaos.
Stellprobe, noch nicht lackiert
aufwändig produzierte Premium-Waren
Regal eingeräumt, weithin sichtbares Logo, Deko, …
und nach einem Jahr in Aktion, … 🙂

Categories
Uncategorized

Plex on raspberrypi

Since Plex offers offical packages for raspberry systems, installing plex got really easy. The official installation documentation can be found here but misses a few steps when setting up on a freshly setup raspi:

curl https://downloads.plex.tv/plex-keys/PlexSign.key | sudo apt-key add -
sudo apt install apt-transport-https
echo deb https://downloads.plex.tv/repo/deb public main | sudo tee /etc/apt/sources.list.d/plexmediaserver.list
sudo apt-get update
sudo apt-get install plexmediaserver
Link to the official docs…

Categories
Uncategorized

Mounting exFAT drive on raspberry

sudo apt-get install exfat-fuse exfat-utils 
  1. create a mountpoint, e.g. ‘mkdir /media/Malaga/’
  2. use ‘sudo blkid’ to get the UUID of the attached USB drive
  3. extend /etc/fstab by an entry like:
UUID=5B86-AAAA /media/Malaga exfat defaults,auto,umask=000,users,rw,uid=pi,gid=pi 0 0

Then remount all mount points:
sudo mount -a