Recieved 2 additional Raspis and couldnt’stop setting them up unfortunately the display ordered was broken so i didnt build the mobile RetroPi. So I tried it with my cheap china beamer:
Longrunner Cam with Raspberry and self build Lego Case.
Unfortunately broken display (Raspi HD TFT Hat 800×480).
mysql::db do failed: MySQL server has gone away at ./inclibdb.pm line 1848
Solved by
set a higher value for wait_timeout and connect_timeout in my.cnf
from the MySQL Documentation
wait_timeout : The number of seconds the server waits for activity on a noninteractive connection before closing it.
connect_timeout : The number of seconds that the mysqld server waits for a connect packet before responding with Bad handshake
EXAMPLES
If wait_timeout is 1800 (30 Minutes), the DB Connection will close in 30 minutes if the connection is idle (indicated by Sleep in the command column of the processlist).
If connect_timeout is 10, then mysqld will reject you if you cannot login (authenticate) in 10 seconds.
Subject: Terminal Email Send Email Content line 1 Email Content line 2
(ESC)wq(ENTER)
sendmail user@example.com < /tmp/email.txt
Quick and dirty, with subject only:
mail -s "Test Subject" user@example.com < /dev/null
Faking Mails with cutomized sender:
mail -s "Everything possible" -aFrom:bill.gargantur@iliketobeanemailfaker.com recipient@maildomain.com < /dev/null
*Will be delivered into spamfolder or not delivered cause SPF checks that mailsender is not authorized sender of the maildomain –> only if accurate spamsolution/SPF is implemented on recipient side
The Yellowdog Updater, Modified (YUM) is a libre and open-source command-line package–management utility for computers running the GNU/Linux operating system.
Display yum commands and options
yum help
List all available packages
yum list available
List all installed packages
yum list installed
List installed and available packages
yum list all
List installed and available kernel packages
yum list kernel
List info about vsftpd package
yum info vsftpd
List dependencies and packages providing them
yum deplist nfs-utils
Show package that contains top command
yum provides “*bin/top”
Find packages with samba in name or description
yum search samba
Get info on available security updates
yum updateinfo security
Query repositories for available package updates
yum check-update
Download (no install) vsftpd package to cache (/var/cache/yum/arch/prod/repo/)
Experienced a memory leak on Windows Server 2011 Small Business Server. Tried to analyze with Process-Explorer and finally found out that the Windows SBS-Manager and the SQL-Database (SBSMonitoring) are the processes which consume more and more memory over the time. After some research i agreed with disabling the two services (https://serverfault.com/questions/522647/removing-sbs-monitoring-permanently-sbs-2008-2011)