Skip to main content

LINUX BEST 24 FLAVOURS (VERSIONS)

1) UBUNTU/KUBUNTU/XUBUNTU/LUBUNTU

One of the most popular and general use distribution with the collection of most of the software.

          Based on : Debian. 
     
          DOWNLOAD IT HERE .

2)  FEDORA

 The most cutting edge general use distribution with upgrade after almost every six months.Fedora make use of every new software firstly before any another distribution uses it.




Based on : Red Hat.

DOWNLOAD IT HERE .

3)  SUSE

A stable,  general use version  used for everyone. Suse includes many defaults such as its package manager and its own KDE environment.







ORIGINATED FROM : SLACKWARE.

DOWNLOAD IT HERE

4) DEBIAN

One of the most stable distribution among all with a large selection of softwares.




BASED ON : ITSELF

DOWNLOAD IT HERE

5) Linux MINT

A highly customized distribution that includes many features out-of-box that other distributions don't have , including codecs.





BASED ON : UBUNTU ,DEBIAN

DOWNLOAD IT HERE

6) PCLinuxOS

A flavour of linux distribution that uses technologies from different flavours and combine them to make one package.




ORIGINATED FROM : MANDRAKE LINUX.

DOWNLOAD IT HERE

7) PinGuyOS

A general use distribution that comes with  a number of custamizations  to make it easier out-of-box.




BASED ON: UBUNTU

DOWNLOAD IT  HERE

8) SLACKWARE

One of the oldest living distribution.Slackware allows plenty of distributions and is great-use distribution.This flavour is not recommended for new users.




BASED ON : ITSELF 

DOWNLOAD IT HERE

9) GENTOO

A general distribution that is centered around machine-specific optimization.Not recommended for new users.




BASED ON : ITSELF

DOWNLOAD IT HERE

10) HYBRYDE EVOLUTION

An ubuntu based distribution that let you switch between desktops environments without restarting.




BASED ON : UBUNTU

DOWNLOAD IT HERE

11)  ARCH LINUX

A minimal rolling release ,general use distribution where you install only what you want or need actually.In this there is no default installations,Most customizations are done manually,




BASED ON : ITSELF

DOWNLOAD IT HERE

12) PUPPY LINUX

A very small distribution which takes very less amount of resources.This version is great for old computers and also for those who need every drop of power for their task.




BASED ON : ITSELF

DOWNLOAD IT HERE

13) BODHI LINUX

A great light weight version perfect for those who dont able to run other distributions because of some reasons on their desktops.




BASED ON : UBUNTU

DOWNLOAD IT HERE

14) TINY CORE

An extremely minimal distro which one can build up his own.




DOWNLOAD IT HERE

15) RED HAT ENTERPRISES LINUX

A commercial version for great enterprises systems by RED HAT, both for desktops as well as for servers.




BASED ON : FEDORA

DOWNLOAD IT HERE

16) SUSE ENTERPRISES LINUX

One of the two enterprises editions for most linux administrators and includes much tools for the admin's job to make it more easier.




BASED IN : OPEN SUSE

DOWNLOAD IT HERE

17) CENT OS

A great free clone of Red Hat Enterprises .




BASED ON : RED HAT ENTERPRISES LINUX.

DOWNLOAD IT HERE

18) JOLI OS

A distribution aimed for use  on netbooks and working with different cloud services.Same as that of chrome OS.But who use chrome os  ?




BASED ON : UBUNTU

DOWNLOAD IT HERE

19) ARTISTX

A specialized distribution that includes virtually every single multimedia application for linux that you may think of great working on images,sounds or videos.




BASED ON : UBUNTU

DOWNLOAD IT HERE

20) G PARTED

A distribution specially made for making partitioning of hard drives.It only contains partitioning softwares and console,




BASED ON : DEBIAN

DOWNLOAD IT HERE

21) PARTED MAGIC

A distribution made specially for partitioning of hard drives .It also contains many other features that make it more of a rescue disk than a alone partitioning disk.





DOWNLOAD IT HERE

22) BACKTRACK LINUX

A distribution that is mainly made for penetration testing and security auditing.Includes many software and patches of almost all types used in penetration testing.




BASED ON :  UBUNTU

DOANLOAD IT HERE

23) PEAR OS

A  very beautiful general use distribution that mimics the look , feel,nad functionality as same as that of apple's MAC OS.




BASED ON : UBUNTU

DOWNLOAD IT HERE

24) ZORIN OS

A general use distribution that mimics the look made for windows users who are not familiar with linux platform.For those who prefer windows interface but linux platform.




BASED ON : UBUNTU

DOWNLOAD IT HERE




Enhanced by Zemanta

Comments

Popular posts from this blog

show image in asp.net form from database

In order to show image from database to webform first add an image control in webpage.   <asp:Image ID="imgStudentImage" runat="server" Height="157px" Width="160px" /> Then add new webform to read image from database for example displayimage.aspx and in code behind model write the following code. public string str = //your string     public SqlConnection conn;     public SqlCommand sql = new SqlCommand();     public SqlDataReader dr;     public string strSQL;     protected void Page_Load(object sender, EventArgs e)     {         conn = new SqlConnection(str);         conn.Open();         long id = Convert.ToInt64(Request.QueryString["mId"]);         strSQL = "";         strSQL = strSQL + " SELECT snap from S...

Export Doc,Access,Image,CSV,Excel,Pdf,XML,HTML,Text,Print of Gridview in Asp.net

First import itextsharp.dll in the solution and use three namespces (basically for pdf) using iTextSharp.text; using iTextSharp.text.pdf; using iTextSharp.text.html.simpleparser;          Then Use the following code :- on each button  click  protected void Page_Load(object sender, EventArgs e)         {             if (!Page.IsPostBack)             {                 BindGridDetails(GridView1);             }         }                 protected DataTable BindGridDetails(GridView GridView1)         {   ...

im2col function in MATLAB explanation

Let us suppose we have A=[1 1;2 2] 1 1 2 2 ... ok Now img2col syntax  == im2col(A,[m n],block_type) Where block type = ('distinct','sliding') distinct places 0's in the final output,,,for padding, sliding,,repeats from the very first matrix element. after all elements read out. Now.. Now [m n] -- very important .... Number of Rows to show = M*N (if m=2 ,, n=2 then each column has 4 elements..) and Number of element fetch to repeat is M in row... That means,, OUTPUT OF THIS - im2col(A,[2 2], 'sliding') ans =      1      2      1      2 -- if  A=[1 1 1;2 2 2] A =      1     1     1      2     2     2 then im2col(A,[2 2], 'sliding') ans = contains 4 rows....as 2*2 ...   and fetch 2 elements as M=2 here... and slidin...