How to disable IPv6 in Ubuntu
How to disable IPv6 in Ubuntu To disable ipv6, you have to open /etc/sysctl.conf using any text editor and insert the following
Read moreHow to disable IPv6 in Ubuntu To disable ipv6, you have to open /etc/sysctl.conf using any text editor and insert the following
Read moresudo privileges to an existing user in ubuntu If you have already created the user, you can add the user
Read moreMySQL Server Logs MySQL Server has several logs that can help you find out what activity is taking place. By
Read moreC Program to check whether a Number is a Palindrome A palindrome is a number or a string which is similar when
Read morehow to get date of yesterday using php <?php $test=date(‘d.m.Y’,strtotime(“-1 days”)); echo $test; ?> or <?php $test=date(‘d-m-Y’,strtotime(“-1 days”)); echo
Read morePHP readfile() Function – file handling The readfile() function reads a file and writes it to the output buffer. Assume we have
Read moremysqld dead but subsys locked Backup for future Safety: cp /var/lock/subsys/mysqld /root/mysqld than delete it rm /var/lock/subsys/mysqld then close all
Read moreC Program to find LCM of two Numbers using Recursion What is LCM LCM: Least Common Multiple of two numbers is
Read morePHP print Statement The print statement can be used with or without parentheses: print or print(). Display Text The following example shows how to output
Read more<?php // PHP program to illustrate substr() function Substring($str){ $len = strlen($str); echo substr($str, 8), “\n”; echo substr($str, 5,
Read more