This blog is made for Expressing My Ideas, Views, and to put some technical datas.
Saturday, January 30, 2010
How to set up Hard disk boot priority
in other hard disk.Then if we want any one os to boot then what
to do.Now to set up the hard disk priority.
1. At first the Debian harddisk should be connected to SATA-0 of the
systems mother board and Ubuntu harddisk shoud be connected to
SATA-1 of systems mother board.
2.Then enter into 'BIOS setup' press the 'Delete Key' while
you start up your system.
3. After entering the 'BIOS setup' enter into 'Advanced BIOS features'
4. Now enter into the 'Hard disk boot priority'
5. After entering the 'Hard disk boot priority' now select the
boot priority.
6. There will be two boot priority in this system.
7. The two priority will be as follows
Ch2 S -(Ubuntu)
Ch1 M -(Debian)
8. If we want debian then 'Ch1 M' should be moved to the top position.
9. Now save the set up by pressing the 'F10'.
10. Then the procedure is as usual boot the OS and login.
Sunday, January 24, 2010
Is our money Safe in Banks In India?
Even the one of the Bank Goes bankrupt in that case also your deposit upto 100000 is insured through DICGC(Deposit Insurance and Credit guarantee Corporation).Means you will get atleast one lakh from your bank in case of Bank failed.
The Main feature of insurance Scheme are
- Insurance of one lakh Rs deposit in all bank branches in India.
- Current account,FD,Saving accounts are covered
- The limit is applicable on person and not on account.Suppose you have money in saving account 50000 and current account 50000 and FD 50000 ,Then the Insurance amount restricted to 100000 only
- The Limit is applicable for all branches of a single bank .Suppose In ABC bank you have accounts in different branches at different location or same location .In that case agregate of all branches will be treated as one in all accounts and insured upto one lakh only.
- Each Bank will be treated as seprate cover unlike point 4 .If you have deposited 100000 in ABC bank and 100000 in XYZ bank then you will get 100000 as insurance amount for each bank total 200000
- The Limit of one lakh is applicable for one capacity ,suppose you have one saving account as individual in ABC bank amount 100000 and other accout as karta of HUF and having 100000 in it and other account as partner of a firm and balance of 100000 init so you will get insurace amount of 100000 each of three account total 300000 .
- All banks have to take this Insurance cover and there is no option for bank ,so its mandatory for banks to insure 100000 deposit of each person .
Account in single Bank in one branch or different baranchs of same Bank | |||||
Deposits held in different capacities | Savings A/c | Current A/c | FD A/c | Total Deposit | Deposits Insured |
Shri S. K. Pandit (Individual) | 17200 | 22000 | 80000 | 1,19,200 | 1,00,000 |
Shri S. K. Pandit (Partner of ABC & Co.) | 75000 | 50000 | 1,25,000 | 1,00,000 | |
Shri S. K. Pandit (Guardian for Master Ajit) | 7800 | 80000 | 87800 | 87800 | |
Shri S. K. Pandit (Director, J.K. Udyog Ltd.) | 2,30,000 | 45000 | 2,75,000 | 1,00,000 | |
Shri S. K. Pandit jointly with Smt. K. A. Pandit | 7500 | 1,50,000 | 50000 | 2,07,500 | 1,00,000 |
Thanks to :
For further details refer to the following webs:
http://www.simpletaxindia.org/2008/10/financial-crisesare-your-money-save-in.html
http://www.dicgc.org.in/GuideToDepositInsuranceInIndia.htm
One Rupee image from :
http://commons.wikimedia.org/wiki/File:One_Rupee.jpg
Friday, January 22, 2010
How To Get Hardware Information On Linux Using dmidecode Command
This dmidecode requires admin permission.
DMI Type id will give information about a particular hardware component of your system. Following command with type id 4 will get the information about CPU of the system.
Command as follows:
# dmidecode -t 4
Following are the different DMI types available.
Type Information ---------------------------------------- 0 BIOS 1 System 2 Base Board 3 Chassis 4 Processor 5 Memory Controller 6 Memory Module 7 Cache 8 Port Connector 9 System Slots 10 On Board Devices
For more information study the man pages of dmidecode
Thanks to :
http://www.thegeekstuff.com/2008/11/how-to-get-hardware-information-on-linux-using-dmidecode-command/
QEMU - MP-BIOS bug: 8254 timer not connected to IO-APIC
When the Ubuntu CD is started the user gains access to its main menu by pressing ESC or selecting a language from the opened menu. If the ESC key is not pressed or no language is chosen during the 30 second timeout the CD continues to boot to the Ubuntu Desktop using the disk's default language. After selecting a language or pressing ESC the user will be presented with a screen similar to this:
F6. Other Options. ACPI (Advanced Configuration and Power Interface) and EDD (Enhanced Disk Drive) options which may help if your computer does not support or has problems with these systems. Highlight the selection and press the ENTER key or SPACE key to select it. An "X" will appear, indicating selection. Multiple items can be selected from this popup menu. Hit ESC to leave the popup menu. The selections are retained at the time the user presses the ESC key.
Press the F6 key.
If desired, select one or more options with the arrow keys, then press ENTER or the SPACE key to select them.
Any popup menu option enabled when ESC is pressed is retained.
Press ESC to remove the popup screen. The boot command line is now available for editing and will remain so as long as no popup menu is visible.
- Leave a space following the "--" and add the desired option. If entering multiple options leave a space between each entry.
The command will be executed when ENTER is pressed and the boot sequence will begin.
- The F1-F6 keys will still respond and the user can make additional menu selections.
The command line will be accessible for appending until ENTER is pressed.
Pressing ENTER will start the boot sequence.
By doing the above procedures you will be able to solve the
bug: 8254 timer not connected to IO-APIC
Now go head and see your Ubuntu emulation in qemu.
Thursday, January 21, 2010
Live Count of visitors
Give your visitors the ability to see how many guests are currently looking at the page, within milliseconds of accuracy. Watch as your visitor-count skyrockets after a popular post, or drops deep into the night!
Thanks to :
http://labs.chitika.com/#
Simply copy and paste the code above into anywhere on your website. That's it.
Wednesday, January 20, 2010
SCP protocol for copying
The SCP protocol is a network protocol that supports file transfers. The SCP program is a software tool implementing the SCP protocol as a service daemon or client. It is a program to perform secure copying.
Typically, a syntax of scp program is like the syntax of cp:
Copying file to host:
scp SourceFile user@host:directory/TargetFile
Copying file from host:
scp user@host:directory/SourceFile TargetFile
Note that if the remote host uses a port other than the default of 22, you can specify it in the command. For example, copying a file from host:
scp -P 2222 user@host:directory/SourceFile TargetFile
Thanks to
visit the web http://www.web-source.net/html_codes_chart.htm
visit the web http://en.wikipedia.org/wiki/Secure_copy#Unix
Thanks to Vijaykumar - Zilogic systems
Tuesday, January 12, 2010
Man page
Man pages (short for "manual pages") are the extensive documentation that comes preinstalled with almost all substantial Unix and Unix-like operating systems. The Unix command used to display them is man. Each page is a self-contained document.
To read a manual page for a Unix command, one can use
man
Monday, January 11, 2010
X BitMap File
Save your bitmap file as .xbm extension file.
The following piece of C code exemplifies an XBM file:
#define test_width 16 #define test_height 7 static char test_bits[] = { 0x13, 0x00, 0x15, 0x00, 0x93, 0xcd, 0x55, 0xa5, 0x93, 0xc5, 0x00, 0x80, 0x00, 0x60 };http://en.wikipedia.org/wiki/X_BitMap
Thanks to Wikipedia for the information.
Sunday, January 10, 2010
திருக்குறள்
Thirukkural i liked:
It says about management policy.
Meaning of it is: Select a person who is capable enough of doing a particular job, with a particular thing , then give the same job to him so he will do it in a right manner. I think so it is a good Kural for Managers.
10 Ways to Go Green and Save Green
This is just an example i am saying.
Like the bank ATM cards, We should develop a Universal Go Green card(To encourage it initially we should give some discounts for this type of card holders).
The one card in world which stores the data where we want to show instead of printing it i am not saying about USB memory sticks its a special card only to avoid the printouts( In future we can add some other features also in this card).
- Save energy to save money.
- Save water to save money.
- Less gas = more money (and better health!).
- Eat smart.
- Skip the bottled water.
- Think before you buy.
- Borrow instead of buying.
- Buy smart.
- Keep electronics out of the trash.
- Make your own cleaning supplies.
http://www.worldwatch.org/resources/go_green_save_green
Thanks to :
http://www.worldwatch.org/resources/go_green_save_green
http://www.vecteezy.com/vf/1073-Going-Green-with-Leaves
Saturday, January 9, 2010
The Linux Cross Reference - (goahead do your R&D here )
http://lxr.linux.no/+trees
Text from the LXR website is given below:
Welcome to lxr.linux.no LXR (formerly "the Linux Cross Referencer") is a software toolset for indexing and presenting source code repositories. LXR was initially targeted at the Linux source code, but has proved usable for a wide range of software projects. lxr.linux.no is currently running an experimental fork of the LXR software.
Browse the code These are the browsable source code repositores at lxr.linux.no:
Convert CHM files to PDFs
In Linux systems install the chm2pdf package. chm2pdf is simple Python script that converts CHM files to PDF files.
Now to convert the chm to pdf file , run the following command
$ chm2pdf --book filename.chm filename.pdf
or
$ chm2pdf --webpage filename.chm filename.pdf
Difference between two options are
- We use --book if the HTML sorces (input file) are structured
- We use --webpage if the HTML sorces (input file) are unstructured
For help
$chm2pdf --help
Courtesy: Linux For You magazine
Thanks to Linux For you magazine
Your Favourite Electronics products price and compare it
you can see your favourite Electronics products price and compare it in the following website.
http://compareindia.in.com/
Courtesy : Thanks for the compare india team.
Friday, January 8, 2010
He is the real Khan
www.khanacademy.org/
One of colleague said about him and his website. This is a website of Mr Salman khan where he had updated all his best knowledge in the youtube videos and it is a open source.We have to encourage this kind of peoples.
This person is extra ordinary. Good Mr Khan Keep it up. Please listen and watch his videos you will love it naturally.
Text which was found on his website is as follows:
The Khan Academy is a not-for-profit organization with the mission of providing a high quality education to anyone, anywhere.
We have 1000+ videos on YouTube covering everything from basic arithmetic and algebra to differential equations, physics, chemistry, biology and finance which have been recorded by Salman Khan.
You can search your bus routes in Chennai through Online
You can search your bus routes in Chennai through the following site
http://rab.in/bus/chennai/
Just enter your source and destination then this site will give you the Bus Nos. Chennai Bus Routes lets you search the routes of the MTC buses running in the city of Chennai. Unlike the official site, we also tell you where you can change buses if there are no direct buses to where you want to go.
To get started, fill in your start and destination bus stops. You can also just enter one stop name to get a list of buses that go to that stop.
Type in a part of the stop name and pick from the drop-down list that appears.
http://rab.in/bus/chennai/
Courtesy:
Thanks For the person who made this website
Thursday, January 7, 2010
I2C based LCD code For ZIO
Today i have done I2C based LCD code in python which was successfully working.Thanks for Vijaykumar for helping me to find the bug in my code.
Wednesday, January 6, 2010
Intel's 48-core processor
Intel's 48-core processor
http://news.cnet.com/2300-1001_3-10001951.html?tag=nefd.galleryIntel debuted and demonstrated its Single-chip Cloud Computer (SCC) processor Wednesday. The processor has 48 cores--24 dual-core "tiles"--connected with a high-speed mesh network. Intel wants the experimental chip, at least 100 of which it'll distribute to researchers in 2010, to lead to new attempts to tackle multicore system and software design. Ultimately, Intel believes its aggressive multicore approach will be the way computers get enough power for tasks such as vision and speech comparable to what humans have.
Tuesday, January 5, 2010
First dedicated 3D networks coming to TV
A new television network featuring 24-7 three-dimensional content will be coming to your home in 2011. The venture is backed by Discovery Communications, owners of the Discovery Channel and its family of networks, Sony, and Imax.
http://news.cnet.com/8301-13506_3-10425553-17.html
(Credit: Marguerite Reardon/CNET)
Monday, January 4, 2010
zilogic systems
www.zilogic.com
Send a mail to info@zilogic.com
personal mail siva@zilogic.com
Phone
Call us at +91 44 45018795 or +91 44 24480505.
Address
Visit our office at the following address.
Zilogic Systems,
No.15 (Old No. 11), Ground Floor,
Saroja Apartments,
Fourth Main Road,
Kamaraj Nagar,
Thiruvanmiyur,
Chennai - 600 041.
Python testcases for VerilogHDL Codes
hi we(Zilogic systems) are trying to develop a python based test cases for VerilogHDL codes.