Sklepmistr (20)

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...
Sklepmistr

Docker

************************************************************** DOCKER ***************************************************************** INSTALLATION: # sudo apt-get remove docker docker-engine docker.io containerd runc // remove old versions # sudo apt update // update repositories # sudo apt install apt-transport-https ca-certificates curl gnupg lsb-release // packages that allow apt to use repos over HTTPS # curl…

Continue reading...
Sklepmistr

Apache2

APACHE2 # apache2 # apache2ctl Enable/Disable site ls /etc/apache2/sites-enabled/ // show enabled sites apache2ctl -S // sudo a2ensite sitename.conf // enable site sudo systemctl reload apache2 // reload after change sudo a2dissite sitename.conf // disable site sudo systemctl reload apache2 SSL sudo ufw allow "Apache…

Continue reading...