Skip to main content

How to Work on Unix in My windows PC without Internet

   Do you wanna work on Unix Platform ?   
  (without internet)        
 No need of installing an Unix OS just follow the instruction below

Step 1:Download cygwin installer from internet
                        Click here to goto download page

Step 2:After Downloading open it

Click Install from Internet

Choose Direct Connection



Choose
 any one of the servers
After that click on Next till you get a window given below
                                




Now Choose CUR on your top right and click on Next and proceed.It will take a lot time (Depends upon ur connection)

Step 3:After Downloading and Installation Completed.Now its time to configure system variables
Step 4;Got MyComputer->C drive->cygwin ->bin
Now Copy the path

Step 5:Now goto My computer->System Properties->Advanced System Setting->Environment    
Variable

Step 6;Now select  from User Variables Box Select Path and click edit

Step 7:Now add semicolon at the end and paste the path

                       eg:      ;C:\cygwin\bin

Step 8:Click on ok.Thats all Now you can use Unix in your default cmd (start->run->cmd) prompt or cygwin terminal

If you have any Doubts watch this video



Note :In this software some commands like Process based Commands are not supported and vi editor was not that much convinient. I recommend this software for beginners who is practicing unix commands 

Comments

Popular posts from this blog

How to Hack Your College/Hostel Wifi

Do you want to use the maximum bandwidth of your wifi connection ?? Do you want to block others using the wifi connection?? Step 1:Go to www.arcai.com and download netcut software click here to goto download page Step 2:Install it (Note :After installing Netcut it will ask your permission to install winPcap,You have                           to Install both the Netcut and WinPcap ) Step 3:Open Netcut as an administrator Step 4:Identify your laptop ip and wifi router ip. Step 5:Except your lap ip and router ip block all others ip by clicking on each ip and clicking                           cutoff(ready) tab,After blocking you will find like this Step 6:If u want to unblock an IP just click on it and click Resume tab Step 7:To avoid blocking your mobile/devices connected on the same network check for your                        mobile/device ip and avoid blocking it. For more check out this video

Reuse Your Rechargeable Batteries

Did your UPS/Bike battery got expired ?? Dont throw it you can again reuse it Warning:This method is only for Lead Acid batteries,not for Lithium ion battery My desktop ups battery has expired and it was in dead condition.so I want to recycle the battery …this is a effective way and this method is used in battery servicing stations ….it’s so simple and easy..U can do it in your home STEP 1: things required 1)  Water  (more pure the water more effective outcome better u can use  distilled water )              you can use water that available in your home,but distilled water is more effective                 ( click here for How to make distilled water in home)                                                                           2)  Syringe  (anything which pours water on battery hole) 3)  Dead  battery (be sure that the battery is not in popped condition)    STEP 1: Remove  the top cover of the battery as shown in fig BEFORE WATER FILLING      

Create Your Own Folder Lock

Cool Hack to Create Your Own Folder Lock Step  1: Go to the folder where you wanna create a Your Own Folder Lock                Step 2:Open a notepad and copy the given Code cls  @ECHO OFF  title Folder Personal  if EXIST "HTG Locker" goto UNLOCK  if NOT EXIST Personal goto MDLOCKER  :CONFIRM  echo Enabling Lock::Waiting for Conformation (y/n)  set/p "cho=>"  if %cho%==Y goto LOCK  if %cho%==y goto LOCK  if %cho%==n goto END  if %cho%==N goto END  echo Invalid choice.  goto CONFIRM  :LOCK  ren Private "HTG Locker"  attrib +h +s "HTG Locker"  echo Folder locked  goto End  :UNLOCK  echo Enter password to unlock folder  set/p "pass=>"  if NOT %pass%== mypassword  goto FAIL  attrib -h -s "HTG Locker"  ren "HTG Locker" Personal  echo ERR_INCORRECT_PASSWORD::FOLDER UNLOCK FAILED goto End  :FAIL  echo Invalid password  goto end  :MDLOCKER  md Personal echo Folder nam