August, 2009


25
Aug 09

How to install java runtime environment in ubuntu ?

Java runtime is essential to view contents from some of the web pages. To install java runtime, you’ve to connect to multiverse repository. If you’ve not enabled to multiverse then you’ve to enable it manually before you download these packages.

Once you’ve done with that, open terminal. And enter the command as shown below:

sudo apt-get install sun-java6-jre sun-java6-plugin sun-java6-fonts

After downloading the respective packages, it’ll start the installation. And you’ve to accept terms of sun’s license. To do that Hit enter when asked if agree with terms or not. Then after that you’ll be asked for DLJ license acceptance as well, you’ve to accept that. After this JRE installation will be completed.

To test the installation, enter the following command in terminal.

java -version

and you’ll get output like:

Java(TM) SE Runtime Environment (build 1.6.11)
Java HotSpot(TM) Client VM (build 1.6.11, mixed mode, sharing)


24
Aug 09

How to view djvu documents ?

If you’re searching for old comic strips or old paperback book then chances are there that you’ll come across document in djvu format. djvu is the new image compression technology that is available with most of the scanner software. So if you’ve scanned your image then you might able to convert it into djvu format. You can read more about any file formats here. For djvu file format check this site.

There are few viewer software that allows djvu support like irfan view. Other than that you can use softwares like DJvulibre, Celartem, JavadjVu etc. And there are software that converts djvu files to pdf, if you want it to read from PDF viewer. Check djvu2PDF. and online conversion sites like any2djvu,that converts most file formats into djvu format.

If you’ve any issues with the djvu, then check the Djvu forums.


23
Aug 09

How to view drivers running on system?

If you wish to retrieve information about your system, then check this article. Some of the tools mentioned on that article can also let you view installed drivers list on your system.

Device info
Device info allows you to list all your system’s driver list, their provider and version numbers. Thanks to creator alex nolan, it is available as free software.

Driverview
Small utility by Nirsoft available as freeware. It displays list of all drivers currently loaded on your system.

Autoruns
Microsoft Sysinternals have a small utility shows which programs are loaded during startup, and gives list of drivers which are loaded. You’ll be surprised to see the number of executable started automatically.

DriverManager
Drivermanager is similar to deviceinfo, and another software from same company that let’s you work with services called as ServiceManager


22
Aug 09

How to view system information?

If you’re looking for the hardware & software installed on your pc then system information utility is all you need. System information utilities lists hardware installed and other detailed configuration of your system.

SIW (OS: Windows)
SIW gives detailed information about system properties and settings, detail specs for software, hardware and network. SIW is available as portable software so you don’t have to install it and of course you can take it anywhere using usb drive.

Everest (Unsupported, OS: Windows)
Everest is old software but now it is no longer supported.

Belarc advisor (OS: Windows)
It is not as powerful and detailed like other software but it is actively developed and more features are added regularly. So you can check it out.

PC wizard 2008 (OS: Windows)
CPUID site features two downloads for system information. CPUz utility gives information about CPU and other hardware. While software like PC wizard covers more detailed configuration than CPUz.

Look in my PC (OS: Windows)
LIMP gives detailed pc profiling and diagnostic reports. And yes it is free software.

HW info (OS: Windows, DOS)
HWinfo is a tool for checking system information on DOS and HWinfo32 is for checking system information on windows. Both are available as freeware.

FreshDiagnose ( OS: Windows)
Fresh diagnose is a system information analysis and benchmark tool. It is available as free software but requires registration (which is again free).

Sysinfo Script ( OS : Linux)
Sysinfo is script that allows retrieving, displaying and saving various system related information. As there is not a single command that gives complete system information,that’s why this script is handy .

Hardinfo (Os :Linux)
Hardinfo is software that allows you to view hardware information and run reports. If you’re running ubuntu linux then procedure to install it on your system is mentioned here.


22
Aug 09

How to check the ports in use?

You want to check if any ports are already in use or not. What will you do in such cases? Downloading heavy network monitoring apps are not always going to help if your need is limited and you’re interested in letting your resources taken up by such apps. So let’s see how you can do this with minimal efforts.

For windows:

1. Netstat: You can use NETSTAT command on command prompt. This will show you protocol statistics and all available TCP/IP connections.

You can use these commands in command prompt:

netstat

netstat -anb (a = all, n = don't do DNS lookup, b = list executables associated)

netstat -h (lists all the parameters )

2. TCPView
There is tiny utility which shows all the TCP/UDP/ connections. This utility is just 207kb and works with all versions of windows. You can download it here.

For Linux

1. Netstat command used under root can let you find out which hidden ports are used by which applications.

netstat –nap

or you can use

netstat –ntulp

For both windows and linux, you can use network monitoring program Wireshark. I know it is not worth to download huge apps for just lookup information. But i found out this application worthy to list here for reference.