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

Both sides previous revisionPrevious revision
Next revision
Previous revision
dnf_installer_bash_script_fedora_41 [2024/12/19 17:38] juckinsdnf_installer_bash_script_fedora_41 [2025/03/22 09:22] (current) juckins
Line 1: Line 1:
 +==== dnf installer bash script (Fedora 41) ====
 +
 +<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>
 #!/bin/bash #!/bin/bash
 # #
Line 318: 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 327: 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 404: Line 427:
 echo "*****************************************************************" echo "*****************************************************************"
 echo "" echo ""
 +</code>
dnf_installer_bash_script_fedora_41.1734647898.txt.gz · Last modified: 2024/12/19 17:38 by juckins