IT

Kodi konfigurieren

mount -o remount,rw /flashvi /flash/config.txtmount -o remount,ro /flash

Nacharbeiten Linux Server

Journalgröße begrenzen/etc/systemd/journald.conf: SystemMaxUse=x[G|M|K]service systemd-journald restart

Remote syslog

Remote Host auf ESXi angebenesxcli system syslog config set –loghost=’udp://<hostname>:514′ Syslog daemon auf ESXi neu startenesxcli system syslog reload Firewall port auf ESXi freigebenesxcli network firewall ruleset set –ruleset-id=syslog –enabled=trueesxcli network firewall refreshesxcli network firewall ruleset list | grep syslog

MySQL: Authentication plugin ‚caching_sha2_password‘ reported error: Authentication requires secure connection

MySQL 8.0 ships with: SSL/TLS enabled by default caching_sha2_plugin authentication DBD::mysql by default: Has SSL/TLS disabled This results in the connection failing as the caching_sha2_plugin needs either SSL/TLS or RSA for the initial connection. Once the server has the entry in the cache secure connections are not required. What the user has to do is:… weiterlesen »

RAW Festplatte in VMware ESXi einbinden

To configure a local device as an RDM disk: Open an SSH session to the ESXi/ESX host. Run this command to list the disks that are attached to the ESXi host: # ls -l /vmfs/devices/disks From the list, identify the local device you want to configure as an RDM and copy the device name. Note:… weiterlesen »

Größe aller MySQL DBs anzeigen

SELECT TABLE_SCHEMA,Round(Sum(data_length + index_length) / 1024 / 1024 / 1024, 2) ‚DBsizeGB‘ FROM information_schema.tables \ GROUP BY TABLE_SCHEMA \ ORDER BY DBsizeGB DESC;

Git

Remote Repository ssh://git@git/home/git git / r15rick57git Repo auf Server erstellen mkdir <new_project> cd <new_project> git init –bare Repo lokal erstellen cd <projekt> git init git remote add origin ssh://git@git/home/git/…/<projekt> oder git remote add origin file:///git@git/home/git/<path> oder git remote add origin file:////home/git/<path> git push -u origin master git push –set-upstream origin master [evtl. „.gitignore“ anlegen] Projekt… weiterlesen »

Upload size in WordPress

/etc/php/x.y/fpm/php.ini: max_execution_time = 120 post_max_size = 100M upload_max_filesize = 100M max_file_uploads = 250 /../wp-config.php: define(‚WP_MEMORY_LIMIT‘, ‚100M‘);  

DVB Device wird nicht geladen

DVB Device wird auf NAS nicht geladen. Exception in Modul für Octopus DVB (ngege). Lösung: IRQ auf Polling umstellen. /etc/default/grub GRUB_CMDLINE_LINUX_DEFAULT=“… pollirq“ ‚update-grub‘

Sidebar