Skip to main content

Posts

What do you know about /var?

/ var:  It is a standard sub-directory of the root directory in Linux and other Unix-like operating systems that contains files to which the system writes data during the course of its operation. It contains variable data like system logging files, mail and printer spool directories. Some portions of /var are not shareable between different systems. For instance, /var/log, /var/lock, and /var/run. Other portions may be shared, notably /var/mail, /var/cache/man, /var/cache/fonts, and /var/spool/news.   It contains a number of sub-directory. These sub-directories is designated by a forward slash (/). Among the other directories that are usually installed by default in the root directory are /bin , /boot , /dev , /etc , /home , /initrd , /lib , /lost+found , /misc , /mnt , /opt , /proc , /root , /sbin , /tmp ,/local, /log, /mail, and /usr.... etc Its contents are not included in /usr because situations can occur in which it is desired to mount /usr as read-o...

Top Audio Converters

There are many audio converters. I'll list some of them Easy RM to MP3 Converter : It is safe software ; It does not install adware or spyware. It does not change any system settings. It does not install any system drivers. Easy RM to MP3 Converter installs all its files to its installation folder which you can specify during the installation. You can easily uninstall the software from the Windows Add/Remove Programs. Convert RM/RA/RMJ/RAM to MP3. Extract Audio from RM, or RMVB media files. Configure MP3 Encoder with detailed settings (CBR, ABR, ABR, and Preset Quality). Support to edit and preserve audio tag MP3 WMA Converter : It is a free MP3 WMA offers an easy way to convert files to and from MP3, WMA, OGG, WAV, FLAC and AAC so that you can play music on your Mac, PC, iPod, and MP3 Players! All you need to do is to add your music, select your desirable output format and start!  Windows compatible....

Deploy Apache Axis with Tomcat server

What is Apache Axis2? It is a Web Services / SOAP / WSDL engine, the successor to the widely used Apache Axis SOAP stack. There are two implementations of the Apache Axis2 Web services engine - Apache Axis2/Java and Apache Axis2/C Requirements: To Deploy Axis you need to have Apache Tomcat installed. you can download it from http://tomcat.apache.org/ Download Axis binary from http://axis.apache.org/axis2/java/core/download.cgi Steps: Unzip the download bin folder and go to [yourdriver:\axis\axis_version\webapps] eg., C:\apache-tomcat-6.0.35\webapps Take the 'axis' folder copy and paste it in [yourdriver:\Tomcat\webapps] as in Figure#1 Pasting axis folder under webapps in Tomcat 3. Start Tomcat from yourdriver:\Tomcat\bin and click double click on startup.bateg., C:\apache-tomcat-6.0.35\bin 4. Type in your browser the following: http://localhost:8080/axis2/ if you find a welcoming page to Apache_Axis then Apache_Axis run successfully. Figure#2 welcomi...

How to Install Maven on windows

How to Install Maven on windows: Install Maven from http://maven.apache.org/download.html   Extract the " apache-maven-x.x.x-bin.zip " file. Open System Variable and add a new system variables name " MAVEN_HOME " with variable value " C:\Maven\apache-maven-3.0.4 " Figure1. Then form System variables choose Path click on edit and add in variable value the path of the MAVEN bin " C:\Maven\apache-maven-3.0.4\bin ". Figure2. Hint: If you don't find the Path in system variables then define a new one.   Make Sure that : JAVA_HOME: exists in your system variables and it is set to the location of your JDK, "e.g. C:\Program Files\Java\jdk1.7.0_05".Figure3. Hint:you can install Java JDk from this link: http://www.oracle.com/technetwork/java/javase/downloads/index.html   Open a new command prompt ( Winkey + R then type cmd ). Run the following line:  mvn --version to verify that it is correctly installed.  If you g...