more stuff

This commit is contained in:
alexpolo1
2023-06-01 21:52:07 +02:00
parent b69e2a4a3a
commit e3a0011fb3
18 changed files with 633 additions and 0 deletions

76
.bash_history Normal file
View File

@@ -0,0 +1,76 @@
apt-get update
sudo apt-get update
sudo apt-get upgrade
ssh 217.74.220.10
cd .ssh
cd ./ssh/
ls -hlrt
apt-get install openssh
sudoapt-get install openssh
sudo apt-get install openssh
sudo apt-get install openssh-server
ls -hlrt
ls -lsart
cd .ssh
ssh 217.74.220.10
pwd
ls -hlrt
ip a
cd .ssh
ls -hlrt
vi id_rsa
ssh 217.74.220.10
sudo chmod 600 ~/.ssh/id_rsa
ssh 217.74.220.10
ssh pi@217.74.220.10
vi id_rsa.pub
ssh pi@217.74.220.10
sudo chmod 600 ~/.ssh/id_rsa.pub
ls -hlrt
ssh pi@217.74.220.10
ssh alex@217.74.220.10
eval $(ssh-agent -s)
ssh-add ~/.ssh/id_rsa
ssh pi@217.74.220.10
ssh-add -l
vi id_rsa
vi id_rsa.pub
ssh pi@217.74.220.10
ssh alex@217.74.220.10
cd ..
vi .bash_profile
exit
pwd
sudo apt-get install brew
pwd
vi .bash_profile
exit
pwd
vi .bash_profile
exit
pwd
ls -hlrt
pwd
ssh alex@217.74.220.10
exit
pwd
ls -hlart
ls -halrt
ssh 217.74.220.10
sudo apt-get update
sudo apt-get upgrade
vi .bash_profile
ssh 172.31.138.197
ping ubuntuserver
ping 192.168.1.121
ssh 192.168.1.121
pwd
ls -hlrt
ls
wsl
ssh 192.168.1.122
ssh 192.168.1.122
ssh 192.168.1.122
ssh 192.168.1.121
ssh 192.168.1.121
exit

7
.bash_logout Normal file
View File

@@ -0,0 +1,7 @@
# ~/.bash_logout: executed by bash(1) when login shell exits.
# when leaving the console clear the screen to increase privacy
if [ "$SHLVL" = 1 ]; then
[ -x /usr/bin/clear_console ] && /usr/bin/clear_console -q
fi

1
.bash_profile Normal file
View File

@@ -0,0 +1 @@
export PS1="\[\e[32m\][\[\e[m\]\[\e[31m\]\u\[\e[m\]\[\e[33m\]@\[\e[m\]\[\e[32m\]\h\[\e[m\]:\[\e[36m\]\w\[\e[m\]\[\e[32m\]]\[\e[m\]\[\e[32;47m\]\\$\[\e[m\] "

117
.bashrc Normal file
View File

@@ -0,0 +1,117 @@
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# If not running interactively, don't do anything
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
# check the window size after each command and, if necessary,
# update the values of LINES and COLUMNS.
shopt -s checkwinsize
# If set, the pattern "**" used in a pathname expansion context will
# 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 /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
# set variable identifying the chroot you work in (used in the prompt below)
if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then
debian_chroot=$(cat /etc/debian_chroot)
fi
# set a fancy prompt (non-color, unless we know we "want" color)
case "$TERM" in
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
#force_color_prompt=yes
if [ -n "$force_color_prompt" ]; then
if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
# We have color support; assume it's compliant with Ecma-48
# (ISO/IEC-6429). (Lack of such support is extremely rare, and such
# a case would tend to support setf rather than setaf.)
color_prompt=yes
else
color_prompt=
fi
fi
if [ "$color_prompt" = yes ]; then
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
else
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
fi
unset color_prompt force_color_prompt
# If this is an xterm set the title to user@host:dir
case "$TERM" in
xterm*|rxvt*)
PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
;;
*)
;;
esac
# enable color support of ls and also add handy aliases
if [ -x /usr/bin/dircolors ]; then
test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
alias ls='ls --color=auto'
#alias dir='dir --color=auto'
#alias vdir='vdir --color=auto'
alias grep='grep --color=auto'
alias fgrep='fgrep --color=auto'
alias egrep='egrep --color=auto'
fi
# colored GCC warnings and errors
#export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
# some more ls aliases
alias ll='ls -alF'
alias la='ls -A'
alias l='ls -CF'
# Add an "alert" alias for long running commands. Use like so:
# sleep 10; alert
alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"'
# Alias definitions.
# You may want to put all your additions into a separate file like
# ~/.bash_aliases, instead of adding them here directly.
# See /usr/share/doc/bash-doc/examples in the bash-doc package.
if [ -f ~/.bash_aliases ]; then
. ~/.bash_aliases
fi
# enable programmable completion features (you don't need to enable
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
# sources /etc/bash.bashrc).
if ! shopt -oq posix; then
if [ -f /usr/share/bash-completion/bash_completion ]; then
. /usr/share/bash-completion/bash_completion
elif [ -f /etc/bash_completion ]; then
. /etc/bash_completion
fi
fi

View File

2
.gitconfig Normal file
View File

@@ -0,0 +1,2 @@
[user]
name = alexpolo1

0
.motd_shown Normal file
View File

27
.profile Normal file
View File

@@ -0,0 +1,27 @@
# ~/.profile: executed by the command interpreter for login shells.
# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
# exists.
# see /usr/share/doc/bash/examples/startup-files for examples.
# the files are located in the bash-doc package.
# the default umask is set in /etc/profile; for setting the umask
# for ssh logins, install and configure the libpam-umask package.
#umask 022
# if running bash
if [ -n "$BASH_VERSION" ]; then
# include .bashrc if it exists
if [ -f "$HOME/.bashrc" ]; then
. "$HOME/.bashrc"
fi
fi
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ] ; then
PATH="$HOME/bin:$PATH"
fi
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/.local/bin" ] ; then
PATH="$HOME/.local/bin:$PATH"
fi

1
.ssh/alwkey.pub Normal file
View File

@@ -0,0 +1 @@
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAB1z2eh00OgsBx4Ey969JHzVo9kmGBMq+ia97+BSUX5 alexpolo2850@gmail.com

1
.ssh/authorized_keys Normal file
View File

@@ -0,0 +1 @@
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAB1z2eh00OgsBx4Ey969JHzVo9kmGBMq+ia97+BSUX5 alexpolo2850@gmail.com

8
.ssh/id_rsa Normal file
View File

@@ -0,0 +1,8 @@
-----BEGIN OPENSSH PRIVATE KEY-----
b3BlbnNzaC1rZXktdjEAAAAACmFlczI1Ni1jdHIAAAAGYmNyeXB0AAAAGAAAABAWdcuMZ8
WDdxbYvGkBak/CAAAAEAAAAAEAAAAzAAAAC3NzaC1lZDI1NTE5AAAAIAB1z2eh00OgsBx4
Ey969JHzVo9kmGBMq+ia97+BSUX5AAAAoLwWjY1RfeAHjcmOR9NiuVU4+8X2Qh9voVD/e2
sJJ+mv0uzlJdABU+6gInZHcLhxhKs4NVUmcE5TwyrhYu0MNj7pn9LDTh/Q4ef5gVSNzAI9
lvaJMWr4FMo6VwDRJxSAo87EVKUzAfSotcf/VaY2vN9pe15y+4Gp6dGhVYt2ACGJxuCgoV
dwip8gNCM8J0MFLJR4nA8BbK0UqOUSQ2hBFmQ=
-----END OPENSSH PRIVATE KEY-----

1
.ssh/id_rsa.pub Normal file
View File

@@ -0,0 +1 @@
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAB1z2eh00OgsBx4Ey969JHzVo9kmGBMq+ia97+BSUX5 alexpolo2850@gmail.com

30
.ssh/id_rsa_backup Normal file
View File

@@ -0,0 +1,30 @@
-----BEGIN RSA PRIVATE KEY-----
Proc-Type: 4,ENCRYPTED
DEK-Info: DES-EDE3-CBC,C72E1F3703E1C3E9
NBnJ4YYffIVJ/F+bWKSSj2tXJ+WvTLtNGpr79EGX9iVVUFAFsx/JHzLu2CWhYk0G
wnYZnTrImHFdjYBDp4QR+nFTNb+XyfrFCDbcYEqfASjHjFf4RWZY0eAbhfKKge49
R7iQqrw2cYk3DxVs5LpDpX8OkzajP3VV53AjhGpb+ioygKyyD/nBMy+f89dSRLXC
TmR8/BkltPJmHsu0KY/WQ6TOAIrgbJrcoYgg7QBxJAzWxfpQErDMPKn3P8P5A0bq
ljo2gQEvfyxit4Q/lX1RAKQqp5+lMNaCaMlhPOYmsOm3KlvFQBnV2WmaBPvkJPZ3
IBce2CA//ALtxH+YghdTTh9e+DG+1r1PEgQBKruY0HnMQOMH2nSXDPztE4HLFVbQ
CXfnlH/lqvCLejpDMhJOa68JkzYenbu/ZKQhSi1Nv1A/kvDkp2Tq+QieUZJWbfkk
s90BSgbI6mnEyKAbG8DDWGf853tlbFoAxfVIVT+G1mj3+VGQ3Fc85IboNb4PbsZ8
D0pOhO7M8IytqIqBG5RA6v3cK6rYAmwsXTXLLNS5wGuI6DRRXiKKZE4QUeS7sU91
ADbjhMU/qj3GNeFveP9eRLxBLXTBMKuUR90Tx4B34cN5eQZFpAJHxvb6G+V6VNxR
rihjyI2gl+nbeTO3JC1xeG0U+116U0MymZSJVZm/S6CL4tp0ZlzsG7J6P/daWpgC
3UK7ymgSOm/2JQhkSlzlvagJMI+ITSPxU2F8a06ePSpBlV1PlsEHQw2GkDMSgGn8
4DcbfS/jFiFbMEpTiVLwpJBI622PnCWCCm64E6sK3gA0d9vtzmGTL0CHxN9uNP4y
VycVFZ5mva59EpxP8UwyhlciclBH/aQ1vU6e/hZwoBU/Y+7e0J8BxOlFu6XfHdDN
A1WdcLu+1pVKFzMQ+hZhgRSZHBZ9y93Ouh/YbV5QLo5G8UeK/6z8jU+HXp6r/gKC
iYDx5ZzynApdCtNbrblrmDaoe0E9C9wgDD4leS1zuZumXNsP3tYF4Cz8mT+PiIM9
QRdj0tA8+Pye/8WFPdjKNMJihE2IDfCS80fWaA+yKJGK6UGyl4C1UhL+VAcdCPI9
okzd0NicGogdmbcAfoxDEVR0EYEPNe+fQuS4LoWq7pxVhpIH4BhxC1VetreUtxC3
qwHu4E7srRylYfurgiHV+EMRrCjlkkk7LUp9CNcK00VkPzhnaDN2iuK95pkMPtpT
APqTUmHI5gNzOWd01z5vEQwJKT8XTFyEii/DvN9bbg/DKIeBcRQzlgfi4a3Cj4QO
zYZA8ZYglNLcxgdzBJm6d1hUXxbqE6pCNvgG2nsfxoxmMwWYjVq5MFN8vfIid14F
PUpXJMJCdIQBTCCjFRz2wZq3bvVzJk7dIaKaeji1IZFs7gmFACoxUCckE1Ur7K2k
Obx8DEJuxzecwaoB2+v0o0/FGdRiu5KHvrg7XBiTusR35BCd7bnFGbPI0MGpo9vb
8K6yeGS69omlKAAO9THpnyG7zJoyEV8kxqdWYbUY+I+MHazQc6soFNlaZj2D6XEa
j2koc23pJt4nrqm71RUFC4Cij4H1LL1CSLRz+ysPipSm0tLdn+BxXg==
-----END RSA PRIVATE KEY-----

11
.ssh/known_hosts Normal file
View File

@@ -0,0 +1,11 @@
|1|+9j1w9X9k3Aj6oXFpiSKYyOtkA8=|8x8g/htwvEAr3CiXg2pi4uNe02c= ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBhDdEy0id1AdRUV5CIMVuF0c6OvB0bxmdH18fQYmeIk
|1|ArpXiSL22CC8iu2ODz1bZIANAvE=|ZwwHtMlaHimea+GFhILDeBrXmGk= ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBEsIc4VyWoG8F+CMKighGyK2LqNVvaCtGX2TSmPgRJ9eCKlYa2gJoaBnYS7kCmEkf9fHTgr5aH5hVfkVfCQxHQE=
|1|OWsuqJJeSHkfnc7WCQ9lRN3aht4=|7F22vNeeZIFWArghAA85pGECLlM= ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPwzwXxHsqw3u3G2TgVn65DgIoh1vovm6FiUoGgXxVh6
|1|tRNSS0brqLeYlh7GcmAxAuxbuJs=|SD0tW6FB1ITMYv9ZEp4frwz0SvM= ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDHZcJ+GIMIeYA8ilnuW4tyFsTnckV8V1DguheRP56F61kMOWTNQhl+PYWmeQzx/VWnh2EL7N7EKBxq8vAodHGsLOl6kUzLa46UNtU0deJgVQzRScdO7UjwH7DLBS6LdEtdFCn805l54S/N++INV8BtsDLaj7i7t2N38PfNrynGkTq7q1fAsoYga50WTo7+fOAOMetR3kxFX3++GXpGoCCEQIDtDUkGODv8WorBTVsrSrUIkYpJkNNWZoXJAokctgqwDDMy2MaYMa1WGdqxy9Zrg8/twHdmaRIY3AaCRwEiXMawCJb1P7SzpyT1jviuVWFAcuBulWzMJkTRGSTLmI8z1JbSx3ukP0gWMaK4QuRd2bZMSizI59W5eye1AEBXuW6RgF4cDbKulxpnuuflsUQcJKxykgbgHzQzS6trQ89xa/8z3IMwB+CtqXxIHDZgljb47HjV2rlw6K9dGmW3/D9IYRrOv1L9Bl1LqEh2K3p6waIxtKYrOBZAhaGpkDCeRA0=
|1|ZzkINEGw5gA4cepqvwHa4b8jQys=|bswzlMScqy0k8KNXXanW/RAyhNE= ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBGxY1fTFSrZX+WrwGT0B9sL7g0Ac2NCCqO4Svn4YR9QZzYp+O6mTSGVwLci5Ooe7Tx0VyA81PTdT4wt0oyJXlvk=
|1|2xX88YHROS595r8RJaBvjvvJsJM=|L93I5p0IDB6KSJyEVd2UoLU6k3M= ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOu9RAJc61I5CSiuvxeWUMfzjpkmRzEhXdkN6rpgbESm
|1|lmuqo0zlru9lfGUSReIGngp8X6k=|iYd9oyLLUa8UdLz9CedoL6nMbCw= ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCwCM/oIVclbEk9xJLPSUIvo5b0cbpiGFmJsID716knoN5j71+RqFGavjsoY2xXN0xNht0EPXY+AmEqtJ+qvg3CcERKEKlQPCls9IhW5CIOTIqxh1XZPQMjVa4nOzsUEnwOekCSGjWtA/pElytXETmumTBmhejxbd4bDfeSbMgrRAvCcRyTl8b0yMKg6AAYRepBeX9PYiAT6k1T+d4RaLC9eUSDf9gDCvvPMu+VryctOSUYr7vUWUkuY0z8HtKp+rQ1oqLiQZbnOB6WD0n2ekvMGvR+ta3ZcjcSVbupVah8DmJJJB2LBttdKZOcOvKJqAhEBE2IWiRTUjx+o/uAqWcrrZf3WEUimX7QaYdu5MwgksR3Lr0F6zF5PUnXlQ6smE93C42I3bcMk10/DjIAcN1XfjTBJfBTXxg5AahvK+dpG0/E+epERoaDJNWw+V8yvAlT66b5Hrt+jtn061QqIcuYJxwHjEm5JpAQecvdpEV9nNb4hDXGGBBeRi2kWVeGjas=
|1|oDWS6WnRSFblp8AXibqci1BBxpY=|UVJuj7sK4mUrBCOXHZCgT/72pEQ= ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBM2as33wE9f/kczlDOhqfbrNDuvASVj45gqbajqAqWnDrYx3nRHj6blBjiWbFmqpWnmB3dOow1ndim10EchHFAU=
|1|N7EzHlRd+fpyup5GbwnTWGkIr68=|pE9Td2UtgMXyFTTqA3w39z4wmYY= ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOMqqnkVzrm0SdG6UOoqKLsabgH5C9okWi0dh2l9GKJl
|1|V3rKjY9lQ0KbZWHYw10fJkA64RY=|hnRufEQsMTZdgxVhdZH6megZSCw= ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCj7ndNxQowgcQnjshcLrqPEiiphnt+VTTvDP6mHBL9j1aNUkY4Ue1gvwnGLVlOhGeYrnZaMgRK6+PKCUXaDbC7qtbW8gIkhL7aGCsOr/C56SJMy/BCZfxd1nWzAOxSDPgVsmerOBYfNqltV9/hWCqBywINIR+5dIg6JTJ72pcEpEjcYgXkE2YEFXV1JHnsKgbLWNlhScqb2UmyRkQyytRLtL+38TGxkxCflmO+5Z8CSSNY7GidjMIZ7Q4zMjA2n1nGrlTDkzwDCsw+wqFPGQA179cnfGWOWRVruj16z6XyvxvjJwbz0wQZ75XK5tKSb7FNyeIEs4TT4jk+S4dhPeAUC5y+bDYirYgM4GC7uEnztnZyaVWQ7B381AK4Qdrwt51ZqExKbQpTUNn+EjqoTwvqNj4kqx5QUCI0ThS/YkOxJCXmPUWZbhjpCg56i+2aB6CmK2JGhn57K5mj0MNdBXA4/WnwH6XoPWJzK5Nyu2zB3nAZp+S5hpQs+p1vN1/wsjk=
|1|nFmkkAJwYz/p9vn+bwQqqYH+Gzw=|igBgJdFGQfp1A4J3wa86uHico34= ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBEmKSENjQEezOmxkZMy7opKgwFB9nkt5YRrYMjNuG5N87uRgg6CLrbo5wAdT/y6v0mKV0U2w0WZ2YB/++Tpockg=

9
.ssh/known_hosts.old Normal file
View File

@@ -0,0 +1,9 @@
|1|+9j1w9X9k3Aj6oXFpiSKYyOtkA8=|8x8g/htwvEAr3CiXg2pi4uNe02c= ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBhDdEy0id1AdRUV5CIMVuF0c6OvB0bxmdH18fQYmeIk
|1|ArpXiSL22CC8iu2ODz1bZIANAvE=|ZwwHtMlaHimea+GFhILDeBrXmGk= ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBEsIc4VyWoG8F+CMKighGyK2LqNVvaCtGX2TSmPgRJ9eCKlYa2gJoaBnYS7kCmEkf9fHTgr5aH5hVfkVfCQxHQE=
|1|OWsuqJJeSHkfnc7WCQ9lRN3aht4=|7F22vNeeZIFWArghAA85pGECLlM= ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPwzwXxHsqw3u3G2TgVn65DgIoh1vovm6FiUoGgXxVh6
|1|tRNSS0brqLeYlh7GcmAxAuxbuJs=|SD0tW6FB1ITMYv9ZEp4frwz0SvM= ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDHZcJ+GIMIeYA8ilnuW4tyFsTnckV8V1DguheRP56F61kMOWTNQhl+PYWmeQzx/VWnh2EL7N7EKBxq8vAodHGsLOl6kUzLa46UNtU0deJgVQzRScdO7UjwH7DLBS6LdEtdFCn805l54S/N++INV8BtsDLaj7i7t2N38PfNrynGkTq7q1fAsoYga50WTo7+fOAOMetR3kxFX3++GXpGoCCEQIDtDUkGODv8WorBTVsrSrUIkYpJkNNWZoXJAokctgqwDDMy2MaYMa1WGdqxy9Zrg8/twHdmaRIY3AaCRwEiXMawCJb1P7SzpyT1jviuVWFAcuBulWzMJkTRGSTLmI8z1JbSx3ukP0gWMaK4QuRd2bZMSizI59W5eye1AEBXuW6RgF4cDbKulxpnuuflsUQcJKxykgbgHzQzS6trQ89xa/8z3IMwB+CtqXxIHDZgljb47HjV2rlw6K9dGmW3/D9IYRrOv1L9Bl1LqEh2K3p6waIxtKYrOBZAhaGpkDCeRA0=
|1|ZzkINEGw5gA4cepqvwHa4b8jQys=|bswzlMScqy0k8KNXXanW/RAyhNE= ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBGxY1fTFSrZX+WrwGT0B9sL7g0Ac2NCCqO4Svn4YR9QZzYp+O6mTSGVwLci5Ooe7Tx0VyA81PTdT4wt0oyJXlvk=
|1|2xX88YHROS595r8RJaBvjvvJsJM=|L93I5p0IDB6KSJyEVd2UoLU6k3M= ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOu9RAJc61I5CSiuvxeWUMfzjpkmRzEhXdkN6rpgbESm
|1|lmuqo0zlru9lfGUSReIGngp8X6k=|iYd9oyLLUa8UdLz9CedoL6nMbCw= ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCwCM/oIVclbEk9xJLPSUIvo5b0cbpiGFmJsID716knoN5j71+RqFGavjsoY2xXN0xNht0EPXY+AmEqtJ+qvg3CcERKEKlQPCls9IhW5CIOTIqxh1XZPQMjVa4nOzsUEnwOekCSGjWtA/pElytXETmumTBmhejxbd4bDfeSbMgrRAvCcRyTl8b0yMKg6AAYRepBeX9PYiAT6k1T+d4RaLC9eUSDf9gDCvvPMu+VryctOSUYr7vUWUkuY0z8HtKp+rQ1oqLiQZbnOB6WD0n2ekvMGvR+ta3ZcjcSVbupVah8DmJJJB2LBttdKZOcOvKJqAhEBE2IWiRTUjx+o/uAqWcrrZf3WEUimX7QaYdu5MwgksR3Lr0F6zF5PUnXlQ6smE93C42I3bcMk10/DjIAcN1XfjTBJfBTXxg5AahvK+dpG0/E+epERoaDJNWw+V8yvAlT66b5Hrt+jtn061QqIcuYJxwHjEm5JpAQecvdpEV9nNb4hDXGGBBeRi2kWVeGjas=
|1|oDWS6WnRSFblp8AXibqci1BBxpY=|UVJuj7sK4mUrBCOXHZCgT/72pEQ= ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBM2as33wE9f/kczlDOhqfbrNDuvASVj45gqbajqAqWnDrYx3nRHj6blBjiWbFmqpWnmB3dOow1ndim10EchHFAU=
|1|N7EzHlRd+fpyup5GbwnTWGkIr68=|pE9Td2UtgMXyFTTqA3w39z4wmYY= ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOMqqnkVzrm0SdG6UOoqKLsabgH5C9okWi0dh2l9GKJl

View File

341
.viminfo Normal file
View File

@@ -0,0 +1,341 @@
# This viminfo file was generated by Vim 8.2.
# You may edit it if you're careful!
# Viminfo version
|1,4
# Value of 'encoding' when this file was written
*encoding=utf-8
# hlsearch on (H) or off (h):
~h
# Last Search Pattern:
~MSle0~/identi
# Command Line History (newest to oldest):
:q
|2,0,1685647205,,"q"
:s
|2,0,1685647150,,"s"
:wq
|2,0,1685646944,,"wq"
:q!
|2,0,1685646818,,"q!"
# Search String History (newest to oldest):
?/identi
|2,1,1685647154,47,"identi"
# Expression History (newest to oldest):
# Input Line History (newest to oldest):
# Debug Line History (newest to oldest):
# Registers:
""1 LINE 0
public_key_string
|3,1,1,1,1,0,1685646920,"public_key_string"
"2 LINE 0
public_key_string
|3,0,2,1,1,0,1685646810,"public_key_string"
"3 LINE 0
#!/bin/bash
export TERM=xterm-color
export CLICOLOR=1
export GREP_OPTIONS='--color=auto'
# export LSCOLORS=Exfxcxdxbxegedabagacad
export LSCOLORS=gxfxcxdxbxegedabagacad # Dark lscolor scheme
# Don't put duplicate lines in your bash history
export HISTCONTROL=ignoredups
# increase history limit (100KB or 5K entries)
|3,0,3,1,9,0,1685475018,"#!/bin/bash","export TERM=xterm-color","export CLICOLOR=1","export GREP_OPTIONS='--color=auto'","# export LSCOLORS=Exfxcxdxbxegedabagacad","export LSCOLORS=gxfxcxdxbxegedabagacad # Dark lscolor scheme","# Don't put duplicate lines in your bash history","export HISTCONTROL=ignoredups","# increase history limit (100KB or 5K entries)"
"4 LINE 0
---- BEGIN SSH2 PUBLIC KEY ----
Comment: "raspikey"
AAAAB3NzaC1yc2EAAAADAQABAAABAQCj0Dp8vYqaDNuHJ91HumgOmNZTIaBjxH5B
6wxSgNbu6r75N+JrkYYCMVzkWxtJnIaqvsy5A2u1u5Wa02uJ6DRNMyQkX+UaZXT2
6FAdK59U9OquvXcQKvUmACljcKe/J77TrWb7pSVYeMcBXUgmN6Giw4bUfyzok6T5
dIua/AJx1Ti6PTcjZCAqnmyf9lDAyg8UQ0AvOaojbQQx1m5xr/bvvYi5Ow5+3ctJ
Pv07PuwRzgHY3QuRYwphOxcU92jbN4uVFLwUUYyUCjeoCp0OANLxP6xDXAo20h5r
dZAcAexFFiaS8CsKdJTFjyu92rEoZJ71OTSxYAkdXrDQ42f125X/
---- END SSH2 PUBLIC KEY ----
|3,0,4,1,9,0,1685473176,"---- BEGIN SSH2 PUBLIC KEY ----","Comment: \"raspikey\"","AAAAB3NzaC1yc2EAAAADAQABAAABAQCj0Dp8vYqaDNuHJ91HumgOmNZTIaBjxH5B","6wxSgNbu6r75N+JrkYYCMVzkWxtJnIaqvsy5A2u1u5Wa02uJ6DRNMyQkX+UaZXT2","6FAdK59U9OquvXcQKvUmACljcKe/J77TrWb7pSVYeMcBXUgmN6Giw4bUfyzok6T5","dIua/AJx1Ti6PTcjZCAqnmyf9lDAyg8UQ0AvOaojbQQx1m5xr/bvvYi5Ow5+3ctJ","Pv07PuwRzgHY3QuRYwphOxcU92jbN4uVFLwUUYyUCjeoCp0OANLxP6xDXAo20h5r",>54
|<"dZAcAexFFiaS8CsKdJTFjyu92rEoZJ71OTSxYAkdXrDQ42f125X/","---- END SSH2 PUBLIC KEY ----"
"5 LINE 0
---- BEGIN SSH2 PUBLIC KEY ----
Comment: "raspikey"
AAAAB3NzaC1yc2EAAAADAQABAAABAQCj0Dp8vYqaDNuHJ91HumgOmNZTIaBjxH5B
6wxSgNbu6r75N+JrkYYCMVzkWxtJnIaqvsy5A2u1u5Wa02uJ6DRNMyQkX+UaZXT2
6FAdK59U9OquvXcQKvUmACljcKe/J77TrWb7pSVYeMcBXUgmN6Giw4bUfyzok6T5
dIua/AJx1Ti6PTcjZCAqnmyf9lDAyg8UQ0AvOaojbQQx1m5xr/bvvYi5Ow5+3ctJ
Pv07PuwRzgHY3QuRYwphOxcU92jbN4uVFLwUUYyUCjeoCp0OANLxP6xDXAo20h5r
dZAcAexFFiaS8CsKdJTFjyu92rEoZJ71OTSxYAkdXrDQ42f125X/
---- END SSH2 PUBLIC KEY ----
|3,0,5,1,9,0,1685473176,"---- BEGIN SSH2 PUBLIC KEY ----","Comment: \"raspikey\"","AAAAB3NzaC1yc2EAAAADAQABAAABAQCj0Dp8vYqaDNuHJ91HumgOmNZTIaBjxH5B","6wxSgNbu6r75N+JrkYYCMVzkWxtJnIaqvsy5A2u1u5Wa02uJ6DRNMyQkX+UaZXT2","6FAdK59U9OquvXcQKvUmACljcKe/J77TrWb7pSVYeMcBXUgmN6Giw4bUfyzok6T5","dIua/AJx1Ti6PTcjZCAqnmyf9lDAyg8UQ0AvOaojbQQx1m5xr/bvvYi5Ow5+3ctJ","Pv07PuwRzgHY3QuRYwphOxcU92jbN4uVFLwUUYyUCjeoCp0OANLxP6xDXAo20h5r",>54
|<"dZAcAexFFiaS8CsKdJTFjyu92rEoZJ71OTSxYAkdXrDQ42f125X/","---- END SSH2 PUBLIC KEY ----"
# File marks:
'0 122 0 /etc/ssh/sshd_config
|4,48,122,0,1685647205,"/etc/ssh/sshd_config"
'1 1 102 ~/.ssh/authorized_keys
|4,49,1,102,1685646944,"~/.ssh/authorized_keys"
'2 1 22 ~/.ssh/authorized_keys
|4,50,1,22,1685646818,"~/.ssh/authorized_keys"
'3 1 0 ~/.ssh/config
|4,51,1,0,1685646762,"~/.ssh/config"
'4 1 0 ~/.bash_profile
|4,52,1,0,1685640942,"~/.bash_profile"
'5 1 0 ~/.bash_profile
|4,53,1,0,1685475072,"~/.bash_profile"
'6 1 37 ~/.bash_profile
|4,54,1,37,1685475024,"~/.bash_profile"
'7 1 37 ~/.bash_profile
|4,55,1,37,1685475024,"~/.bash_profile"
'8 270 66 ~/.bash_profile
|4,56,270,66,1685474915,"~/.bash_profile"
'9 270 66 ~/.bash_profile
|4,57,270,66,1685474915,"~/.bash_profile"
# Jumplist (newest first):
-' 122 0 /etc/ssh/sshd_config
|4,39,122,0,1685647205,"/etc/ssh/sshd_config"
-' 1 0 /etc/ssh/sshd_config
|4,39,1,0,1685647146,"/etc/ssh/sshd_config"
-' 1 102 ~/.ssh/authorized_keys
|4,39,1,102,1685646944,"~/.ssh/authorized_keys"
-' 1 102 ~/.ssh/authorized_keys
|4,39,1,102,1685646944,"~/.ssh/authorized_keys"
-' 1 22 ~/.ssh/authorized_keys
|4,39,1,22,1685646818,"~/.ssh/authorized_keys"
-' 1 22 ~/.ssh/authorized_keys
|4,39,1,22,1685646818,"~/.ssh/authorized_keys"
-' 1 0 ~/.ssh/config
|4,39,1,0,1685646762,"~/.ssh/config"
-' 1 0 ~/.ssh/config
|4,39,1,0,1685646762,"~/.ssh/config"
-' 1 0 ~/.ssh/config
|4,39,1,0,1685646762,"~/.ssh/config"
-' 1 0 ~/.ssh/config
|4,39,1,0,1685646762,"~/.ssh/config"
-' 1 0 ~/.ssh/config
|4,39,1,0,1685646762,"~/.ssh/config"
-' 1 0 ~/.ssh/config
|4,39,1,0,1685646762,"~/.ssh/config"
-' 1 0 ~/.ssh/config
|4,39,1,0,1685646762,"~/.ssh/config"
-' 1 0 ~/.ssh/config
|4,39,1,0,1685646762,"~/.ssh/config"
-' 1 0 ~/.bash_profile
|4,39,1,0,1685640942,"~/.bash_profile"
-' 1 0 ~/.bash_profile
|4,39,1,0,1685640942,"~/.bash_profile"
-' 1 0 ~/.bash_profile
|4,39,1,0,1685640942,"~/.bash_profile"
-' 1 0 ~/.bash_profile
|4,39,1,0,1685640942,"~/.bash_profile"
-' 1 0 ~/.bash_profile
|4,39,1,0,1685640942,"~/.bash_profile"
-' 1 0 ~/.bash_profile
|4,39,1,0,1685640942,"~/.bash_profile"
-' 1 0 ~/.bash_profile
|4,39,1,0,1685640942,"~/.bash_profile"
-' 1 0 ~/.bash_profile
|4,39,1,0,1685640942,"~/.bash_profile"
-' 1 0 ~/.bash_profile
|4,39,1,0,1685640942,"~/.bash_profile"
-' 1 0 ~/.bash_profile
|4,39,1,0,1685640942,"~/.bash_profile"
-' 1 0 ~/.bash_profile
|4,39,1,0,1685640942,"~/.bash_profile"
-' 1 0 ~/.bash_profile
|4,39,1,0,1685640942,"~/.bash_profile"
-' 1 0 ~/.bash_profile
|4,39,1,0,1685640942,"~/.bash_profile"
-' 1 0 ~/.bash_profile
|4,39,1,0,1685640942,"~/.bash_profile"
-' 1 0 ~/.bash_profile
|4,39,1,0,1685640942,"~/.bash_profile"
-' 1 0 ~/.bash_profile
|4,39,1,0,1685640942,"~/.bash_profile"
-' 1 0 ~/.bash_profile
|4,39,1,0,1685475072,"~/.bash_profile"
-' 1 0 ~/.bash_profile
|4,39,1,0,1685475072,"~/.bash_profile"
-' 1 0 ~/.bash_profile
|4,39,1,0,1685475072,"~/.bash_profile"
-' 1 0 ~/.bash_profile
|4,39,1,0,1685475072,"~/.bash_profile"
-' 1 0 ~/.bash_profile
|4,39,1,0,1685475072,"~/.bash_profile"
-' 1 0 ~/.bash_profile
|4,39,1,0,1685475072,"~/.bash_profile"
-' 1 0 ~/.bash_profile
|4,39,1,0,1685475072,"~/.bash_profile"
-' 1 0 ~/.bash_profile
|4,39,1,0,1685475072,"~/.bash_profile"
-' 1 0 ~/.bash_profile
|4,39,1,0,1685475072,"~/.bash_profile"
-' 1 0 ~/.bash_profile
|4,39,1,0,1685475072,"~/.bash_profile"
-' 1 0 ~/.bash_profile
|4,39,1,0,1685475072,"~/.bash_profile"
-' 1 0 ~/.bash_profile
|4,39,1,0,1685475072,"~/.bash_profile"
-' 1 0 ~/.bash_profile
|4,39,1,0,1685475072,"~/.bash_profile"
-' 1 0 ~/.bash_profile
|4,39,1,0,1685475072,"~/.bash_profile"
-' 1 0 ~/.bash_profile
|4,39,1,0,1685475072,"~/.bash_profile"
-' 1 0 ~/.bash_profile
|4,39,1,0,1685475072,"~/.bash_profile"
-' 1 37 ~/.bash_profile
|4,39,1,37,1685475024,"~/.bash_profile"
-' 1 37 ~/.bash_profile
|4,39,1,37,1685475024,"~/.bash_profile"
-' 1 37 ~/.bash_profile
|4,39,1,37,1685475024,"~/.bash_profile"
-' 1 37 ~/.bash_profile
|4,39,1,37,1685475024,"~/.bash_profile"
-' 1 37 ~/.bash_profile
|4,39,1,37,1685475024,"~/.bash_profile"
-' 1 37 ~/.bash_profile
|4,39,1,37,1685475024,"~/.bash_profile"
-' 1 37 ~/.bash_profile
|4,39,1,37,1685475024,"~/.bash_profile"
-' 1 37 ~/.bash_profile
|4,39,1,37,1685475024,"~/.bash_profile"
-' 1 37 ~/.bash_profile
|4,39,1,37,1685475024,"~/.bash_profile"
-' 1 37 ~/.bash_profile
|4,39,1,37,1685475024,"~/.bash_profile"
-' 1 37 ~/.bash_profile
|4,39,1,37,1685475024,"~/.bash_profile"
-' 1 37 ~/.bash_profile
|4,39,1,37,1685475024,"~/.bash_profile"
-' 1 37 ~/.bash_profile
|4,39,1,37,1685475024,"~/.bash_profile"
-' 1 37 ~/.bash_profile
|4,39,1,37,1685475024,"~/.bash_profile"
-' 1 37 ~/.bash_profile
|4,39,1,37,1685475024,"~/.bash_profile"
-' 1 37 ~/.bash_profile
|4,39,1,37,1685475024,"~/.bash_profile"
-' 270 66 ~/.bash_profile
|4,39,270,66,1685474915,"~/.bash_profile"
-' 270 66 ~/.bash_profile
|4,39,270,66,1685474915,"~/.bash_profile"
-' 270 66 ~/.bash_profile
|4,39,270,66,1685474915,"~/.bash_profile"
-' 270 66 ~/.bash_profile
|4,39,270,66,1685474915,"~/.bash_profile"
-' 270 66 ~/.bash_profile
|4,39,270,66,1685474915,"~/.bash_profile"
-' 270 66 ~/.bash_profile
|4,39,270,66,1685474915,"~/.bash_profile"
-' 270 66 ~/.bash_profile
|4,39,270,66,1685474915,"~/.bash_profile"
-' 270 66 ~/.bash_profile
|4,39,270,66,1685474915,"~/.bash_profile"
-' 270 66 ~/.bash_profile
|4,39,270,66,1685474915,"~/.bash_profile"
-' 270 66 ~/.bash_profile
|4,39,270,66,1685474915,"~/.bash_profile"
-' 270 66 ~/.bash_profile
|4,39,270,66,1685474915,"~/.bash_profile"
-' 270 66 ~/.bash_profile
|4,39,270,66,1685474915,"~/.bash_profile"
-' 270 66 ~/.bash_profile
|4,39,270,66,1685474915,"~/.bash_profile"
-' 270 66 ~/.bash_profile
|4,39,270,66,1685474915,"~/.bash_profile"
-' 270 66 ~/.bash_profile
|4,39,270,66,1685474915,"~/.bash_profile"
-' 270 66 ~/.bash_profile
|4,39,270,66,1685474915,"~/.bash_profile"
-' 270 66 ~/.bash_profile
|4,39,270,66,1685474915,"~/.bash_profile"
-' 270 66 ~/.bash_profile
|4,39,270,66,1685474915,"~/.bash_profile"
-' 270 66 ~/.bash_profile
|4,39,270,66,1685474915,"~/.bash_profile"
-' 270 66 ~/.bash_profile
|4,39,270,66,1685474915,"~/.bash_profile"
-' 270 66 ~/.bash_profile
|4,39,270,66,1685474915,"~/.bash_profile"
-' 270 66 ~/.bash_profile
|4,39,270,66,1685474915,"~/.bash_profile"
-' 270 66 ~/.bash_profile
|4,39,270,66,1685474915,"~/.bash_profile"
-' 270 66 ~/.bash_profile
|4,39,270,66,1685474915,"~/.bash_profile"
-' 270 66 ~/.bash_profile
|4,39,270,66,1685474915,"~/.bash_profile"
-' 270 66 ~/.bash_profile
|4,39,270,66,1685474915,"~/.bash_profile"
-' 270 66 ~/.bash_profile
|4,39,270,66,1685474915,"~/.bash_profile"
-' 270 66 ~/.bash_profile
|4,39,270,66,1685474915,"~/.bash_profile"
-' 270 66 ~/.bash_profile
|4,39,270,66,1685474915,"~/.bash_profile"
-' 270 66 ~/.bash_profile
|4,39,270,66,1685474915,"~/.bash_profile"
-' 270 66 ~/.bash_profile
|4,39,270,66,1685474915,"~/.bash_profile"
-' 270 66 ~/.bash_profile
|4,39,270,66,1685474915,"~/.bash_profile"
-' 270 66 ~/.bash_profile
|4,39,270,66,1685474915,"~/.bash_profile"
-' 270 66 ~/.bash_profile
|4,39,270,66,1685474915,"~/.bash_profile"
-' 270 66 ~/.bash_profile
|4,39,270,66,1685474915,"~/.bash_profile"
-' 270 66 ~/.bash_profile
|4,39,270,66,1685474915,"~/.bash_profile"
-' 270 66 ~/.bash_profile
|4,39,270,66,1685474915,"~/.bash_profile"
-' 270 66 ~/.bash_profile
|4,39,270,66,1685474915,"~/.bash_profile"
# History of marks within files (newest to oldest):
> /etc/ssh/sshd_config
* 1685647202 0
" 122 0
> ~/.ssh/authorized_keys
* 1685646942 0
" 1 102
^ 1 103
. 1 102
+ 1 102
> ~/.ssh/config
* 1685646760 0
" 1 0
> ~/.bash_profile
* 1685640879 0
" 1 0
^ 1 1
. 1 0
+ 1 154
+ 1 0
> ~/.ssh/id_rsa.pub
* 1685473181 0
" 1 388
^ 1 389
. 1 325
+ 1 117
+ 1 325
> ~/.ssh/id_rsa
* 1685473137 0
" 30 28
^ 30 29
. 31 0
+ 31 0

1
git/linux Submodule

Submodule git/linux added at b69e2a4a3a