Category Archives: My Linux

HTML redirect

One of the most requested items we get is “How do I make an html redirect page”. Strangely enough this is one of the easiest things to accomplish, but then anything is easy when you know how to do it! … Continue reading

Posted in My Linux | Comments Off on HTML redirect

openssl decode .csr

Extract information from the CSR $ openssl req -in shellhacks.com.csr -text -noout Verify the signature $ openssl req -in shellhacks.com.csr -noout -verify Whom the certificate will be issued to? $ openssl req -in shellhacks.com.csr -noout -subject Show the public key … Continue reading

Posted in My Linux | Comments Off on openssl decode .csr

basic mySQL for linux

from the console login to mysql #mysql -u root -p #enter your pass show database –> #show databases; create database –> #create database idlewood; delete database –> #drop database idlewood; if you forgot mysql root password – please make sure … Continue reading

Posted in My Linux, mySQL | Comments Off on basic mySQL for linux

disable and enable firewall on ubuntu

To turn on the firewall, enter sudo ufw enable in a terminal. To turn off ufw, enter sudo ufw disable.

Posted in My Linux, ubuntu | Comments Off on disable and enable firewall on ubuntu

assigning a static IP on ubuntu

To assign a static IP you need to edit /etc/network/interfaces The current entry will look something like auto eth0 iface eth0 inet dhcp You will need you need to change this to: auto eth0 iface eth0 inet static address 10.253.0.50 … Continue reading

Posted in ubuntu | Comments Off on assigning a static IP on ubuntu