Last active
January 22, 2019 13:50
-
-
Save john-science/fb8f4601259c144ed9e1cad0fb521844 to your computer and use it in GitHub Desktop.
Linux Distros I Have Known and Loved
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
digraph distros{ | |
rankdir="LR"; | |
node [color=lightgrey, fillcolor=lightgrey, shape=note] | |
Ubuntu [color=purple]; | |
"Scientific Linux" [color=green]; | |
CentOS [color=Orange]; | |
Kali [color=CornflowerBlue]; | |
Raspbian [color=red]; | |
Linux -> Debian; | |
Debian -> Knoppix; | |
Knoppix -> Kali; | |
Debian -> Raspbian; | |
Debian -> Ubuntu; | |
Ubuntu -> "Linux Mint"; | |
Ubuntu -> Gubuntu; | |
Linux -> FreeBSD; | |
Linux -> "Linux From Scratch"; | |
Linux -> "Red Hat"; | |
"Red Hat" -> "Red Hat Enterprise Linux"; | |
"Red Hat Enterprise Linux" -> CentOS; | |
"Red Hat Enterprise Linux" -> "Scientific Linux"; | |
"Red Hat" -> Fedora; | |
Linux -> Slackware; | |
Slackware -> SuSE; | |
{rank=same;Debian FreeBSD "Linux From Scratch" "Red Hat" Slackware} | |
} | |
// https://distrowatch.com/images/other/distro-family-tree.png |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment