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
| //Superuser permission | |
| sudo su | |
| //Update Packages | |
| dnf update | |
| //Enable SSH service | |
| systemctl start sshd | |
| systemctl enable sshd | |
| //Setup RPM Fusion Repository | |
| rpm -ivh https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-27.noarch.rpm | |
| rpm -ivh https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-27.noarch.rpm | |
| //Install Gnome Tweak Tool | |
| dnf install gnome-tweak-tool | |
| //Install Media Codecs | |
| 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 | |
| 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 install stacer-1.0.8_x64.rpm | |
| //Install Torrent Client | |
| dnf -y install qbittorrent | |
| //Install YouTube Downloader | |
| dnf install youtube-dl | |
| //Install Snipping Tool | |
| dnf -y install shutter | |
| //Install rar and zip utilities | |
| dnf install unzip | |
| //Install Java Plugins for web | |
| dnf install icedtea-web java-openjdk | |
| //Install Steam | |
| dnf config-manager --add-repo=http://negativo17.org/repos/fedora-steam.repo | |
| dnf -y install steam | |
| //Install VirtualBox | |
| Install VirtualBox |
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.