Skip to content

Instantly share code, notes, and snippets.

@sashuu69
Last active March 2, 2019 14:11
Show Gist options
  • Select an option

  • Save sashuu69/a1d27432bed18edab3d58bf18220740b to your computer and use it in GitHub Desktop.

Select an option

Save sashuu69/a1d27432bed18edab3d58bf18220740b to your computer and use it in GitHub Desktop.

Revisions

  1. sashuu69 revised this gist Mar 2, 2019. 1 changed file with 19 additions and 21 deletions.
    40 changes: 19 additions & 21 deletions post_fedora_install.sh
    Original file line number Diff line number Diff line change
    @@ -1,43 +1,41 @@
    #Superuser permission
    `sudo su`
    #for downloading rpm and others to a specific location
    `cd Downloads`
    `mkdir post_fedora_install`
    `cd post_fedora_install`
    echo `cd Downloads`
    echo `mkdir post_fedora_install`
    echo `cd post_fedora_install`
    #Update Packages
    `dnf -y update`
    echo `dnf -y update`
    #Enable SSH service
    `systemctl start sshd`
    `systemctl enable sshd`
    echo `sudo systemctl start sshd`
    echo `sudo systemctl enable sshd`
    #Setup RPM Fusion Repository
    `rpm -ivh https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-29.noarch.rpm`
    `rpm -ivh https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-29.noarch.rpm`
    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
    `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`
    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
    `dnf -y install vlc`
    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
    `dnf -y install qbittorrent`
    echo `sudo dnf -y install qbittorrent`
    #Install YouTube Downloader
    `dnf -y install youtube-dl`
    `sudo dnf -y install youtube-dl`
    #Install Snipping Tool
    `dnf -y install shutter`
    `sudo dnf -y install shutter`
    #Install rar and zip utilities
    `dnf -y install unzip`
    `sudo dnf -y install unzip`
    #Install Java Plugins for web
    `dnf -y install icedtea-web java-openjdk`
    `sudo dnf -y install icedtea-web java-openjdk`
    #Install Steam
    `dnf -y config-manager --add-repo=http://negativo17.org/repos/fedora-steam.repo`
    `dnf -y 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)
    `dnf -y group install 'Development Tools'`
    `sudo dnf -y group install 'Development Tools'`
    #Install Java JDK
    `yum install java-1.8.0-openjdk-devel -y`
    `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
  2. sashuu69 revised this gist Mar 2, 2019. No changes.
  3. sashuu69 revised this gist Mar 2, 2019. 1 changed file with 26 additions and 26 deletions.
    52 changes: 26 additions & 26 deletions post_fedora_install.sh
    Original file line number Diff line number Diff line change
    @@ -1,44 +1,44 @@
    #Superuser permission
    sudo su
    `sudo su`
    #for downloading rpm and others to a specific location
    cd Downloads
    mkdir post_fedora_install
    cd post_fedora_install
    `cd Downloads`
    `mkdir post_fedora_install`
    `cd post_fedora_install`
    #Update Packages
    dnf -y update
    `dnf -y update`
    #Enable SSH service
    systemctl start sshd
    systemctl enable sshd
    `systemctl start sshd`
    `systemctl enable sshd`
    #Setup RPM Fusion Repository
    rpm -ivh https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-28.noarch.rpm
    rpm -ivh https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-28.noarch.rpm
    `rpm -ivh https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-29.noarch.rpm`
    `rpm -ivh https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-29.noarch.rpm`
    #Install Gnome Tweak Tool
    dnf -y install gnome-tweak-tool
    #dnf -y 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
    `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
    `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
    #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
    dnf -y install qbittorrent
    `dnf -y install qbittorrent`
    #Install YouTube Downloader
    dnf -y install youtube-dl
    `dnf -y install youtube-dl`
    #Install Snipping Tool
    dnf -y install shutter
    `dnf -y install shutter`
    #Install rar and zip utilities
    dnf -y install unzip
    `dnf -y install unzip`
    #Install Java Plugins for web
    dnf -y install icedtea-web java-openjdk
    `dnf -y install icedtea-web java-openjdk`
    #Install Steam
    dnf -y config-manager --add-repo=http://negativo17.org/repos/fedora-steam.repo
    dnf -y install steam
    `dnf -y config-manager --add-repo=http://negativo17.org/repos/fedora-steam.repo`
    `dnf -y install steam`
    #Install Development tools (c,c++ etc)
    dnf -y group install 'Development Tools'
    `dnf -y group install 'Development Tools'`
    #Install Java JDK
    yum install java-1.8.0-openjdk-devel -y
    `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
    #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
  4. sashuu69 revised this gist Sep 9, 2018. 1 changed file with 4 additions and 20 deletions.
    24 changes: 4 additions & 20 deletions post_fedora_install.sh
    Original file line number Diff line number Diff line change
    @@ -1,59 +1,43 @@
    #Superuser permission
    sudo su

    #for downloading rpm and others to a specific location
    cd Downloads
    mkdir post_fedora_install
    cd post_fedora_install
    #Update Packages
    dnf -y 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-28.noarch.rpm
    rpm -ivh https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-28.noarch.rpm

    #Install Gnome Tweak Tool
    dnf -y 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 -y install stacer-1.0.8_x64.rpm

    #Install Torrent Client
    dnf -y install qbittorrent

    #Install YouTube Downloader
    dnf -y install youtube-dl

    #Install Snipping Tool
    dnf -y install shutter

    #Install rar and zip utilities
    dnf -y install unzip

    #Install Java Plugins for web
    dnf -y install icedtea-web java-openjdk

    #Install Steam
    dnf -y config-manager --add-repo=http://negativo17.org/repos/fedora-steam.repo
    dnf -y install steam

    #Install VirtualBox
    dnf -y install kernel-devel kernel-headers dkms
    dnf -y install VirtualBox

    #Install Development tools (c,c++ etc)
    dnf -y group install 'Development Tools'

    #Install Java JDK
    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
  5. sashuu69 revised this gist Sep 7, 2018. 1 changed file with 7 additions and 6 deletions.
    13 changes: 7 additions & 6 deletions post_fedora_install.sh
    Original file line number Diff line number Diff line change
    @@ -9,8 +9,8 @@ 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
    rpm -ivh https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-28.noarch.rpm
    rpm -ivh https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-28.noarch.rpm

    #Install Gnome Tweak Tool
    dnf -y install gnome-tweak-tool
    @@ -52,8 +52,9 @@ dnf -y install VirtualBox
    dnf -y group install 'Development Tools'

    #Install Java JDK
    yum install java-1.8.0-openjdk-devel
    yum install java-1.8.0-openjdk-devel -y

    #Install Atom
    #https://atom.io/ and download .rpm file
    dnf -y install ./atom.x86_64.rpm
    #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
  6. sashuu69 revised this gist Sep 7, 2018. 1 changed file with 19 additions and 19 deletions.
    38 changes: 19 additions & 19 deletions post_fedora_install.sh
    Original file line number Diff line number Diff line change
    @@ -1,59 +1,59 @@
    //Superuser permission
    #Superuser permission
    sudo su

    //Update Packages
    #Update Packages
    dnf -y update

    //Enable SSH service
    #Enable SSH service
    systemctl start sshd
    systemctl enable sshd

    //Setup RPM Fusion Repository
    #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
    #Install Gnome Tweak Tool
    dnf -y install gnome-tweak-tool

    //Install Media Codecs
    #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
    #Install VLC Media Player
    dnf -y install vlc

    //Install System Optimizer (Stacer)
    #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
    #Install Torrent Client
    dnf -y install qbittorrent

    //Install YouTube Downloader
    #Install YouTube Downloader
    dnf -y install youtube-dl

    //Install Snipping Tool
    #Install Snipping Tool
    dnf -y install shutter

    //Install rar and zip utilities
    #Install rar and zip utilities
    dnf -y install unzip

    //Install Java Plugins for web
    #Install Java Plugins for web
    dnf -y install icedtea-web java-openjdk

    //Install Steam
    #Install Steam
    dnf -y config-manager --add-repo=http://negativo17.org/repos/fedora-steam.repo
    dnf -y install steam

    //Install VirtualBox
    #Install VirtualBox
    dnf -y install kernel-devel kernel-headers dkms
    dnf -y install VirtualBox

    //Install Development tools (c,c++ etc)
    #Install Development tools (c,c++ etc)
    dnf -y group install 'Development Tools'

    //Install Java JDK
    #Install Java JDK
    yum install java-1.8.0-openjdk-devel

    //Install Atom
    https://atom.io/ and download .rpm file
    #Install Atom
    #https://atom.io/ and download .rpm file
    dnf -y install ./atom.x86_64.rpm
  7. sashuu69 renamed this gist Aug 31, 2018. 1 changed file with 12 additions and 12 deletions.
    24 changes: 12 additions & 12 deletions post_fedora_install.txt → post_fedora_install.sh
    Original file line number Diff line number Diff line change
    @@ -2,7 +2,7 @@
    sudo su

    //Update Packages
    dnf update
    dnf -y update

    //Enable SSH service
    systemctl start sshd
    @@ -13,7 +13,7 @@ rpm -ivh https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-27.n
    rpm -ivh https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-27.noarch.rpm

    //Install Gnome Tweak Tool
    dnf install gnome-tweak-tool
    dnf -y 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
    @@ -23,37 +23,37 @@ 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
    dnf -y install stacer-1.0.8_x64.rpm

    //Install Torrent Client
    dnf -y install qbittorrent

    //Install YouTube Downloader
    dnf install youtube-dl
    dnf -y install youtube-dl

    //Install Snipping Tool
    dnf -y install shutter

    //Install rar and zip utilities
    dnf install unzip
    dnf -y install unzip

    //Install Java Plugins for web
    dnf install icedtea-web java-openjdk
    dnf -y install icedtea-web java-openjdk

    //Install Steam
    dnf config-manager --add-repo=http://negativo17.org/repos/fedora-steam.repo
    dnf -y config-manager --add-repo=http://negativo17.org/repos/fedora-steam.repo
    dnf -y install steam

    //Install VirtualBox
    dnf install kernel-devel kernel-headers dkms
    dnf install VirtualBox
    dnf -y install kernel-devel kernel-headers dkms
    dnf -y install VirtualBox

    //Install Development tools (c,c++ etc)
    dnf group install 'Development Tools'
    dnf -y group install 'Development Tools'

    //Install Java JDK
    sudo yum install java-1.8.0-openjdk-devel
    yum install java-1.8.0-openjdk-devel

    //Install Atom
    https://atom.io/ and download .rpm file
    sudo dnf install ./atom.x86_64.rpm
    dnf -y install ./atom.x86_64.rpm
  8. sashuu69 revised this gist May 16, 2018. 1 changed file with 12 additions and 1 deletion.
    13 changes: 12 additions & 1 deletion post_fedora_install.txt
    Original file line number Diff line number Diff line change
    @@ -45,4 +45,15 @@ dnf config-manager --add-repo=http://negativo17.org/repos/fedora-steam.repo
    dnf -y install steam

    //Install VirtualBox
    Install VirtualBox
    dnf install kernel-devel kernel-headers dkms
    dnf install VirtualBox

    //Install Development tools (c,c++ etc)
    dnf group install 'Development Tools'

    //Install Java JDK
    sudo yum install java-1.8.0-openjdk-devel

    //Install Atom
    https://atom.io/ and download .rpm file
    sudo dnf install ./atom.x86_64.rpm
  9. sashuu69 created this gist May 16, 2018.
    48 changes: 48 additions & 0 deletions post_fedora_install.txt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,48 @@
    //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