-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfc36-setup.sh
More file actions
27 lines (18 loc) · 835 Bytes
/
fc36-setup.sh
File metadata and controls
27 lines (18 loc) · 835 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/bin/bash
echo "Before appending the file"
cat /etc/dnf/dnf.conf
echo "fastestmirror=True">> /etc/dnf/dnf.conf
echo "max_parallel_downloads=10">> /etc/dnf/dnf.conf
echo "defaultyes=True">> /etc/dnf/dnf.conf
echo "After appending the file"
sudo cat /etc/dnf/dnf.conf
sudo dnf install https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm https://mirrors.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm -y
sudo dnf groupupdate core -y
sudo dnf groupupdate multimedia --setop="install_weak_deps=False" --exclude=PackageKit-gstreamer-plugin -y
sudo dnf groupupdate sound-and-video -y
sudo dnf update -y
sudo dnf install neofetch -y
echo "FILE APPENDING COMPLETE"
echo "neofetch">> /home/linux73/.bashrc
cat /home/linux73/.bashrc
echo "SCRIPT COMPLETE"