-
Nejnovější příspěvky
Rubriky
Archivy
Základní informace
Archiv rubriky: LINUX
Disabling graphics interface (Debian)
When the graphics interface is not really needed (e.g. using as a server), it’s just better to disable the entire X11 stack to reduce the amount of memory and cpu used by the system. To disable X11 on boot: root@:~# … Celý příspěvek
Rubriky: LINUX
Napsat komentář
Rsync without password on Synology DiskStation
Log into your Synology from a terminal$ ssh root@diskstation_ip Edit the file /etc/ssh/sshd_config as following:$ nano /etc/ssh/sshd_config (nebo vi)#RSAAuthentication yesPubkeyAuthentication yesAuthorizedKeysFile .ssh/authorized_keys Reboot your DiskStation$ reboot Test zda funguje – ssh root@192.168.XXX.XXX – Adresa Synology NASNeměl by chtít heslo. Now … Celý příspěvek
Rubriky: LINUX
Napsat komentář
SSH without password
V adresáři uživatele (třeba root) local$ cd root local$ rm -rf .ssh local$ mkdir .ssh Create now the public and private keys for our local host local$ ssh-keygen -t rsa -f .ssh/id_rsa -C „localusername@localaddress“ the switch -C add the “localusername@localaddress” … Celý příspěvek
Rubriky: LINUX
Napsat komentář
Rsync Change SSH Port Number for Backups
How do I change my rsync command port number (my ssh server runs on port # 1390) ? The command to change port number is simple: sync -av -e ‚ssh -p PORT-NUMBER-HERE‘ /path/source user@backup1.example.com Např.: rsync -av -e ‚ssh -p … Celý příspěvek
Rubriky: LINUX
Napsat komentář
CentOS drobnosti
Převzato z různých webů : $ ip route show 192.168.91.0/24 dev eth0 proto kernel scope link src 192.168.91.128 169.254.0.0/16 dev eth0 scope link metric 1002 default via 192.168.91.2 dev eth0 In order to change a default gateway to another … Celý příspěvek
Rubriky: LINUX
Napsat komentář