Change permissions of files and directories
Change permissions of files and directories recursively find . -type d -exec chmod 775 {} \; find . -type f -exec chmod 664 {} \;
Change permissions of files and directories recursively find . -type d -exec chmod 775 {} \; find . -type f -exec chmod 664 {} \;
# Linux je operační systém s monolitickým jádrem. Moduly jsou objektové soubory, dynamické části jádra. Umožňují rozšířit za běhu funkce stávajícího jádra (LKM = Linux Loadable Kernel Module). # daemons basic operations /etc/init.d/apache status /etc/init.d/apache restart # filter file content cat /var/log/… | grep (192.168….) -v 9190 | grep 192.168…. | more tail -f /var/log/… … Read more