Christopher Juckins

SysAdmin Tips, Tricks and other Software Tools

User Tools

Site Tools


dnf_installer_bash_script_fedora_41

Differences

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

Link to this comparison view

Next revision
Previous revision
dnf_installer_bash_script_fedora_41 [2024/12/19 15:02] – created juckinsdnf_installer_bash_script_fedora_41 [2025/03/22 09:22] (current) juckins
Line 15: Line 15:
 # #
 # NOTES: # NOTES:
-# Installed groups can be found with:+# Installed/Available groups can be found with:
 # dnf group list # dnf group list
 # #
 # Contents of groups can be found with: # Contents of groups can be found with:
-dnf group info "Group Name"+??
 # #
 # TO RUN: # TO RUN:
Line 66: Line 66:
 echo "*****************************************************************" echo "*****************************************************************"
 # Do not install optional packages (avoid problems with mod_security) # Do not install optional packages (avoid problems with mod_security)
-dnf -y groupinstall "Basic Web Server"+dnf -y group install "Basic Web Server"
  
  
Line 73: Line 73:
 echo "Development Tools" echo "Development Tools"
 echo "*****************************************************************" echo "*****************************************************************"
-dnf -y groupinstall --with-optional "Development Tools"+dnf -y group install --with-optional "Development Tools"
  
  
Line 80: Line 80:
 echo "System Tools" echo "System Tools"
 echo "*****************************************************************" echo "*****************************************************************"
-dnf -y groupinstall --with-optional "System Tools"+dnf -y group install --with-optional "System Tools"
  
  
Line 87: Line 87:
 echo "Engineering and Scientific" echo "Engineering and Scientific"
 echo "*****************************************************************" echo "*****************************************************************"
-dnf -y groupinstall "Engineering and Scientific"+dnf -y group install "Engineering and Scientific"
  
  
Line 94: Line 94:
 echo "VideoLAN Client" echo "VideoLAN Client"
 echo "*****************************************************************" echo "*****************************************************************"
-dnf -y groupinstall "VideoLAN Client"+dnf -y group install "vlc"
  
  
Line 328: Line 328:
 fi fi
 wget https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm wget https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm
-dnf -y localinstall google-chrome-stable_current_x86_64.rpm+dnf -y install google-chrome-stable_current_x86_64.rpm
  
 echo "" echo ""
Line 337: Line 337:
 fi fi
 wget https://dl.google.com/linux/direct/google-chrome-beta_current_x86_64.rpm wget https://dl.google.com/linux/direct/google-chrome-beta_current_x86_64.rpm
-dnf -y localinstall google-chrome-beta_current_x86_64.rpm+dnf -y install google-chrome-beta_current_x86_64.rpm
  
 echo "" echo ""
 echo "About to install: inxi" echo "About to install: inxi"
 dnf -y install inxi dnf -y install inxi
 +
 +echo ""
 +echo "About to install: gnome-terminal"
 +dnf -y install gnome-terminal
 +
 +echo ""
 +echo "About to install: gnome-screenshot"
 +dnf -y install gnome-screenshot
 +
 +echo ""
 +echo "About to install various packages for pip to upgrade packages"
 +echo "Packages are krb5-devel krb5-tests python3-devel dbus-devel cairo* expat*"
 +dnf -y krb5-devel krb5-tests python3-devel dbus-devel cairo* expat*
  
  
Line 369: Line 382:
 echo "*****************************************************************" echo "*****************************************************************"
  
-dnf -y group install "Xfce Desktop"+dnf -y group install "xfce-desktop"
 dnf -y install xfce4-cpugraph-plugin dnf -y install xfce4-cpugraph-plugin
 dnf -y install xfce4-weather-plugin dnf -y install xfce4-weather-plugin
dnf_installer_bash_script_fedora_41.1734638566.txt.gz · Last modified: 2024/12/19 15:02 by juckins