Letzte Änderung: 09. Juli 2021Red Hat Logos

 Meine Lieblingssoftware (Bash) in einer Installationsroutine 


dnf install screen mc htop sysstat glances iotop vnstat vim-common vim-enhanced

Centos 8 / Fedora 34 Todo nach der installation


$ hostnamectl status # view current hostname $ hostnamectl set-hostname --static "robbinespu" # set up new hostname --- SELinux ausschalten (Achtung, kann Unsicherheit bringen !) $ vi /etc/selinux/config SELINUX=disabled --- Zusätzliches Repository RPMFusion installieren (für Fedora 34): $ dnf update --refresh $ dnf install https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm https://mirrors.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm Zusätzliches Repository EPEL Extra Packages for Enterprise Linux installieren (für Centos 8): $ dnf update --refresh $ dnf install --nogpgcheck https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm Zusätzliches Repository RPMFusion (für Centos 8): $ dnf update --refresh $ dnf install --nogpgcheck https://mirrors.rpmfusion.org/free/el/rpmfusion-free-release-8.noarch.rpm https://mirrors.rpmfusion.org/nonfree/el/rpmfusion-nonfree-release-8.noarch.rpm --- Chrome Browser installieren : $ cat << EOF > /etc/yum.repos.d/google-chrome.repo [google-chrome] name=google-chrome - \$basearch baseurl=http://dl.google.com/linux/chrome/rpm/stable/\$basearch enabled=1 gpgcheck=1 gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub EOF nun haben wir 3 Möglichkeiten : $ dnf -y install google-chrome-stable $ dnf -y install google-chrome-beta $ dnf -y install google-chrome-unstable --- zsh installieren $ dnf -y install util-linux-user zsh Und für root die Shell wechseln $ chsh --list-shells $ chsh -s /bin/zsh root neu einloggen und Shell abfragen $ echo $SHELL Systemwide config /etc/zprofile --- Oh-my-zsh installieren $ dnf -y install git $ sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" https://github.com/ohmyzsh/ohmyzsh/wiki/Themes $ vi ~/.zshrc Theme ändern und done! --- Multimediasoft installieren $ dnf -y install vlc copyq kate bluefish krusader p7zip-plugins kalarm k3b regionset libdvdcss k9copy gnome-tweak-tool --- Install Remote Desktop Viewer Remmina mit RDP Protokoll : $ dnf -y install remmina-plugins-rdp --- Firewall ausschalten (Optional) : $ systemctl stop firewalld && systemctl disable firewalld --- Firewall einstellen (Optional) : https://www.hiroom2.com/2018/05/16/fedora-28-firewalld-en/ $ firewall-cmd --add-port=22/tcp --permanent --- $ dnf -y install hwinfo $ hwinfo --framebuffer --- $ vi /etc/default/grub GRUB_GFXMODE=1280x1024 GRUB_GFXPAYLOAD_LINUX=keep $ grub2-mkconfig -o /boot/grub2/grub.cfg

updatedb fehlt


$ dnf install findutils mlocate


RedHat RHEL 8 Swap Size recommendation


Amount of RAM in the system Recommended swap space Recommended swap space if allowing for hibernation <= 2 GB 2 times the amount of RAM 3 times the amount of RAM > 2 GB – 8 GB Equal to the amount of RAM 2 times the amount of RAM > 8 GB – 64 GB At least 4 GB 1.5 times the amount of RAM > 64 GB At least 4 GB Hibernation not recommended


SSH Rootlogin eMail Benachrichtigung


$ vi /root/.bashrc echo 'ALERT - Root Shell Access (YourserverName) on:' `date` `who` | mail -s "Alert: Root Access from `who | cut -d"(" -f2 | cut -d")" -f1`" you@yourdomain.com


Autostart


Kommandos in die /etc/rc.local eintragen. Diese werden dann nach den Init Scripts ausgeführt.


Wake up on Lan


Fedora/Centos das Paket net-tools installieren. ether-wake Mac-Adress und schon kommt Licht ins Dunkel ...