Displaying posts categorized under

Uncategorized

Open Peta Forum – More Open Source Information

Open Peta Team welcomes you the new world of open source software , This Forum is mainly focus on spreading information about Open Source and its Software’s, because many of the useful open source softwares are not known by most of web users and normal people, You can share  about the OSS [Open Source Software] [...]

Typing Local Languages in Linux

One of the best utility available in Linux is , You can configure operating system in your Local languages. All applications names and menus would be displayed in those local languages after configure it. But If you want to type in your own mother tongue like writing letter in Tamil using Gedit Text Editor or [...]

Typing Local Languages [ Eg: Tamil ] in Firefox

English is the common language for all operating system and programming languages. If end user wants to use the particular software or Operating System ,the product has to support Internationalisation [I18N] or localisation . Now a days all products are coming with those options. In this article , let us discuss about the how to [...]

How To Share A Folder With A Linux Guest Os In Sun Virtualbox From Vista

The following video shows you how to setup a folder share with a linux guest OS using Sun xVM VirtualBox (the non open source version). There are a number of reasons, you would want to integrate a windows folder with a linux OS such as if you are doing cross platform application development with such [...]

Exception Handling in Java

keywords used 1. try 2. catch 3. finally 4. throw 5. throws 1. try-catch-finallypackage org.vit.java.exception; import java.util.Scanner; public class Divison{ public static void main(String[] args) throws OwnException { Scanner in = new Scanner(System.in); System.out.println(“Enter the First Number:”); int x =in.nextInt(); System.out.println(“Enter the First Number:”); int y = in.nextInt(); float z = 0; try { z [...]

Exception Handling

keyworks 1. try 2. catch 3. finally 4. throw 5. throws 1. try-catch-finallypackage org.vit.java.exception; import java.util.Scanner; public class Divison{ public static void main(String[] args) throws OwnException { Scanner in = new Scanner(System.in); System.out.println(“Enter the First Number:”); int x =in.nextInt(); System.out.println(“Enter the First Number:”); int y = in.nextInt(); float z = 0; try { z = [...]

Year 2038 Problem In Unix Like OS

The year 2038 problem may cause some computer software to fail before or in the year 2038. The problem affects programs that use the POSIX time representation, which represents system time as the number of seconds (ignoring leap seconds) since January 1, 1970. This representation is standard in Unix-like operating systems and also affects software [...]

Displaying directory contents

ls command is used to list the contents of directory. ls (list sorted) has many options, and can take many files as arguments. Syntax ls option file Examples : 1.ls – A plain listing of the current directory. [root@myclient1 ~]# ls3318.PDF a.sh final.ppt sample.tara a.zip first.sh sample.txtabc.pl b.c frame_000001.xcf samplle.txta.c bin frame_vin.gap server1.ks.cfga.gzip boot.hai install.log [...]

BASH Scripts – Program for 'if' condition

#Program for ‘if’ condition# Author :Antony# Last Date of Modification :28/07/2007#The ‘if’ statement performs actions depending on#weather a given condition is true or false#Syntax# if condition1# then# statment1# elif condition2# then# statment2# else # statement3# fi # Checking about normal filesecho “Enter the file name”read nameif [ -e $name ] then echo “File exists “else [...]