Posted On April 1, 2019

Set Automatic Updates for CentOS & Redhat

kimconnect 0 comments
blog.KimConnect.com >> Linux >> Set Automatic Updates for CentOS & Redhat

Easy.

yum -y install yum-cron vim

vim /etc/yum/yum-cron.conf
----------
apply_updates = yes
----------
systemctl start yum-cron.service

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Linux Notes Dump (From 100 Years Ago)

1) LinuxFix Flash Firefox Freezingsudo mkdir /etc/adobeecho "OverridePGUValidation=true" >~/mms.cfgsudo mv ~/mms.cfg /etc/adobe/sudo apt-get install flashplugin-nonfreeInstall…

Some MySQL Admin Stuff

make sure it's running ps -ef | grep mysql Creating MySQL DB HOWTO on creating…

PowerShell: Probe Remote Machine for Its OS Type

function probeOsType($server){ $ping=test-connection $server -count 1 $ttl=$ping.ResponseTimeToLive $osType=switch($ttl){ {$_ -le 64} {"Linux"; break} # MacOs…