Pages

Showing posts with label Windows. Show all posts
Showing posts with label Windows. Show all posts

Thursday, January 6, 2011

Split/Combine files on Mac/Windows:

Mac Terminal Command to split a large file:

split –b2047m <inputfilename>

(could not find split equivalent on windows)

This will generate smaller filenames starting with the letter x and two appended sorted characters, eg: xaa, xab, xac, etc. The original file is left intact.

Command to combine 2 or more files:

To put the files back together on Mac simply type the following command in the Mac terminal.
cat x* > newfilename

To put the files back together on Windows simply type the following command in the DOS command prompt.

copy /b x* one.txt

copy /b 1.txt +2.txt +3.txt one.txt

Saturday, April 10, 2010

WAMP Installation

WAMP Installation




Different way of WAMP Installation:
Install Apache, PHP, MySQL on Windows



Installing JAVA (JDK) on Windows

Installing JAVA (JDK) on Windows


Download JDK:

  1. Go to java.sun.com
  2. Click on Downloads > Java SE
  3. Click Download for JDK 6
  4. double click on the downloaded .exe file
  5. (click next, I agree, etc)

Setting Classpath:

  1. Right on My Computer
  2. Click on properties
  3. Click on Advanced System Settings
  4. Click on Environment variables
  5. Click on New under User Variables
  6. Type variable name as "Path"
  7. Type Variable Value as "C:\Program Files\Java\jdk1.6.0_12\bin" (or whatever it is on your machine)
  8. Click OK
  9. Click OK
  10. Open command prompt
  11. Type "javac" and hit enter
Loading