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
Next revisionBoth sides next revision
yum_installer_bash_script_centos7 [2019/04/14 12:42] juckinsyum_installer_bash_script_centos7 [2020/05/16 16:18] juckins
Line 1: Line 1:
-==== Yum installer bash script (CentOS7) ==+==== 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>
Line 20: Line 20:
 # TO RUN: # TO RUN:
 # ./install-my-yum-packages.bash > /tmp/install-my-yum-packages.log 2>&1 # ./install-my-yum-packages.bash > /tmp/install-my-yum-packages.log 2>&1
 +#
 +# DON'T FORGET:
 +# Google Chrome, VirtualBox
  
 echo "" echo ""
Line 281: Line 284:
 yum -y install dkms yum -y install dkms
  
-echo "gstreamer" +echo "gstreamer gstreamer-plugins-bad-free gstreamer-plugins-base gstreamer-plugins-good gstreamer-tools
-yum -y install gstreamer+yum -y install gstreamer gstreamer-plugins-bad-free gstreamer-plugins-base gstreamer-plugins-good gstreamer-tools
  
-echo "gstreamer-plugins-bad-free+echo "gstreamer1 gstreamer1-libav gstreamer1-plugins-bad-free gstreamer1-plugins-bad-free-gtk gstreamer1-plugins-base gstreamer1-plugins-good gstreamer1-plugins-ugly-free
-yum -y install gstreamer-plugins-bad-free +yum -y install gstreamer1 gstreamer1-libav gstreamer1-plugins-bad-free gstreamer1-plugins-bad-free-gtk gstreamer1-plugins-base gstreamer1-plugins-good gstreamer1-plugins-ugly-free
- +
-echo "gstreamer-plugins-base" +
-yum -y install gstreamer-plugins-base +
- +
-echo "gstreamer-plugins-good" +
-yum -y install gstreamer-plugins-good +
- +
-echo "gstreamer-tools" +
-yum -y install gstreamer-tools+
  
 echo "PackageKit-gstreamer-plugin" echo "PackageKit-gstreamer-plugin"
Line 331: Line 325:
 echo "perl-List-MoreUtils.x86_64" echo "perl-List-MoreUtils.x86_64"
 yum -y install perl-List-MoreUtils.x86_64      # base yum -y install perl-List-MoreUtils.x86_64      # base
 +
 +echo "perl-Math-Round"
 +yum -y install perl-Math-Round                 # epel
  
 #echo "perl-Array-Utils.noarch" #echo "perl-Array-Utils.noarch"
Line 361: Line 358:
 echo "MySQL-python" echo "MySQL-python"
 yum -y install MySQL-python                    # TAT yum -y install MySQL-python                    # TAT
 +
 +echo "python-requests"
 +yum -y install python-requests                 # TAT
 +
 +echo "python3"
 +yum -y install python3                         # TAT
 +
 +echo "python3-devel"
 +yum -y install python3-devel                   # TAT
 +
 +echo "jq"                                      # TAT
 +yum -y install jq
  
 echo "gnome-disk-utility" echo "gnome-disk-utility"
Line 391: Line 400:
 echo "pv" echo "pv"
 yum -y install pv yum -y install pv
 +
 +echo "mlocate"
 +yum -y install mlocate
 +
 +#echo "thunderbird"
 +#yum -y install thunderbird
 +
 +echo "dos2unix"                                # ASMAD
 +yum -y install dos2unix
 +
 +echo "tree"
 +yum -y install tree
 +
 +echo "iotop"
 +yum -y install iotop
 +
 +echo "deltarpm"
 +yum -y install deltarpm
 +
 +# Best RDC for Windows
 +echo "remmina"
 +yum -y install remmina
 +
 +# Allow sound in Firefox
 +echo "pavucontrol"
 +yum -y install pavucontrol
 +echo "pulseaudio*"
 +yum -y install pulseaudio*
 +echo "alsa-plugins-pulseaudio"
 +yum -y install alsa-plugins-pulseaudio
 +
 +echo ""
 +echo "********************* NOW INSTALLING PACKAGE ********************"
 +echo "samba-*"
 +echo "*****************************************************************"
 +yum -y install samba-*
  
  
yum_installer_bash_script_centos7.txt · Last modified: 2022/12/07 13:24 by juckins