Skip to main content

How to work on unix server using Telnet

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

Step 1: Ensure that Telnet is Enabled in your machine(If u dont know just visit the link)
Step 2: Go to linuxzoo.net
Step 3: Create an account 
Step 4:After that login with your email and password
Step 5:Now click on Join queue


Step 6: Click on "switch on" tab and wait for the boot progress to become complete
Step 7:Now under connect Click on URL Telnet and a popup will appear (Ensure that popup are enabled in your browser)


Step 8:Now Launch the application a telnet prompt will be opened 

            Login:root
            Password:secure

If u have any doubts watch this video


Thats all now u can use the unix server .

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