kontakt@peters-christoph.de

Schlagwort: ubuntu

peters-christoph.de

Ubuntu 18.04 Mysql Server Setup

Achtung: „YourPasswordHere“ bitte mit deinem gewünschten Root Passwort ersetzen. apt update apt install -y mysql-server mysql_secure_installation mysql ALTER USER ‚root’@’localhost‘ IDENTIFIED WITH mysql_native_password BY ‚YourPasswordHere‘;  

Colourized Bash, farbige Shell

vi ~/.bashrc export LS_OPTIONS=‘–color=auto‘ eval „`dircolors`“ alias ls=’ls $LS_OPTIONS‘ alias ll=’ls $LS_OPTIONS -lha‘ alias l=’ls $LS_OPTIONS -lA‘ # improve cd.. typo alias cd..=’cd ..‘ alias grep=’grep –color=auto‘ alias egrep=’egrep –color=auto‘ alias fgrep=’fgrep –color=auto‘ case „$TERM“ in xterm-color) color_prompt=yes;; esac force_color_prompt=yes if [ -n „$force_color_prompt“ ]; then if [ -x /usr/bin/tput ] && tput setaf 1…
Weiterlesen

iptables löschen

Mit folgenden Befehlen können alle vorhandenen iptables gelöscht werden. iptables -F iptables -t nat -F iptables -t mangle -F iptables -X iptables -t nat -X iptables -t mangle -X echo 0 > /proc/sys/net/ipv4/ip_forward iptables -P INPUT ACCEPT iptables -P OUTPUT ACCEPT iptables -P FORWARD ACCEPT