Skip to content

FaridZelli/LinuxScripts

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

45 Commits
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

πŸ“šοΈ Linux Scripts

This repository contains my post-installation scripts for various Linux distributions.

β“˜ All scripts must be run as root.

Fedora Workstation 42

fedora_ws_base.sh

  • This script automates various maintenance tasks required after a fresh installation,
    such as installing non-free drivers and codecs.

    curl -o ~/fedora_ws_base.sh https://raw.githubusercontent.com/FaridZelli/LinuxScripts/main/fedora_ws_base.sh && chmod a+x ~/fedora_ws_base.sh && ~/fedora_ws_base.sh ; rm -f ~/fedora_ws_base.sh
    

openSUSE Tumbleweed

tumbleweed_base.sh (not actively maintained)

  • This script automates various maintenance tasks required after a fresh installation,
    such as installing non-free drivers and codecs.

    curl -o ~/tumbleweed_base.sh https://raw.githubusercontent.com/FaridZelli/LinuxScripts/main/tumbleweed_base.sh && chmod a+x ~/tumbleweed_base.sh && ~/tumbleweed_base.sh ; rm -f ~/tumbleweed_base.sh
    

πŸ’‘ Tips & Tricks

Useful suggestions to improve your workflow.

Personalize Bash

  • Enable menu-complete:
    Make your terminal more efficient by enabling directory completion
grep -qF 'TAB: menu-complete' ~/.inputrc || echo 'TAB: menu-complete' >> ~/.inputrc
  • Disable HISTFILE:
    If you prefer not to save your command history
grep -qF 'unset HISTFILE' ~/.bashrc || echo 'unset HISTFILE' >> ~/.bashrc
echo 'export PS1="\[$(tput setaf 216)\]\u\[$(tput setaf 220)\]@\[$(tput setaf 222)\]\h \[$(tput setaf 229)\]\w \[$(tput sgr0)\]$ "' >> ~/.bashrc

Flatpaks and AppImages

Suggested tools:

Security Auditing

Suggested tools:

  • Lynis - Security auditing tool for Linux
  • ssh-audit - SSH server & client security auditing

About

Post-install scripts for Linux distributions πŸ“šοΈ

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages