Posts

HOW TO MAKE A FLASH DRIVE BOOTABLE FOR INSTALLATION OF WINDOWS OS

Image
  There are several ways to make a drive bootable, either using an application software such as Power ISO or using the Command Line. In today's demonstartion we will be using the Command Line. STEP 1 Go to the command prompt How to execute - Press Windows Key + R and type cmd in the box or better still  Click Start in the search button type cmd> Enter. STEP 2 Type> Diskpart STEP 3 Type> list disk It will show you the list of available disk, select the flash drive, it varies on the amount of drive you are having  for example mine is Disk 1 STEP 4 Type> select disk 1 STEP 5 Type> clean NOTE: - All data will be erased STEP 6 Type> create partition primary STEP 7 Type> select partition 1 STEP 8 Type> active To make the drive active STEP 9 Type> format fs=ntfs=quick NOTE:- but if your drive is Less than 16GB you should use FAT32 instead of NTFS. ...

HOW TO CONFIGURE DHCP ON A CISCO ROUTER

Image
     In today's class we will be looking at how to configure DHCP on a Cisco Router. The network topology above will be uesd for demonstartion. Step 1 Click on the Router  Step 2 Click GUI Step 3 Router>enable Router#configure terminal Router(config)#no ip domain-lookup Router(config)#hostname Network_SurgeonR1 Network_SurgeonR1(config)#int f0/0 Network_SurgeonR1(config-if)#ip add 192.168.10.1 255.255.255.0 Network_SurgeonR1(config-if)#no shutdown Network_SurgeonR1(config-if)#exit Network_SurgeonR1(config)#ip dhcp excluded-address 192.168.10.1 192.168.10.9 Network_SurgeonR1(config)#ip dhcp pool Network_SurgeonPool Network_SurgeonR1(dhcp-config)#network 192.168.10.0 255.255.255.0 Network_SurgeonR1(dhcp-config)#default-router 192.168.10.1 Network_SurgeonR1(dhcp-config)#exit