Skip to main content

Difference between Linux and Window.

 Following are the important differences between Linux and Windows.


Sr. No.

Linux

Windows

1

Linux is Open Source and is free to use.

Windows is not open source and is not free to use.

2

There are no drives in Linux

Windows has different drives like C: D: E

3

For every user /home/username directory is created which is called his home directory.

In windows, My Documents is default home directory.

4

More secure

Vulnerable to viruses and malware attacks.

5

Linux file system is case sensitive.

Windows file system is case insensitive.

6

Use the following file formate :-EXT2, EXT3, EXT4, Reisers FS, XFS and JFS

File formate:-FAT, FAT32, NTFS and ReFS

7

Linux uses monolithic kernel.

Windows uses micro kernel.

8

Linux is written in assembly language and C.

Windows is written in C++ and assembly language.


Comments

Popular posts from this blog

BOOT PROCESS

                                                    BOOT PROCESS  * The following are the 6 high level stages of a typical Linux boot process. 1. BIOS BIOS stands for Basic Input/Output System. In simple terms, the BIOS loads and executes the Master Boot Record (MBR) boot loader. When you first turn on your computer, the BIOS first performs some integrity checks of the HDD or SSD. Then, the BIOS searches for, loads, and executes the boot loader program, which can be found in the Master Boot Record (MBR). The MBR is sometimes on a USB stick or CD-ROM such as with a live installation of Linux. Once the boot loader program is detected, it's then loaded into memory and the BIOS gives control of the system to it. 2. MBR MBR stands for Master Boot Record.It is located in the 1st sector of the bootable disk. Typically /dev/hda, or /d...