Docker Install Ubuntu Script
Docker Installation Ubuntu Shell Script To automatically install Docker on Ubuntu run: Or create a new file setup.sh with below given code and run it: GitHub If you like what you are reading, please: Buy me a coffee
Docker Installation Ubuntu Shell Script To automatically install Docker on Ubuntu run: Or create a new file setup.sh with below given code and run it: GitHub If you like what you are reading, please: Buy me a coffee
Here is basic IPTables Configuration Example Shell Script. This IPTables basic rules will configure IPTables to open HTTP/HTTPS, PING for whole world, and SSH for your IP. Blocks everything else. GitHub Install iptables persistent package To make IPTables rules persistent… Continue Reading
In this article I will show very basic shell Script to Delete Log Files in Linux and schedule logs deletion using a cron. Linux Log Files The Linux operating system and running applications constantly generate various types of messages that… Continue Reading
In this article I will show simile bash script if ping fails then reboot Linux server. You can easily modify this script for example if ping fails then send notification to email, or if ping successful then do something. Create… Continue Reading
In this article you will learn how to convert FusionPBX Call Recordings from WAV to OGG (OPUS) with Linux script. This script finds yesterday *.wav FisionPBX call recordings, convert them to opus and then delete. After updates CDR records. Script… Continue Reading
How To Automatically Restart FFmpeg Linux On Error Here is example ffmpeg restart script. Create new script, for example ffmpeg_start.sh and make that script executable: # chmod +x ffmpeg_start.sh Edit file ffmpeg_start.sh and add next commands: #!/bin/bash cmd=”ffmpeg YOUR_FFMPEG_COMMAND” until… Continue Reading
Linux Shell Script To Delete Files Older Than 7 Days Below i will show basic Linux shell script for Delete Files Older Than 7 Days in Linux. Of course you can change amount of days as you need. Also it… Continue Reading