Skip to content

Instantly share code, notes, and snippets.

@evaldosantos
Last active June 23, 2018 00:05
Show Gist options
  • Save evaldosantos/8808434ae3b1dff481218fb620c7e10b to your computer and use it in GitHub Desktop.
Save evaldosantos/8808434ae3b1dff481218fb620c7e10b to your computer and use it in GitHub Desktop.
sudo dnf clean all
# 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