category : Linux

This procedure will work many version of Ubuntu. I personally tested this on all Ubuntu versions from 12 and up, and should also work fine, or be a very good indicator of what to do, on any Debian based Linux distribution. Like many OS out there, right after installation, everything is configured to use DHCP. ..

Read more

  Very simple! Log on to your MySQL instance, and select the DB you table is in; mysql> use mydatabase; Create the new table with the same structure as your source; mysql> CREATE TABLE mytable_new LIKE mytable; Then copy all the content from your original table into your new one; mysql> INSERT into mytable_new SELECT ..

Read more

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: # ..

Read more