Linux command ‚SMB/SAMBA‘ – to mount an SMB/Samba share on Linux you must use the CIFS kernel file system and configure the mount permanently (so that it persists after a reboot)

September 19th, 2026
root@rpi-iot-jsho-rslsync-01:~# apt-get install cifs-utils
Reading package lists… Done
Building dependency tree… Done
Reading state information… Done
cifs-utils is already the newest version (2:6.11-3.1+deb11u2).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
root@rpi-iot-jsho-rslsync-01:~#
root@rpi-iot-jsho-rslsync-01:~# vi /root/.smbcredentials
username=pi
password=<password>
root@rpi-iot-jsho-rslsync-01:~#
root@rpi-iot-jsho-rslsync-01:~# chmod 600 /root/.smbcredentials
root@rpi-iot-jsho-rslsync-01:~#
root@rpi-iot-jsho-rslsync-01:~# mkdir /mnt/USB-Stick.extern
root@rpi-iot-jsho-rslsync-01:~#
root@rpi-iot-jsho-rslsync-01:~# vi /etc/fstab

//192.168.1.139/share-01 /mnt/USB-Stick.extern cifs credentials=/root/.smbcredentials,uid=0,gid=0,x-systemd.automount,_netdev,nofail 0 0
root@rpi-iot-jsho-rslsync-01:~#
root@rpi-iot-jsho-rslsync-01:~# systemctl daemon-reload
root@rpi-iot-jsho-rslsync-01:~#
root@rpi-iot-jsho-rslsync-01:~# mount -a
root@rpi-iot-jsho-rslsync-01:~#
root@rpi-iot-jsho-rslsync-01:~# df -k
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/root 122567116 21085928 96438888 18% /
devtmpfs 88508 0 88508 0% /dev
tmpfs 219796 0 219796 0% /dev/shm
tmpfs 87920 1012 86908 2% /run
tmpfs 5120 4 5116 1% /run/lock
/dev/mmcblk0p1 261106 51636 209470 20% /boot
tmpfs 43956 20 43936 1% /run/user/1000
//192.168.1.139/share-01 119631576 11051152 108580424 10% /mnt/USB-Stick.extern
root@rpi-iot-jsho-rslsync-01:~#

Bundeswehr – muss jeden vierten Freiwilligen als nicht wehrtauglich ausmustern

September 19th, 2026

Shelly Wall Display X1i – Installation video

September 19th, 2026

München Theresienwiese (Oktoberfestplatz) 2026 – online webcam

September 19th, 2026

President Donald J. Trump – Makes an Announcement on Healthcare September 18 2026

September 18th, 2026

Neuralink CEO Elon Musk – speaking with the mind

September 18th, 2026

KH-IT Herbsttagung 2026 – DaphOS siegt beim KH-IT-Start-up-Pitch und vorgestellt wurde die Lösung von Sarah Peuling als General Managerin Deutschland

September 18th, 2026

Proxmox Virtual Environment (VE) 9.2.10 – has announced true 24/7 enterprise support removing one of the biggest concerns organizations have had when considering Proxmox VE as a VMware alternative

September 18th, 2026

Linux command ‚msmtp‘ – using ‚MAILTO‘ in cron job(s)

September 18th, 2026

The MAILTO environment variable in cron allows you to specify an email address to receive output from your cron job

root@rpi-samba-01:~# crontab -e

MAILTO=josef.schuster@dpsolution.de
# * * * * * echo „eMail Check“
01 0-23 * * * `journalctl –output=short -S yesterday| tail -c 131072 > /var/log/syslog` && `scp /var/log/syslog root@192.168.1.171:/var/log/UrgentSyslogShort.rpi-samba-01`
05 0-23 * * * `tail -c 131072 /var/log/samba/log.smbd > /var/log/smbd.log` && `scp /var/log/smbd.log root@192.168.1.171:/var/log/UrgentSambaLogShort.rpi-samba-01`
root@rpi-samba-01:~#

By default cron jobs sends an email via the MAILTO variable only if the cron job generates output (stdout or stderr) if a script runs completely error free and silently cron sends no message at all by default

BR quer mit Christoph Süß – alle jammern über die schwierigen politischen Zeiten dabei haben wir doch die Wies’n in Bayern

September 18th, 2026

Microsoft Windows 11 – aktueller Patch KB5129195 behebt Remotedesktop Hyper-V und andere Probleme

September 18th, 2026

Linux command ‚msmtp‘ – is a lightweight SMTP client for sending email from the command line

September 17th, 2026
root@js-ubuntu-26-04-01:~# apt-get update && apt-get install msmtp msmtp-mta mailutils -y
root@js-ubuntu-26-04-01:~# msmtp –version
msmtp version 1.8.32
Platform: x86_64-pc-linux-gnu
TLS/SSL library: GnuTLS
Authentication library: GNU SASL; oauthbearer and xoauth2: built-in
Supported authentication methods:
scram-sha-256-plus scram-sha-1-plus scram-sha-256 scram-sha-1 plain gssapi external oauthbearer cram-md5 digest-md5 login ntlm xoauth2
IDN support: enabled
NLS: enabled, LOCALEDIR is /usr/share/locale
Keyring support: Gnome
System configuration file name: /etc/msmtprc
User configuration file name: /root/.msmtprc
Copyright (C) 2025 Martin Lambers and others.
This is free software. You may redistribute copies of it under the terms of
the GNU General Public License <http://www.gnu.org/licenses/gpl.html>.
There is NO WARRANTY, to the extent permitted by law.
root@js-ubuntu-26-04-01:~#
root@js-ubuntu-26-04-01:~# vi /etc/msmtprc
# Default settings
defaults
auth on
tls on
tls_trust_file /etc/ssl/certs/ca-certificates.crt
logfile /var/log/msmtp.log
# Target SMTP Server
account default
host smtp.1und1.com
port 587
from josef.schuster@dpsolution.de
user josef.schuster@dpsolution.de
password <password>
root@js-ubuntu-26-04-01:~#
root@js-ubuntu-26-04-01:~# vi /etc/aliases
root: josef.schuster@dpsolution.de
default: josef.schuster@dpsolution.de
root@js-ubuntu-26-04-01:~#
root@js-ubuntu-26-04-01:~# vi /etc/mail.rc
set sendmail=“/usr/bin/msmtp -t“
root@js-ubuntu-26-04-01:~#
root@js-ubuntu-26-04-01:~# echo „Inhalt der Mail“ | mail -s „Betreff: Mail Check“ josef.schuster@dpsolution.de
root@js-ubuntu-26-04-01:~#
root@js-ubuntu-26-04-01:~# tail  /var/log/msmtp.log
Sep 17 21:25:02 host=smtp.1und1.com tls=on auth=on user=josef.schuster@dpsolution.de from=josef.schuster@dpsolution.de recipients=josef.schuster@dpsolution.de mailsize=243 smtpstatus=250 smtpmsg=’250 Requested mail action okay, completed: id=ID‘ exitcode=EX_OK
root@js-ubuntu-26-04-01:~#

Bundesministerin für Wirtschaft und Energie Katherina Reiche (CDU) – Statement zur Versorgungssicherheit und zur Entwicklung der Kraftstoffpreise

September 17th, 2026

Für den Vorsteuerabzug einer Firma gilt bei einer Mehrwertsteuersenkung das absolute Grundprinzip die Umsatzsteuer ist für ein vorsteuerabzugsberechtigtes Unternehmen ein ergebnisneutraler durchlaufender Posten und eine Senkung des Steuersatzes führt daher weder zu einem direkten Gewinn noch zu einem Verlust beim Vorsteuerabzug bringt aber erhebliche buchhalterische Prüfpflichten und temporäre Liquiditätseffekte mit sich

Freistat Bayern Justizminister Georg Eisenreich (CSU) – gibt sein Amt bereits zu Ende September vorzeitig ab um wieder als Rechtsanwalt zu arbeiten

September 17th, 2026

Anstrengender Alltag als Physiotherapeut – was bekommt man dafür € 2.428,- netto

September 17th, 2026