If you ssh to a box and get the following error message: Warning: the ECDSA host key for ‘host’ differs from the key for the IP address ‘192.168.1.1’ It means that, or someone is doing something nasty on your network, like a Man in the middle attack, or you have recently reinstalled your host, and ..
Thanks to the original poster for this great article, please make sure to visit his article here ! TL:DR OpenSSH Installations under CentOS Linux To install the server and client type: # yum -y install openssh-server openssh-clients Start the service: # chkconfig sshd on # service sshd start Make sure port 22 is opened: # ..
You can achieve this with 3 simple steps: 1- Create you local key on your host (where you will be connecting from) ssh-keygen -t rsa 2- Create a directory on the remote host to store the keys ssh root@n01 mkdir -p .ssh 3- Copy the local host key into the remote host’s directory cat .ssh/id_rsa.pub ..
Thanks to the original poster, please make sure to visit his post here: http://www.backtrack-linux.org/wiki/index.php/Pyrit_cluster Based on the article, I will create a new one for Kali Linux shortly. St..
If you would like you Kali OS to boot and go directly to command line login, follow this simple procedure below: Thanks to the original poster of this great article, with lots of options and explanations, please make sure to visit his original post : https://forums.kali.org/archive/index.php/t-453.html TL:DR – Copy/paste this into a terminal: ..
Thanks to the original poster, please make sure to visit his original post here http://www.linux.com/learn/tutorials/413853-managing-multiple-linux-servers-with-clusterssh &nb..
Disk partition alignment is very important for SQL to perform as best as possible on the current hardware. Make sure that your partitions are aligned ! Thanks to the original poster for this great article, please visit his post here ! &nb..
Once you have you Microsoft SQL Server installed, you will need to open some port in the firewall if you intend to access it from another server/computer. Copy and paste the following commands to open all common ports used by SQL Server: @echo ========= SQL Server Ports =================== @echo Enabling SQLServer default instance port 1433 ..
Thanks to the original poster for creating a very nice post about this. Make sure to visit his post here ! &nb..
A very big thanks to Simon Cox for putting together a very comprehensive guid to buiding a Supercomputer with Raspberry Pis. Make sure to visit his web site: http://www.southampton.ac.uk/~sjc/raspberrypi/ Quick link to a complete PDF guide here ! For some reason, the PDF on the site itself doesn’t seem to be as up to date as ..