Przeglądaj źródła

Merge branch 'platform-diagram'

DricomDragon 5 lat temu
rodzic
commit
a69f43cfb6

+ 11 - 0
Guides/shell.md

@@ -0,0 +1,11 @@
+# Shell
+
+Useful common Unix commands and tricks
+
+## Link a binary in your local bin
+
+```sh
+ln -s -T ~/Software/GitAhead/GitAhead ~/.bin/gitahead
+```
+
+To use a physical link instead of a symlink, use `-S` instead of `-s`

+ 27 - 0
Guides/ssh.md

@@ -0,0 +1,27 @@
+# SSH
+
+## Install server
+
+```sh
+sudo apt install openssh-server
+```
+
+## Config server
+
+```sh
+sudoedit /etc/ssh/sshd_config
+```
+
+## Auto start ssh
+
+```sh
+sudo systemctl enable ssh
+sudo systemctl start ssh
+sudo service ssh restart
+```
+
+## Add key
+
+```sh
+ssh-copy-id -i ~/.ssh/id_rsa.pub 192.168.0.10
+```

+ 2 - 0
Install/README.md

@@ -36,6 +36,8 @@ execute `laptop-install`
 
 execute `lap-screen-custom`
 
+change hostname with `sudoedit /etc/hostname`
+
 ## Raspberry Pi
 
 execute `localtime_set`

+ 5 - 6
README.md

@@ -14,13 +14,12 @@ Scripts used to install common features from a fresh installation of a debian di
 
 ### Common scripts
 
-Custom scripts that can be installed in `/usr/local/bin/` to automate handy things.
-
-### Cron scripts
-
-Scripts designed to be put in a crontab with `crontab -e`.
-Use `crontab -l` to see your current crontab. Use `@reboot` at the beginning of a crontab line to execute a command at startup.
+Custom scripts that can be installed in `/usr/local/bin/` or `~/.bin/` to automate handy things.
 
 ### Guides
 
 Markdown files which explains how to set up tools like gogs.
+
+### Server
+
+Documentation and utilities about Linux/Unix servers.

Plik diff jest za duży
+ 3 - 0
Server/Diagrams/JovianPlatformNetwork_colocEcn.svg


Plik diff jest za duży
+ 3 - 0
Server/Diagrams/JovianPlatformNetwork_target.svg


ServerScripts/Backup/j7backalllocal → Server/Scripts/Backup/j7backalllocal


ServerScripts/Backup/j7backallssh → Server/Scripts/Backup/j7backallssh


ServerScripts/Backup/j7backretrieve → Server/Scripts/Backup/j7backretrieve


+ 5 - 0
Server/Scripts/Cron/README.md

@@ -0,0 +1,5 @@
+# Cron scripts
+
+Scripts designed to be put in a crontab with `crontab -e`.
+Use `crontab -l` to see your current crontab. Use `@reboot` at the beginning of a crontab line to execute a command at startup.
+

Cron/boot_system → Server/Scripts/Cron/boot_system


Cron/pi_root_crontab → Server/Scripts/Cron/pi_root_crontab


Cron/reboot_system → Server/Scripts/Cron/reboot_system


Cron/startgogs → Server/Scripts/Cron/startgogs


Cron/update_system → Server/Scripts/Cron/update_system