Last active
May 16, 2022 07:34
-
-
Save sugamkarki/a4b0e43388acb6939ed9550a16905554 to your computer and use it in GitHub Desktop.
Fresh Install in fedora
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
# Req | |
sudo dnf -y update | |
sudo dnf install dnf-plugins-core -y | |
sudo dnf install https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm | |
sudo dnf install https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm | |
sudo dnf install snapd | |
# Microsoft Edge | |
sudo rpm --import https://packages.microsoft.com/keys/microsoft.asc | |
sudo dnf config-manager --add-repo https://packages.microsoft.com/yumrepos/edge | |
sudo dnf -y update --refresh | |
sudo dnf install -y microsoft-edge-stable | |
# Chrome | |
sudo dnf install -y fedora-workstation-repositories | |
sudo dnf config-manager --set-enabled google-chrome | |
sudo dnf install -y google-chrome-stable | |
# Discord | |
sudo dnf makecache | |
sudo dnf install discord | |
# Github ssh | |
ssh-keygen -t rsa -b 4096 -C "[email protected]" | |
eval "$(ssh-agent -s)" | |
ssh-add ~/.ssh/id_rsa | |
cat ~/.ssh/id_rsa.pub | |
# Media coded | |
sudo dnf install https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm | |
sudo dnf install ffmpeg | |
# Nvm | |
sudo dnf install curl | |
curl https://raw.githubusercontent.com/creationix/nvm/master/install.sh | bash | |
source ~/.zshrc | |
nvm install --lts | |
# Vscode | |
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' | |
dnf check-update | |
sudo dnf install code | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment