New commands from our Community.
-
snapd:install Installs snap package manager on Linux.$ apt install snapdtry on your machineexplain this command
-
files:directory:sort:size List all folders and order them by size.$ du -h --max-depth=1 | sort -hrtry on your machineexplain this command
-
files:copy:verbose Copy folder recursive and show copy speed$ rsync -av --progress ${source-folder} ${destination-folder}try on your machineexplain this command
-
apache:module:enable:https Enable SSL module in Apache and restart Apache service$ a2enmod ssl && systemctl restart apache2try on your machineexplain this command
-
symfony:server:stop Stops the Symfony server$ symfony server:stoptry on your machineexplain this command
The DevOps Life new articles from our magazine.
Doing magic with Laminas on the CLI
Published: 2023-07-12
Using the command line is often faster and more effective. Event when using frontend frameworks like nuxt. Here are the most important commands.
Exploring the Nuxt Command Line
Published: 2023-07-11
Using the command line is often faster and more effective. Event when using frontend frameworks like nuxt. Here are the most important commands.
The Power of Apache Web Server Management
Published: 2023-07-10
The Apache web serveris one of the most used open source solutions in the world and also the most used PHP web server.
Firewall and secure servers
Published: 2023-06-19
How do you get a server secure? There are many ways, but most of them involve the use of firewalls. In this small tutorial we show the use of iptables.