• Android

    Android is an operating system based on the Linux kernel, and designed primarily for touch screen mobile devices such as smart phones and tablet computers. Android is a Linux-based software system, and similar to Linux, is free and open source software. This means that other companies can use the Android operating developed by Google and use it in their mobile devices.Android gives you a world-class platform for creating apps and games for Android users everywhere, as well as an open marketplace for distributing to them instantly.

  • Welcome to Bashguru

    Linux is one of popular version of UNIX operating System. It is open source as its source code is freely available. It is free to use. Linux was designed considering UNIX compatibility. It's functionality list is quite similar to that of UNIX and become very popular over the last several years. Our Basic motive is to provide latest information about Linux Operating system.

  • Python Programming

    Python is a comparatively simple programming language, compared to c++. Although some of the benefits of c++ are abstracted away in python, they are replaced with an overall easier to learn language with many “intuitive” features. For this reason it is common and recommended by most professionals that people new to programming start with python.

  • Perl Programming

    Perl is an open-source, general-purpose interpreted programming language. Used often for CGI, Perl is also used for graphics programming, system administration, network programming, finance, bioinformatics, and other applications. The Perl languages borrow features from other programming languages including C, shell scripting (sh), AWK, and sed. They provide powerful text processing facilities without the arbitrary data-length limits of many contemporary UNIX command line tools, facilitating easy manipulation of text files.

  • Android

    Android is an operating system based on the Linux kernel, and designed primarily for touch screen mobile devices such as smart phones and tablet computers. Android is a Linux-based software system, and similar to Linux, is free and open source software. This means that other companies can use the Android operating developed by Google and use it in their mobile devices.Android gives you a world-class platform for creating apps and games for Android users everywhere, as well as an open marketplace for distributing to them instantly.

  • Welcome to Bashguru

    Linux is one of popular version of UNIX operating System. It is open source as its source code is freely available. It is free to use. Linux was designed considering UNIX compatibility. It's functionality list is quite similar to that of UNIX and become very popular over the last several years. Our Basic motive is to provide latest information about Linux Operating system.

Friday, November 18, 2011

Posted by venu k
53 comments | 9:37 AM
Note: I have used my device name and number in examples, you have to change itas your device name and number, otherwise unwanted device data will be wipedout. Put your USB flash drive in one of your computer's free USB ports. After a fewseconds, Linux will automatically recognize it and an icon for it will appear onyour desktop. If pen drive doesn't mounted automatically, login as root and tryto mount it, still it is not mounted there may be a problem with pen drive or itis defective.Finding device: Very very first thing is you should to know...

Saturday, October 8, 2011

Posted by venu k
34 comments | 4:45 AM
Public keys can be erased after importing just like packages. Here's how to remove the CentOS GPG public key: rpm -e <GPG public key> [root@localhost]# rpm -qa gpg-pubkey* gpg-pubkey-e8562897-459f07a4 [root@localhost]# rpm -e gpg-pubkey-e8562897-459f07a4 [root@localhost]# rpm -qa gpg-pubkey* [root@localhost]# If there are duplicates exist: For example, Import the same key two times [root@localhost]# rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5 [root@localhost]#...

Friday, October 7, 2011

Posted by venu k
37 comments | 12:21 PM
Note: All the commands tested on CentOs 5.x. Your output may be vary depending on distribution and version, so your results may not always look exactly like the listings and figures shown here. Almost all everything works well on RHEL/CentOs/Fedora. Why to check signature of an rpm: The signature confirms that the package was signed by an authorized party and also confirm the integrity and origin of your file. It is extremely important to...

Friday, June 24, 2011

Posted by venu k
26 comments | 10:24 PM
  In number theory, the prime factors of a positive integer are the prime numbers that divide that integer exactly, without leaving a remainder. The process of finding these numbers is called integer factorization, or prime factorization. The fundamental theorem of arithmetic says that every positive integer has a unique prime factorization. Example: The prime factors of 330 are 2, 3, 5 and 11: 330 = 2 × 3 × 5 × 11 There...

Thursday, January 6, 2011

Posted by venu k
25 comments | 1:29 PM
#!/bin/bash# SCRIPT : menu_dialog.sh# PURPOSE : A menu driven Shell script using dialog utility# which has following options:# Display Today's Date and Time.# Display calendar.# Delete selected file from supplied directory.# List of users currently logged in# Disk Statistics# Exit################################################################################ Checking...

Monday, January 3, 2011

Posted by venu k
28 comments | 11:53 AM
Quicksort is a good example of the divide and conquer strategy forsolving problems. In quicksort, we divide the array of items to besorted into two partitions and then call the quicksort procedure recu-rsively to sort the two partitions, ie we divide the problem into twosmaller ones and conquer by solving the smaller onesQuicksort recursive algorithm:1 Select an element (called as pivot) x(p) of x .2 Divide x into two batches x1 and x2 so that all entries of x1 are < x(p) and all entries of x2 are > x(p). all entries of x3 are...
Posted by venu k
8 comments | 11:23 AM
Binary search works by comparing an input value to the middle elementof the array. The comparison determines whether the element equals theinput, less than the input or greater. When the element being comparedto equals the input the search stops and typically returns the posit-ion or number of searches of the element. If the element is not equalto the input and the element at the middle point is greater than theinput being searched, the current middle point becomes the new highpoint and the array is cut in half again and re-tested. If the elementat...
Posted by venu k
11 comments | 3:28 AM
#!/bin/bash# SCRIPT : linearsearch.sh# USAGE : linearsearch.sh# PURPOSE: Searches given number in a list.# \\\\ ////# \\ - - //# @ @# ---oOOo-( )-oOOo---# A variation of Here Document permits "commenting out" data block.: <<DATABLOCK In computer science, linear search or sequential search is a methodfor finding a particular value in a list, that consists in checkingevery one of its elements, one at a time and in sequence, until thedesired one is...

Sunday, January 2, 2011

Posted by venu k
14 comments | 8:19 AM
Wish You a Happy New Year To All My Friends If you don't know shell color codes, read bellow article first.How to colorize shell scripts#!/bin/bash# SCRIPT: happynewyear.sh# PURPOSE: Prints Happy new year 2011 on screen.# \\\\ ////# \\ - - //# @ @# ---oOOo-( )-oOOo---################################################################################ ...