Lenovo Thinkpad L640 – Trackpad unter Linux Mint/Ubuntu aktivieren

/etc/default/grub bearbeitenb und bei GRUB_CMDLINE_LINUX_DEFAULT ein i8042.reset am Ende einfügen.

Neustart und das Trackpad inkl. TouchPoint funktioniert.

Gestestet: Linux Mint 18.3 (sylvia/xenial) und Lenovo Thinkpad L460

Quelle: https://askubuntu.com/questions/740556/trackpoint-and-touchpad-lenovo-l460-thinkpad-15-10

Ein weiterer Bug ist das beim tippen z.B. in LibreOffice das empfindliche Touchpad teilweise die Maus bewegt und klicks auslöst. Da hilft nur Touchpad deaktivieren und ggf. eine externe Maus nutzen.

Wo hat es noch funktioniert? Bitte Linuxversion und Notebook in die Kommentare!

mail alert on SSH login

create /etc/ssh/login-notify.sh:

#!/bin/sh
# me: rwxr-xr-x root root /etc/ssh/login-notify.sh

sender="root@$(hostname)"
recepient="root"

[ "$PAM_TYPE" = "open_session" ] || exit 0
{
	echo "SSH login auf $(hostname)"
	echo "User: $PAM_USER"
	echo "Ruser: $PAM_RUSER"
	echo "Rhost: $PAM_RHOST"
	echo "Service: $PAM_SERVICE"
	echo "TTY: $PAM_TTY"
	echo "Date: $(date)"
	echo "Server: $(uname -a)"
	echo "finger:"
	echo "$(finger)"
	echo "----------------------"
} | tee -a /var/log/my_logins.log | mail -r "$sender" -s "SSH login auf $(hostname)" "$recepient"

add at the end of /etc/pam.d/sshd:

session optional pam_exec.so seteuid /etc/ssh/login-notify.sh