pages:howtos:suse:opensuse-basic-setup
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
pages:howtos:suse:opensuse-basic-setup [2021/06/03 09:23] – created mischerh | pages:howtos:suse:opensuse-basic-setup [2021/12/09 23:33] (current) – rokkitlawnchair | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | {{tag> | + | {{tag>howto opensuse suse basic setup}} |
====== OpenSUSE Basic Setup ====== | ====== OpenSUSE Basic Setup ====== | ||
+ | |||
+ | * https:// | ||
+ | * https:// | ||
+ | |||
+ | Things I like to find on my system (work in progress). | ||
+ | |||
+ | <sxh bash; gutter: false> | ||
+ | zypper install keychain lynx mlocate multitail net-tools-deprecated sysstat tmux | ||
+ | </ | ||
+ | |||
+ | <sxh bash; gutter: false> | ||
+ | ssh-keygen -o -a 100 -t ed25519 -f ~/ | ||
+ | touch ~/ | ||
+ | chmod 600 ~/ | ||
+ | vim ~/ | ||
+ | </ | ||
+ | |||
+ | <sxh bash; title: ~/ | ||
+ | / | ||
+ | </ | ||
+ | |||
+ | |||
+ | <sxh bash; gutter: false> | ||
+ | vim ~/.bashrc | ||
+ | </ | ||
+ | |||
+ | <sxh bash; title: ~/ | ||
+ | # ~/.bashrc: executed by bash(1) for non-login shells. | ||
+ | # see / | ||
+ | # for examples | ||
+ | |||
+ | # If not running interactively, | ||
+ | case $- in | ||
+ | *i*) ;; | ||
+ | *) return;; | ||
+ | esac | ||
+ | |||
+ | # don't put duplicate lines or lines starting with space in the history. | ||
+ | # See bash(1) for more options | ||
+ | HISTCONTROL=ignoreboth | ||
+ | |||
+ | # append to the history file, don't overwrite it | ||
+ | shopt -s histappend | ||
+ | |||
+ | # for setting history length see HISTSIZE and HISTFILESIZE in bash(1) | ||
+ | HISTSIZE=1000 | ||
+ | HISTFILESIZE=2000 | ||
+ | HISTTIMEFORMAT=" | ||
+ | |||
+ | # check the window size after each command and, if necessary, | ||
+ | # update the values of LINES and COLUMNS. | ||
+ | shopt -s checkwinsize | ||
+ | |||
+ | # If set, the pattern " | ||
+ | # match all files and zero or more directories and subdirectories. | ||
+ | #shopt -s globstar | ||
+ | |||
+ | # make less more friendly for non-text input files, see lesspipe(1) | ||
+ | [ -x / | ||
+ | |||
+ | # set variable identifying the chroot you work in (used in the prompt below) | ||
+ | if [ -z " | ||
+ | debian_chroot=$(cat / | ||
+ | fi | ||
+ | |||
+ | # set a fancy prompt (non-color, unless we know we " | ||
+ | case " | ||
+ | xterm-color|*-256color) color_prompt=yes;; | ||
+ | esac | ||
+ | |||
+ | # uncomment for a colored prompt, if the terminal has the capability; turned | ||
+ | # off by default to not distract the user: the focus in a terminal window | ||
+ | # should be on the output of commands, not on the prompt | ||
+ | # | ||
+ | |||
+ | if [ -n " | ||
+ | if [ -x / | ||
+ | # We have color support; assume it's compliant with Ecma-48 | ||
+ | # (ISO/ | ||
+ | # a case would tend to support setf rather than setaf.) | ||
+ | color_prompt=yes | ||
+ | else | ||
+ | color_prompt= | ||
+ | fi | ||
+ | fi | ||
+ | |||
+ | if [ " | ||
+ | PS1=' | ||
+ | else | ||
+ | PS1=' | ||
+ | fi | ||
+ | unset color_prompt force_color_prompt | ||
+ | |||
+ | # If this is an xterm set the title to user@host: | ||
+ | case " | ||
+ | xterm*|rxvt*) | ||
+ | PS1=" | ||
+ | ;; | ||
+ | *) | ||
+ | ;; | ||
+ | esac | ||
+ | |||
+ | # enable color support of ls and also add handy aliases | ||
+ | if [ -x / | ||
+ | test -r ~/ | ||
+ | alias ls='ls --color=auto' | ||
+ | #alias dir=' | ||
+ | #alias vdir=' | ||
+ | |||
+ | alias grep=' | ||
+ | alias fgrep=' | ||
+ | alias egrep=' | ||
+ | fi | ||
+ | |||
+ | # colored GCC warnings and errors | ||
+ | #export GCC_COLORS=' | ||
+ | |||
+ | # some more ls aliases | ||
+ | alias ll='ls -alF' | ||
+ | alias la='ls -A' | ||
+ | alias l='ls -CF' | ||
+ | |||
+ | # Add an " | ||
+ | # sleep 10; alert | ||
+ | alias alert=' | ||
+ | |||
+ | # Alias definitions. | ||
+ | # You may want to put all your additions into a separate file like | ||
+ | # ~/ | ||
+ | # See / | ||
+ | |||
+ | if [ -f ~/ | ||
+ | . ~/ | ||
+ | fi | ||
+ | |||
+ | # enable programmable completion features (you don't need to enable | ||
+ | # this, if it's already enabled in / | ||
+ | # sources / | ||
+ | if ! shopt -oq posix; then | ||
+ | if [ -f / | ||
+ | . / | ||
+ | elif [ -f / | ||
+ | . / | ||
+ | fi | ||
+ | fi | ||
+ | [ -r / | ||
+ | |||
+ | # SSH AGENT KEYCHAIN | ||
+ | eval $(keychain --eval id_rsa id_ed25519) | ||
+ | |||
+ | # gitprompt | ||
+ | . ~/ | ||
+ | |||
+ | # alias for Python 3 | ||
+ | alias " | ||
+ | |||
+ | # PATH | ||
+ | export PATH=" | ||
+ | </ | ||
+ | |||
+ | <sxh bash; gutter: false> | ||
+ | mkdir -pv ~/bin ~/repos | ||
+ | cd ~/repos | ||
+ | git clone https:// | ||
+ | git clone https:// | ||
+ | git clone https:// | ||
+ | git clone https:// | ||
+ | ln -s ~/ | ||
+ | ln -s ~/ | ||
+ | </ | ||
+ | |||
+ | <sxh bash; gutter: false> | ||
+ | touch ~/ | ||
+ | chmod 600 ~/ | ||
+ | vim ~/ | ||
+ | </ | ||
+ | |||
+ | <sxh bash; title: ~/ | ||
+ | Host * | ||
+ | AddKeysToAgent | ||
+ | IdentityFile | ||
+ | IdentityFile | ||
+ | ControlMaster | ||
+ | ControlPath | ||
+ | ControlPersist | ||
+ | ServerAliveInterval | ||
+ | ServerAliveCountMax | ||
+ | |||
+ | Host ONE | ||
+ | HostName | ||
+ | | ||
+ | Host TWO | ||
+ | HostName | ||
+ | |||
+ | Host THREE | ||
+ | HostName | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | ~~DISCUSSION~~ | ||
pages/howtos/suse/opensuse-basic-setup.1622712187.txt.gz · Last modified: 2021/06/03 09:23 by mischerh