Christopher Juckins

SysAdmin Tips, Tricks and other Software Tools

User Tools

Site Tools


yum_installer_bash_script_centos7

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
yum_installer_bash_script_centos7 [2021/05/02 09:20] juckinsyum_installer_bash_script_centos7 [2022/12/07 13:24] (current) juckins
Line 1: Line 1:
 ==== Yum installer bash script (CentOS 7) == ==== Yum installer bash script (CentOS 7) ==
  
-<color #ed1c24>When you run the code below, ensure to redirect output and errors to a log file.</color>+<color #ed1c24>When you run the code below, ensure to redirect output and errors to a log file.</color>\\ 
 +<color #ed1c24>**If this is a new install, consider the SELinux settings.**</color>
  
 <code> <code>
Line 343: Line 344:
 echo "perl-Array-Diff.noarch perl-Array-Unique.noarch" echo "perl-Array-Diff.noarch perl-Array-Unique.noarch"
 yum -y install perl-Array-Diff.noarch perl-Array-Unique.noarch yum -y install perl-Array-Diff.noarch perl-Array-Unique.noarch
 +
 +echo "perl-Try-Tiny"
 +yum -y install perl-Try-Tiny
 +
 +echo "perl-Hash-MultiValue"
 +yum -y install perl-Hash-MultiValue
  
 echo "freerdp" echo "freerdp"
Line 394: Line 401:
 echo "ntpdate" echo "ntpdate"
 yum -y install ntpdate yum -y install ntpdate
 +
 +echo "NTP packages"
 +yum -y install ntp
  
 echo "gcc" echo "gcc"
Line 427: Line 437:
 echo "iotop" echo "iotop"
 yum -y install iotop yum -y install iotop
 +
 +echo "ncdu"
 +yum -y install ncdu
  
 echo "deltarpm" echo "deltarpm"
 yum -y install deltarpm yum -y install deltarpm
 +
 +echo "keepass"
 +# Icon for panel laundher is in $HOME/Documents/keepass_icon.png
 +yum -y install keepass
  
 # Best RDC for Windows # Best RDC for Windows
 echo "remmina" echo "remmina"
 yum -y install remmina yum -y install remmina
 +
 +# Better mail client
 +echo "alpine"
 +yum -y install alpine
  
 # Allow sound in Firefox # Allow sound in Firefox
Line 456: Line 477:
  
 echo "" echo ""
-echo "*********************** ENABLE NUX Desktop Repo******************"+echo "*********************** ENABLE NUX Desktop Repo *****************"
 # https://www.tecmint.com/enable-nux-dexktop-repository-on-rhel-centos/ # https://www.tecmint.com/enable-nux-dexktop-repository-on-rhel-centos/
 echo "*****************************************************************" echo "*****************************************************************"
Line 465: Line 486:
 echo "vlc" echo "vlc"
 yum -y install vlc                             # Nux desktop repo yum -y install vlc                             # Nux desktop repo
 +
 +
 +echo ""
 +echo "*********************** ENABLE RPMFUSION Repo *******************"
 +# This is for HEIC/HEIF support in GIMP
 +# https://support.moonpoint.com/os/unix/linux/centos/rpmfusion.php
 +echo "*****************************************************************"
 +yum -y install https://download1.rpmfusion.org/free/el/rpmfusion-free-release-7.noarch.rpm
 +echo "gimp-heif-plugin"
 +yum -y install gimp-heif-plugin
  
  
yum_installer_bash_script_centos7.1619961622.txt.gz · Last modified: 2021/05/02 09:20 by juckins