Last active
March 2, 2019 14:11
-
-
Save sashuu69/a1d27432bed18edab3d58bf18220740b to your computer and use it in GitHub Desktop.
Things to do after installing Fedora 29
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #for downloading rpm and others to a specific location | |
| echo `cd Downloads` | |
| echo `mkdir post_fedora_install` | |
| echo `cd post_fedora_install` | |
| #Update Packages | |
| echo `dnf -y update` | |
| #Enable SSH service | |
| echo `sudo systemctl start sshd` | |
| echo `sudo systemctl enable sshd` | |
| #Setup RPM Fusion Repository | |
| echo `sudo rpm -ivh https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-29.noarch.rpm` | |
| echo `sudo rpm -ivh https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-29.noarch.rpm` | |
| #Install Gnome Tweak Tool | |
| #dnf -y install gnome-tweak-tool | |
| #Install Media Codecs | |
| echo `sudo dnf -y install gstreamer-plugins-base gstreamer1-plugins-base gstreamer-plugins-bad gstreamer-plugins-ugly gstreamer1-plugins-ugly gstreamer-plugins-good-extras gstreamer1-plugins-good-extras gstreamer1-plugins-bad-freeworld ffmpeg gstreamer-ffmpeg` | |
| #Install VLC Media Player | |
| echo `sudo dnf -y install vlc` | |
| #Install System Optimizer (Stacer) | |
| #wget https://github.com/oguzhaninan/Stacer/releases/download/v1.0.8/stacer-1.0.8_x64.rpm | |
| #dnf -y install stacer-1.0.8_x64.rpm | |
| #Install Torrent Client | |
| echo `sudo dnf -y install qbittorrent` | |
| #Install YouTube Downloader | |
| `sudo dnf -y install youtube-dl` | |
| #Install Snipping Tool | |
| `sudo dnf -y install shutter` | |
| #Install rar and zip utilities | |
| `sudo dnf -y install unzip` | |
| #Install Java Plugins for web | |
| `sudo dnf -y install icedtea-web java-openjdk` | |
| #Install Steam | |
| `sudo dnf -y config-manager --add-repo=http://negativo17.org/repos/fedora-steam.repo` | |
| `sudo dnf -y install steam` | |
| #Install Development tools (c,c++ etc) | |
| `sudo dnf -y group install 'Development Tools'` | |
| #Install Java JDK | |
| `sudo yum install java-1.8.0-openjdk-devel -y` | |
| #Install Sublime | |
| #rpm -v --import https://download.sublimetext.com/sublimehq-rpm-pub.gpg | |
| #dnf config-manager --add-repo https://download.sublimetext.com/rpm/stable/x86_64/sublime-text.repo | |
| #dnf -y install sublime-text |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If I missed anything, please comment.