Surprise! We've been running on hardware provided by BuyVM for a few months and wanted to show them a little appreciation.
Running a paste site comes with unique challenges, ones that aren't always obvious and hard to control. As such, BuyVM offered us a home where we could worry less about the hosting side of things and focus on maintaining a clean and useful service! Go check them out and show them some love!
Description: Telepítés
Submitted by broskogabor1988 on December 28, 2023

New Paste 1 (Bash)

#!/bin/bash
#Első lépés a programok telepítése előtt


    #Rendszer frissítés


    sudo apt update
    sudo apt upgrade


#Telepítés után telepítendő programok


    #A.Internet


        #1.Chrome Böngésző
            sudo sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
            wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub
            sudo apt-key add -
            sudo apt-get update
            sudo apt-get install google-chrome-stable


        #2.Tutanota(E-mail Kliens)
            mkdir ~/Appimage
            wget -P ~/Appimage https://app.tuta.com/desktop/tutanota-desktop-linux.AppImage
            chmod ug+x ~/Appimage/tutanota-desktop-linux.Appimage
            #Futtatáshoz:
                #1.Terminálban való Futtatáshoz: ~/Appimage/./tutanota-desktop-linux.Appimage
                #2.Fájlkezelőben való Futtatáshoz: Lépj be a Saját mappa/Appimage mappába és kattints kétszer a tutanota-desktop-linux.Appimage fájlra.


        #3.Dropbox
            sudo apt install dropbox


        #4.Birdtray
            sudo apt install birdtray


        #5.Qbittorent
            sudo apt install qbittorrent


    #B.Fejlesztés


        #6.Meld
            sudo apt install meld


    #C.Hang és Videó


        #7.Audacious
            sudo apt install audacious


        #8.VLC
            sudo apt install vlc


    #D.Iroda


        #9.Calibre
            sudo apt install calibre


    #E.Kellékek


        #10.Kate
            sudo apt install kate


        #11.Krusader
            sudo apt install krusader


    #F.Adminisztráció


        #12.Conky
            sudo apt install conky-all
            #A Conky használatához különböző beállítások kellenek, amelyekről leírásokat például itt találhatsz:[HTTPS://HOGYANOK.COM/CONKY-TELEPITESE-ES-BEALLITASA]


        #13.CPU-X(információs program, amely a processzorról, alaplapról és egyéb hardverekről jelenít meg információt.)
            sudo apt install cpu-x


        #14.VirtualBox
            sudo apt install virtualbox


    #G.Betűtípus


        #15.Inconsolata
            sudo apt-get install fonts-inconsolata -y
            sudo fc-cache -fv


#Telepítés után eltávolítandó programok


    #H.Internet


        #16.HexChat
            sudo apt purge hexchat


        #17.Transmission
            sudo apt purge transmission


    #I.Hang és Videó


        #18.Celluloid
            sudo apt purge celluloid


        #19.Hypnotix
            sudo apt purge hypnotix


        #20.Rhythmbox
            sudo apt purge rhythmbox


#Telepítés/Törlés után tisztítás


    sudo apt-get clean
    sudo apt-get autoclean
    sudo apt-get autoremove
    sudo aptitude purge `dpkg --get-selections | grep deinstall | awk '{print $1}'`


read