This commit is contained in:
coelner 2022-10-16 10:34:58 +02:00
parent 3cbfaa4458
commit 584ce283c9
2 changed files with 121 additions and 1 deletions

View File

@ -73,4 +73,23 @@ Nextcloud
### client
the data source aka client holds a local database to be fast. this db does not get copied to the remote target. the remote target only contains `dlist.zip.aes`, `dindex.zip.aes` and `dblock.zip.aes` files.
`duplicati-cli repair {filepath}`
`duplicati-cli repair {filepath}`
### .bashrc
```
alias hddapm='for dev in /dev/sd?; do echo -n "$dev : "; hdparm -B $dev | grep -E "APM"; done; echo ""'
alias hddlongresult='for dev in /dev/sd?; do echo -n "$dev : "; smartctl -a -n standby $dev | grep "# 1"; done; echo "";'
alias hddlongtest='for dev in /dev/sd?; do echo -n "$dev : "; smartctl -t long $dev | grep "complete after" ; done; echo ""'
alias hddspindown='for dev in /dev/sd?; do echo -n "$dev : "; hdparm -y $dev; done;'
alias hddstatus='for dev in /dev/sd?; do echo -n "$dev : "; smartctl -i -n standby $dev | grep -E "ACTIVE|IDLE|STANDBY"; done; echo ""'
alias l='ls $LS_OPTIONS -lA'
alias ll='ls $LS_OPTIONS -l'
alias ls='ls $LS_OPTIONS'
alias lsuuid='lsblk -o +uuid,name'
alias scrubstatus='for dev in /srv/dev-disk-by-label*; do echo -n "$dev : "; btrfs scrub status $dev | grep -E "Status|ETA"; done; echo ""'
alias smartstatus='for dev in /dev/sd?; do echo -n "$dev : "; smartctl -a -n standby $dev | grep "in_progress" ; done; echo ""'
alias snapraidscrub='snapraid -o 10 -p 100 scrub'
alias update='apt update && apt -t bullseye-backports dist-upgrade'
```

101
linux_profile.md Normal file
View File

@ -0,0 +1,101 @@
# user profile
## .bashrc
```cat .bashrc
#
# ~/.bashrc
#
HISTIGNORE="ls:cd:pwd"
export NMON=cd
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
alias ls='ls --color=auto'
alias l='ls -lha --color=auto'
alias dmesg='dmesg -e'
alias lsuuid='lsblk -o +uuid,name'
alias scrubstatus='for part in $(mount | grep btrfs | cut -d " " -f 3); do echo -ne "$part:\t\t"; sudo btrfs scrub status "$part" | grep "Error"; done'
#PS1='[\A \u@\h \W]\$ '
# get current branch in git repo
function parse_git_branch() {
BRANCH=`git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/\1/'`
if [ ! "${BRANCH}" == "" ]
then
STAT=`parse_git_dirty`
echo "[${BRANCH}${STAT}]"
else
echo ""
fi
}
# get current status of git repo
function parse_git_dirty {
status=`git status 2>&1 | tee`
dirty=`echo -n "${status}" 2> /dev/null | grep "modified:" &> /dev/null; echo "$?"`
untracked=`echo -n "${status}" 2> /dev/null | grep "Untracked files" &> /dev/null; echo "$?"`
ahead=`echo -n "${status}" 2> /dev/null | grep "Your branch is ahead of" &> /dev/null; echo "$?"`
newfile=`echo -n "${status}" 2> /dev/null | grep "new file:" &> /dev/null; echo "$?"`
renamed=`echo -n "${status}" 2> /dev/null | grep "renamed:" &> /dev/null; echo "$?"`
deleted=`echo -n "${status}" 2> /dev/null | grep "deleted:" &> /dev/null; echo "$?"`
bits=''
if [ "${renamed}" == "0" ]; then
bits=">${bits}"
fi
if [ "${ahead}" == "0" ]; then
bits="*${bits}"
fi
if [ "${newfile}" == "0" ]; then
bits="+${bits}"
fi
if [ "${untracked}" == "0" ]; then
bits="?${bits}"
fi
if [ "${deleted}" == "0" ]; then
bits="x${bits}"
fi
if [ "${dirty}" == "0" ]; then
bits="!${bits}"
fi
if [ ! "${bits}" == "" ]; then
echo " ${bits}"
else
echo ""
fi
}
function Color() {
echo "\[$(tput setaf $1)\]"
}
function ResetColor() {
echo "\[$(tput sgr0)\]"
}
# now you can add it to your prompt like this:
# function which configures the prompet...
function BashPrompt {
local last_status=$?
local reset=$(ResetColor)
local failure="✘"
local success="✔"
if [[ "$last_status" != "0" ]]; then
last_status="$(Color 5)$failure$reset"
else
last_status="$(Color 2)$success$reset"
fi
# ...some other things like hostname, current git branch etc
echo "$last_status"
}
export PS1="`BashPrompt` [\A|\[\e[1;36m\]\u\[\e[0m\]@\h \W]\`parse_git_branch\`\\$ "
export PATH="$HOME/.cargo/bin:$PATH" #13.08.2020 rust env
export PATH="$HOME/.local/bin:$PATH" #11.08.2020 TockOS OpenSK
export PATH="$PATH:$HOME/src/fomu-toolchain-linux/bin"