-
-
Save godfredcs/18aeb2caa8d29e3bacb1d0c7befdc5bd to your computer and use it in GitHub Desktop.
This file contains 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
# update the system | |
sudo dnf update -y | |
# add rpm fusion repos | |
sudo dnf install -y https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm | |
# add microsoft keys | |
sudo rpm --import https://packages.microsoft.com/keys/microsoft.asc | |
# add vscode repo | |
sudo sh -c 'echo -e "[code]\nname=Visual Studio Code\nbaseurl=https://packages.microsoft.com/yumrepos/vscode\nenabled=1\ngpgcheck=1\ngpgkey=https://packages.microsoft.com/keys/microsoft.asc" > /etc/yum.repos.d/vscode.repo' | |
# check updates | |
sudo dnf check-update | |
# install others | |
sudo dnf install vim zsh tmux git terminator curl htop -y | |
# install google chrome | |
sudo dnf install -y https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm | |
# install skype | |
sudo dnf install -y https://repo.skype.com/latest/skypeforlinux-64.rpm | |
#install vscode | |
sudo dnf install -y code | |
#install slack | |
sudo dnf install -y https://downloads.slack-edge.com/linux_releases/slack-3.2.1-0.1.fc21.x86_64.rpm | |
# install zip/unzip | |
sudo dnf install zip unzip -y | |
# install java | |
sudo dnf install java-openjdk java-openjdk-devel -y | |
# install gimp | |
sudo dnf install gimp -y |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment