[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”)    

[Howto] resolve pam-systemd login error

posted in: computer | 0

Debian error message (/var/log/auth.log) pam_systemd(login:session): pam-systemd initializing Jun 28 02:53:26 debian login[3173]: pam_systemd(login:session): Asking logind to create session: uid=1000 pid=3173 service=login type=tty class=user desktop= seat= vtnr=0 tty=/dev/tty1 display= remote=no remote_user= remote_host= Jun 28 02:53:26 debian systemd: PAM no modules loaded … Continued

[Howto] enable Auto-Updates in WordPress

posted in: computer | 0

default setting: only minor updates (4.7.1 → 4.7.2) are applied automatically major updates (4.7 → 4.8) must bei applied manually   #edit your wp-config.php and insert the following: #to enable major-release updates define(‘WP_AUTO_UPDATE_CORE’, true)

[Howto] enable renewable HEIMDAL Kerberos 5 tickets

posted in: computer | 0

Heimdal Kerberos Version 7.3.0   at first you have to check if your principal has renewable-tickets allowed: #serverside login into kerberos-database kadmin -l #list attributes (the attribute-section of the output should not contain something like ‘disallow-renewable’) kadmin> list -l <principal> … Continued