How to set Hostname in Ubuntu

Setting Hostname in Ubuntu 15.04 Setting hostname in your Ubuntu server is very easy. Use the following command to set/ change the hostname in you ubuntu server. Please replace hostname with name of your choice. echo “hostname” > /etc/hostname hostname -F /etc/hostname Update /etc/hosts Next, edit your /etc/hosts file to resemble the following example, replacing hostname with 

Continue Reading…

How to install sendmail server in Ubuntu 15.04

Install SendMail/ Send-only Mail Server on Ubuntu 15.04 We are going to use Exim as our send mail server. Use the following commands to update your package repositories, upgrade your system, and install Exim: apt-get update apt-get upgrade apt-get install exim4-daemon-light mailutil Now Configure the Exim for Local Mail Service Now we’re ready to configure Exim 

Continue Reading…

Rohith Vemula Real Story

Story of Rohith Vemula | Story behind Rohit vemula Death Rohith Chakravarti Vemula was an Indian PhD student at the Hyderabad Central University. His suicide on 17 January 2016 sparked protests and outrage from across India and gained widespread media attention as an alleged case of discrimination against Dalits and backward classes in India in which 

Continue Reading…

How to Install Python-Redis on Ubuntu 15.04

Install Python-Redis in Ubuntu 15.04 To install redis-py, simply: sudo pip install redis or alternatively (you really should be using pip though): sudo easy_install redis or from source: sudo python setup.py install Getting Started import redis r = redis.StrictRedis(host=’localhost’, port=6379, db=0) r.set(‘foo’, ‘bar’) True r.get(‘foo’) ‘bar’ Source : Here