Posts

Showing posts from November, 2011

Links

http://www.orissalinks.com/orissagrowth/?cat=43 http://orissa.gov.in/oriyaclassics/oriyabhagabat/index.htm http://acnc.com http://cbioc.eas.asu.edu/cbioc/chitta/bhashakosha/Mukhashala.pdf http://labor-liber.org/en/gnu-linux/introduction/sed http://learnlinux.tsf.org.za/courses/build/shell-scripting/ http://www.linuxforums.org/programming/ http://www.cpqlinux.com/ http://linux.die.net/abs-guide/ http://www.linuxdevcenter.com/pub/a/linux/lpt/45_17.html http://acnc.com/04_00.html http://labor-liber.org/en/gnu-linux/introduction/sed http://www.ibm.com/developerworks/views/linux/library.jsp http://www.redbooks.ibm.com/redpapers/pdfs/redp4285.pdf http://publib-b.boulder.ibm.com/Redbooks.nsf/portals/Linux http://www.ibm.com/developerworks/library/l-linuxboot/index.html#N10132 http://www.ibm.com/developerworks/library/l-linuxboot/index.html#N10132 http://www.redhat.com/docs/manuals/csgfs/browse/4.6/DM_Multipath/MPIO_Overview.html   (MULTIPATH) http://elib

DOS "Star Wars Movie"

Hey folks, do u know that windows XP is having a hidden "Star Wars Movie" inside it??? You should be connected to the NET for using this. Go to Starts-->Programs-->Run Type telnet towel.blinkenlights.nl And hit enter. ......Enjoy the magic!!!!..............

DOS Cheat Sheet

Accessibility Controls access.cpl Add Hardware Wizard hdwwiz.cpl Add/Remove Programs appwiz.cpl Administrative Tools control admintools Automatic Updates wuaucpl.cpl Bluetooth Transfer Wizard fsquirt Calculator calc Certificate Manager certmgr.msc Character Map charmap Check Disk Utility chkdsk Clipboard Viewer clipbrd Command Prompt cmd Component Services dcomcnfg Computer Management compmgmt.msc timedate.cpl ddeshare Device Manager devmgmt.msc Direct X Control Panel (If Installed)* directx.cpl Direct X Troubleshooter dxdiag Disk Cleanup Utility cleanmgr Disk Defragment dfrg.msc Disk Management diskmgmt.msc Disk Partition Manager diskpart Display Properties control desktop Display Properties desk.cpl Display Properties (w/Appearance Tab Preselected) control color

System Manufacturer Details from Windwos/Dos

Click On the "start" menu. Choose "Run" Type "cmd" on "Run" Prompt. On the "cmd" window type "wmic bios get manufacturer" And hit "Enter" Enjoy you got the Manufacturer Details

Get System BIOS Version in Windows.

Click on "start" menu Select "Run" Type "cmd" in "run" prompt Type "wmic bios get smbiosbiosversion" in "cmd" prompt. Hit Enter Now you would be having your Bios Version. Enjoy.

Find System Serial Number in Windows/DOS

Click On the "start" menu. Choose "Run" Type "cmd" on "Run" Prompt. On the "cmd" window type "wmic bios get serialnumber" And hit "Enter" Enjoy you got the System Serial Number

How To Create A Bash Install Script/.bin installer

Have you ever wanted to create an installer program on a Linux system, but didn’t want all the hassle of an actual install builder? I have. I recently had need of a simple, no frills installation that could: ask the user a few questions extract some binary files and do some stuff with those binary files. So I’m going to show you how you can create such an installer with very little hassle. I can’t actually claim credit for this method though; I actually got the idea from Sun’s JDK installer for the Linux platform. You download a “.bin” file, change the file mode so that it is executable and then run it. It displays the end user license agreement, gets some feedback and then goes about installing Java for you. Well, if you open that .bin file up in a text editor (say vi) you’ll see that it’s nothing more than a shell script with a binary chunked onto the end. Thus my plans for world domination were born… The Script The first part of this process is to create you