Guidelines - IT (7)

Sklepmistr

MC Server MGMT

MC SERVER INSTALLATION sudo add-apt-repository ppa:openjdk-r/ppa sudo apt update sudo apt install openjdk-17-jre-headless sudo apt install screen sudo ufw allow 25565 java -Xms1024M -Xmx1024M -jar <server.jar> nogui // xms4G - specify starting ram (can use M for Mb and G for Gb); Xmx4G - maximum…

Continue reading...
Sklepmistr

Zabbix

RASPBERRY PI (Bookworm) INSTALLATION Install Zabbix repository # wget https://repo.zabbix.com/zabbix/7.0/raspbian/pool/main/z/zabbix-release/zabbix-release_7.0-1+debian12_all.deb # dpkg -i zabbix-release_7.0-1+debian12_all.deb # apt update Install Zabbix server, frontend, agent # apt install zabbix-server-mysql zabbix-frontend-php zabbix-apache-conf zabbix-sql-scripts zabbix-agent Make sure you have database server up and running. Run the following on your database…

Continue reading...
Sklepmistr

Win10 FTP

********** Windows 10 native FTP server setup ********** 1) appwiz.cpl -> Turn Windows features on or off -> Internet Information Services 2) check FTP Server (all); check Web Management Tools - IIS Management Console; 3) Win+S -> Windows Administrative Tools -> Internet Information Services 4)…

Continue reading...
Sklepmistr

LINUX

************************************************** Linux 4 work zápisky ************************************************** USEFUL # clear // ~ cls # wc <file> // word count # tree -L <1-x> // stromovitá struktura o specifikovaných vrstvách (-L) # systemctl list-timers // list timers on events ************************************************** ACCOUNTS (higher level administration) ******************************** /etc/passwd //uživatelé…

Continue reading...
Sklepmistr

HTML

HTML USAGES - <!DOCTYPE html> //specifikace html pro prohlížeč - <head> určuje styly, <body> je to co je on display, <title> je text v záložce - headings jsou <h1> až <h6> - paragraphs <p> - links <a href="stranka">Text</a> - images <img src="source/image.jpg" alt="alternative text" width="px"…

Continue reading...