BashConfig

## Content * [Project description](#chapter-0) * [SSH](#chapter-1) * [Tips](#chapter-2) ## Project description Bash config files [![Prompt](img/prompt.jpg)]() ## SSH Create ssh key on local device 1. `ssh-keygen` 2. Save to `~/.ssh` 3. Enter passphrase 4. Copy content of `~/.ssh/id_rsa.pub` key to remote `~/.ssh/authorized_keys` \ Add aliases for ssh to `~/.ssh/config`: ``` Host host_name HostName ip Port 22 User root IdentityFile ~/.ssh/id_rsa ``` \ Using aliases: ```bash ssh host_name sftp host_name ``` ### White and black lists add white list to ```/etc/hosts.allow```: ```text sshd: 10.83.33.77/32, 10.63.152.9/32, 10.12.100.11/28, 10.82.192.0/28 ``` add black list to ```/etc/hosts.deny```: ```text sshd: ALL ``` ## Tips ```/command``` - without using alias ### Bash | Command | Description | |:------------------: | :------------------ | |```Alt + . ``` ```Esc + .``` | Last object | |```Ctrl + r``` | Search by bash_history | |```Ctrl + l``` | Clear, like command clear | ### Vim | Command | Description | |:------------------: | :------------------------------------ | |```Ctrl + [``` | Analog Esc | |```d -> Ctrl + End``` | Delete from cursor to end of file | | ```u``` | Undo | | ```Ctrl + r``` | Redo | | ```22G``` | Go to line 22

#### Update .bashrc .bash_aliases by ssh ```bash ssh hosting 'rm -rf ~/BashConfig; git clone https://github.com/TheK4n/BashConfig && cp BashConfig/.bash* ~; rm -rf ~/BashConfig' ``` ### Autostart * create ```/etc/systemd/system/.service``` ```bash sudo vim /etc/systemd/system/.service sudo systemctl daemon-reload sudo systemctl start .service sudo systemctl status .service sudo systemctl enable .service ```