Linux: Difference between revisions

25 bytes added ,  10 May 2019
m
Bot: Cosmetic changes
No edit summary
m (Bot: Cosmetic changes)
Line 1: Line 1:
'''Linux''' is an open source monolithic Unix-like [[POSIX]]-compliant kernel created by Linus Torvalds. Unlike some complete operating systems, Linux is a base for OS developers to create an OS with the software of their own while using a pre-made widely-supported kernel.
'''Linux''' is an open source monolithic Unix-like [[POSIX]]-compliant kernel created by Linus Torvalds. Unlike some complete operating systems, Linux is a base for OS developers to create an OS with the software of their own while using a pre-made widely-supported kernel.


==Distributions==
== Distributions ==
Linux comes in several distributions with their own [[Package Management|package managers]] and other implementations of things. Many Linux distributions include the [[GNU]] suite of essential software, however, a notable few (such as Google's [[Android]]) omit GNU and instead opt for their own custom suite of software.
Linux comes in several distributions with their own [[Package Management|package managers]] and other implementations of things. Many Linux distributions include the [[GNU]] suite of essential software, however, a notable few (such as Google's [[Android]]) omit GNU and instead opt for their own custom suite of software.


==Conventions==
== Conventions ==
Linux distributions have many conventions that make Linux more than a kernel. Here are some:
Linux distributions have many conventions that make Linux more than a kernel. Here are some:


Line 15: Line 15:
* Linux systems will usually use a descendant of the Bourne shell for a navigation shell. This includes shells like bash and zsh.
* Linux systems will usually use a descendant of the Bourne shell for a navigation shell. This includes shells like bash and zsh.


==Everything is a file==
== Everything is a file ==
In Linux, even things like hardware are represented as files that can be written to. For example, the file for the first hard drive is /dev/sda. This means that if you want to write bytes directly to the drive you can use an app that lays bytes (like dd) to write directly to that file. This can be done by using the app named echo to output something and piping the output to dd which you specify the hard disk's file too.  
In Linux, even things like hardware are represented as files that can be written to. For example, the file for the first hard drive is /dev/sda. This means that if you want to write bytes directly to the drive you can use an app that lays bytes (like dd) to write directly to that file. This can be done by using the app named echo to output something and piping the output to dd which you specify the hard disk's file too.


There are also more liberal concepts of devices in /dev. /dev/null, when written to, discards all data sent to it. If you write to /dev/null and then open it it will still be empty.
There are also more liberal concepts of devices in /dev. /dev/null, when written to, discards all data sent to it. If you write to /dev/null and then open it it will still be empty.
Line 22: Line 22:
There is also another directory, called /proc, that manages other devices. The directory /proc/acpi contains all sorts of subtle devices like the power button and battery.
There is also another directory, called /proc, that manages other devices. The directory /proc/acpi contains all sorts of subtle devices like the power button and battery.


==Trivia==
== Trivia ==
* Linus Torvalds originally meant to call Linux "Freax". One of Linus' coworkers didn't like that name and uploaded the software to the FTP server as "Linux".
* Linus Torvalds originally meant to call Linux "Freax". One of Linus' coworkers didn't like that name and uploaded the software to the FTP server as "Linux".


* Linus was bitten by a penguin one time, and that is the reason that the logo of Linux is a penguin.
* Linus was bitten by a penguin one time, and that is the reason that the logo of Linux is a penguin.


==Distributions==
== Distributions ==
===Debian and derivatives===
=== Debian and derivatives ===
* [[Debian]]
* [[Debian]]
* [[Corel Linux]]
* [[Corel Linux]]
* [[Kali Linux]]
* [[Kali Linux]]
====Ubuntu and derivatives====
==== Ubuntu and derivatives ====
* [[Ubuntu]]
* [[Ubuntu]]
* [[Kubuntu]]
* [[Kubuntu]]
Line 44: Line 44:
* [[Linspire]]
* [[Linspire]]


===Fedora, Red Hat and derivatives===
=== Fedora, Red Hat and derivatives ===
* [[Fedora]]
* [[Fedora]]
* [[Red Hat]]
* [[Red Hat]]
* [[CentOS]]
* [[CentOS]]


===Others===
=== Others ===
* [[Slackware]]
* [[Slackware]]
* [[Arch Linux]]
* [[Arch Linux]]
Line 60: Line 60:
* [[Android]]
* [[Android]]


==See also==
== See also ==
*[[GNU]]
* [[GNU]]
*[[X]]
* [[X]]
*[[Chrome OS]]
* [[Chrome OS]]
*[[Virtual terminal]]
* [[Virtual terminal]]


[[Category:Linux]]
[[Category:Linux| ]]
[[Category:Operating systems]]
[[Category:Operating systems]]
Cookies help us deliver our services. By using our services, you agree to our use of cookies.