PPA or Personal Package Archive are unofficial and may therefore harm your system. It is always recommended to use official sources. Nevertheless, if you know what you're doing, proceed. It is in: 1/etc/apt/sources.list.d/ More info in https://askubuntu.com/questions/57326/where-is-the-ppa-sources-config-file
Read More1apt-get install --only-upgrade <packagename> See details in https://askubuntu.com/questions/44122/how-to-upgrade-a-single-package-using-apt-get
Read MoreManual 1sudo yum install -y mod_php71w php71w-cli php71w-common php71w-gd php71w-mbstring php71w-mcrypt php71w-mysqlnd php71w-xml In Ansible: 1- name: Install needed php7 packages 2yum: 3name={{ item }} 4state=present 5with_items: 6- mod_php71w 7- php71w-cli 8- php71w-common 9- php71w-gd 10- php71w-mbstring 11- …
Read More