[Howto] start X without systemd requirement

posted in: computer | 0

situtation: debian’s X-Server requires a systemd-session to work.   problem: If you haven’t installed systemd, you aren’t able to start the xserver, because the xserver can’t connect to an systemd session. (EE) systemd-logind: failed to get session: The name org.freedesktop.login1 was not provided … Continued

[Howto] solve freebsd-update invalid signature error

posted in: computer | 0

check, if you have a working /usr/bin/openssl /usr/bin/openssl version file /usr/bin/openssl ldd /usr/bin/openssl   check, if you have a valid signature-file for freebsd-update /var/db/freebsd-update/pub.ssl (you can safely remove it, because a new run of freebsd-update fetches it again)   After … Continued

[Howto] merge solids in FreeCAD

posted in: computer | 0

FreeCAD v0.16 create two cutting solids select both solids click “boolean operation” → select “merge” → ok now both solids became unvisible and a new fusion is created select the newly created fusion menu → part → refine shape    

[Howto] SAMBA and Windows XP

posted in: computer | 0

you must set the following parameters to get a working authentification:   SAMBA Server (version 4.6.7) #smb.conf server min protocol = NT1   Windows XP #regedit.exe HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Lsa\lmcompatibilitylevel = 3

[Howto] read the search-path for building-tools (cpp, gcc, ld)

posted in: computer | 0

  c-preprocessor (GNU cpp) environment-variable: $CPATH #cpp -v /usr/include   compiler (GNU cc) environment-variable: $CPATH #gcc -E -Wp,-v – /usr/include   linker (GNU ld) environment-variable: $LIBRARY_PATH #ld –verbose | grep -i ‘search_dir’ SEARCH_DIR(“/lib”); SEARCH_DIR(“/usr/lib”); SEARCH_DIR(“/usr/local/lib”)