A dictionary of Linux terms, in zine form.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

452 lines
11 KiB

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  1. \documentclass[8pt,letterpaper,twoside]{extreport}
  2. \usepackage[utf8]{inputenc}
  3. \usepackage[english]{babel}
  4. \usepackage{amsmath}
  5. \usepackage{amssymb}
  6. \usepackage{makeidx}
  7. \usepackage{graphicx}
  8. \usepackage{kpfonts}
  9. % page size
  10. \usepackage[
  11. paperheight=8.5in,
  12. paperwidth=5.5in,
  13. left=1cm,
  14. right=1cm,
  15. top=2cm,
  16. bottom=2cm]
  17. {geometry}
  18. % fancy headers
  19. \usepackage{fancyhdr}
  20. \pagestyle{fancy}
  21. \fancyhf{}
  22. \fancyhead[RO]{\textit{A Linux Dictionary}}
  23. \fancyhead[LE]{1\textsuperscript{st} Edition}
  24. \cfoot{Page \thepage}
  25. \renewcommand{\footrulewidth}{0.5pt}
  26. % multicolumns
  27. \usepackage{multicol}
  28. \setlength{\columnsep}{0.25in}
  29. \setlength{\columnseprule}{0.1pt}
  30. % hanging indents
  31. \usepackage{hanging}
  32. % paragraph spacing in all paragraphs
  33. \usepackage{parskip}
  34. \setlength{\parskip}{2pt}
  35. % Use tab stops when we need to (especially in footnotes)
  36. \usepackage{tabto}
  37. % Include sections and subsections in the TOC
  38. % https://latex-tutorial.com/tutorials/table-of-contents/
  39. \setcounter{tocdepth}{2}
  40. % Turn off section numbering
  41. % https://tex.stackexchange.com/questions/246571/table-of-contents-problem
  42. % Necessary to create table of contents with unnumbered sections
  43. \setcounter{secnumdepth}{0}
  44. % Use a custom title for the TOC
  45. % https://tex.stackexchange.com/questions/35903/formatting-the-title-of-the-toc
  46. \AtBeginDocument{\renewcommand\contentsname{The Contents}}
  47. % Center the TOC title
  48. % https://ctan.math.utah.edu/ctan/tex-archive/macros/latex/contrib/tocloft/tocloft.pdf
  49. % https://tex.stackexchange.com/questions/114709/how-do-i-get-the-table-of-contents-list-of-figures-and-list-of-tables-to-have-t
  50. % See Werner's note about the variable 'Z'
  51. \usepackage{tocloft}
  52. \renewcommand{\cfttoctitlefont}{\hfill\Large\textbf}
  53. \renewcommand{\cftaftertoctitle}{\hfill}
  54. % Change the space above and below the TOC title
  55. % https://tex.stackexchange.com/questions/46724/remove-vertical-space-before-table-of-contents-title
  56. \setlength{\cftbeforetoctitleskip}{-3em}
  57. \setlength{\cftaftertoctitleskip}{1em}
  58. % Tighten up the typography
  59. \usepackage{microtype}
  60. \author{Kenneth John Odle}
  61. \begin{document}
  62. \tableofcontents
  63. \bigskip
  64. \hrule
  65. \begin{center}
  66. \section{The Introduction}
  67. \end{center}
  68. \begin{multicols}{2}
  69. What follows is a dictionary of various terms related to Linux. It currently resides at\\ \texttt{https://git.kjodle.net/kjodle/linux-dictionary}. Go here to buy a paper copy of this book.
  70. \tabto{0.3cm} \textbf{Note:} A lot of these terms also relate to Unix. \textit{Caveat emptor!}
  71. \tabto{0.3cm} \textbf{n.b.:} Some of these terms may also refer to Mac OSX or Windows. \textit{Intense shuddering intensifies.}
  72. \end{multicols}
  73. \hrule
  74. \begin{center}
  75. \section{The Abbreviations}
  76. \end{center}
  77. \begin{multicols}{2}
  78. Standard Latin definitions are used extensively throughout this document.
  79. \tabto{0.3cm} \textit{c.f.} --
  80. \tabto{0.3cm} \textit{e.g.} --
  81. \tabto{0.3cm} \textit{i.e.} --
  82. \tabto{0.3cm} \textit{n.b.} --
  83. \tabto{0.3cm} \textit{q.v.} -- This is an abbreviation of the Latin phrase \textit{quae vide}, which translates as ``which see'' which denotes a cross reference to another item. Essentially, it means ``see also (this other thing).''
  84. \tabto{0.3cm} \textit{q.q.v.} -- Similar to \textit{q.v.}, this denotes a cross reference to two or more other items. Essentially, it means ``see also (these other things).''
  85. \medskip
  86. Additional modern abbreviations used include:
  87. \tabto{0.3cm} \textbf{RTFM} -- ``Read the effing manual''
  88. \tabto{0.3cm} \textbf{tl;dr:} -- ``too long; didn't read''
  89. \tabto{0.3cm} \textbf{YMMV} -- ``Your mileage may vary''
  90. \end{multicols}
  91. \hrule
  92. \begin{center}
  93. \section{The Words}
  94. \end{center}
  95. \bigskip
  96. \begin{multicols}{2}
  97. %\begin{small}
  98. \begin{hangparas}{.3cm}{1}
  99. \begin{centering}
  100. \subsection{alias -- fsck}
  101. \end{centering}
  102. % Replace the letters with actual words later
  103. \textbf{alias} -- A command for creating a shell alias for a command.
  104. \textbf{ALSA}
  105. \textbf{apt} -- The Advanced Packaging Tool. It is the front end for the Debian package management system. It performs a large number of functions, including downloading of packages, resolving dependencies, and installation of Debian packages (which have a .deb file extention).
  106. \textbf{apt-get}
  107. \textbf{Arch Linux}
  108. \textbf{bash}
  109. \textbf{bin}
  110. \textbf{binary}
  111. \textbf{boot}
  112. \textbf{build}
  113. \textbf{chmod}
  114. \textbf{chown}
  115. \textbf{Cinnamon}
  116. \textbf{clear}
  117. \textbf{CLI} -- The Command Line Interface, that is, a text-based interface, which is the opposite of a GUI or graphical user interface.
  118. \textbf{codec} -- A piece of software that encodes and decodes (i.e., plays) digital data, typically audio and video streams.
  119. \textbf{command binary}
  120. \textbf{command line}
  121. \textbf{compile}
  122. \textbf{console}
  123. \textbf{cowsay}
  124. \textbf{cp}
  125. \textbf{CUPS} -- The Common Unix Print Server. It is Ubuntu's print server, which is a dream when it works properly and a nightmare when it doesn't.
  126. \textbf{daemon} -- A process that runs in the background. These perform a large number of tasks, such as writing to system logs or monitoring your network.
  127. \textbf{Debian}
  128. \textbf{dependency}
  129. \textbf{dev}
  130. \textbf{df}
  131. \textbf{diff}
  132. \textbf{distro} -- Short for ``distribution,'' this refers to a specific version of Linux that is customized with its own software, options, and look and feel. These include things like \textbf{Ubuntu}, \textbf{Debian}, and \textbf{Fedora}. \textit{c.f.} \textbf{flavor}.
  133. \textbf{dpkg}
  134. \textbf{du}
  135. \textbf{dvipdf}
  136. \textbf{echo}
  137. \textbf{Elementary OS}
  138. \textbf{etc}
  139. \textbf{Fedora}
  140. \textbf{find}
  141. \textbf{fsck}
  142. \medskip
  143. \hrule
  144. \medskip
  145. \begin{centering}
  146. \subsection{Ghost Script - mv}
  147. \end{centering}
  148. \textbf{Ghost Script}
  149. \textbf{git}
  150. \textbf{GNOME}
  151. \textbf{gpdf} -- An application for viewing pdf files.
  152. \textbf{grep}
  153. \textbf{groff}
  154. \textbf{GUI}
  155. \textbf{gv} -- A command (GhostView) for viewing postscript files from the command line.
  156. \textbf{head}
  157. \textbf{history}
  158. \textbf{home}
  159. \textbf{hostname}
  160. \textbf{info}
  161. \textbf{init}
  162. \textbf{jobs}
  163. \textbf{KDE} -- A graphical environment used by the openSuse Linux distro as well as others.
  164. \textbf{kdvi} -- A KDE application, similiar to xdvi (\textit{q.v.}) for viewing dvi files.
  165. \textbf{kernel}
  166. \textbf{kernel module}
  167. \textbf{kill}
  168. \textbf{kpdf} -- An application for viewing pdf files.
  169. \textbf{Kubuntu} -- A GUI for Linux, based on Ubuntu. It uses KDE.
  170. \textbf{latex}
  171. \textbf{lib}
  172. \textbf{Linux Mint}
  173. \textbf{locate} -- command
  174. \textbf{ls}
  175. \textbf{man} -- A command-line utility to display the ``man'' (i.e., manual) page for a particular command. It has many parameters. Try \texttt{man man} to start. \\ \tabto{0.3cm}A lot of people don't find the \texttt{man} command very helpful, as it generally contains no examples. If you are in this camp, \textit{q.v.} both the ``tldr'' and ``info'' entries.
  176. \textbf{media}
  177. \textbf{mkdir}
  178. \textbf{mnt}
  179. \textbf{mv}
  180. \medskip
  181. \hrule
  182. \medskip
  183. \begin{centering}
  184. \subsection{opt -- sys}
  185. \end{centering}
  186. \textbf{opt}
  187. \textbf{package}
  188. \textbf{pandoc}
  189. \textbf{pdftk}
  190. \textbf{ping}
  191. \textbf{Plasma}
  192. \textbf{proc}
  193. \textbf{Pulse}
  194. \textbf{Puppy Linux}
  195. \textbf{pwd} -- Short for ``print working directory,'' this command displays the path you are on from your home directory.
  196. \textbf{rm}
  197. \textbf{rpm}
  198. \textbf{root}
  199. \textbf{run}
  200. \textbf{SANE}
  201. \textbf{sbin}
  202. \textbf{shell}
  203. \textbf{srv}
  204. \textbf{sudo}
  205. \textbf{sys}
  206. \medskip
  207. \hrule
  208. \medskip
  209. \begin{centering}
  210. \subsection{tail -- zip}
  211. \end{centering}
  212. \textbf{tail}
  213. \textbf{tar} -- A command for archiving files into tarballs. As a noun, it is also shorthand for the tarball itself.
  214. \textbf{tar} also, \textbf{tarball} -- Tar is shorthand for ``tape archive.'' Although tape archives are no longer around, tarballs are a common file archive format in Linux. Tarballs are not compressed, but you can use a compression tool such as gzip or bzip2 when creating them to compress the files. The common file extension for a tarball is .tar, as in archive.tar. When combined with gzip, tarballs often take the filename format archive.tar.gz and when combined with bzip2, filenames often assume the filename archive.tar.bz2.
  215. \textbf{terminal}
  216. \textbf{tex}
  217. \textbf{tldr}
  218. \textbf{tmp}
  219. \textbf{top}
  220. \textbf{touch}
  221. \textbf{troff}
  222. \textbf{Ubuntu}
  223. \textbf{uname}
  224. \textbf{Unity} -- Ubuntu's desktop environment, \textit{i.e.}, the name for Ubuntu's graphical interface. A ``shell'' for GNOME.
  225. \textbf{unix principle}
  226. \textbf{unzip}
  227. \textbf{update} -- To change software or parts of software to newer versions, in order to add new features, eliminate bugs, or enhance security, or for a combination of those three reasons. In Ubuntu, the \textbf{apt} application handles updates.
  228. \textbf{useradd}
  229. \textbf{userdel}
  230. \textbf{usr}
  231. \textbf{var}
  232. \textbf{VI} (also \textbf{vi}) -- A command line text editor. ``VI'' is refers to the word ``visual.''
  233. \textbf{VIM} -- Acronym for ``VI Improved.''
  234. \textbf{wget}
  235. \textbf{window manager} -- A layer of software that works with the X Window System (\textit{q.v.}) and provides windows management. KDE uses KWin and GNOME uses Metacity.
  236. \textbf{X}, \textbf{X-11}, \textbf{X-Windows} -- A windowing system for bitmap displays which is common on Unix-like operating systems. It handles the low-level tasks for the graphical interface.
  237. \textbf{xdvi} -- An application for viewing dvi files.
  238. \textbf{Xfce} -- A desktop environment that is considered to be one of the most efficient in terms of resource usage, and is therefore often preferred on older machines. It forms the basis of Xubuntu.
  239. \textbf{xpdf} -- An application for viewing pdf files.
  240. \textbf{Xubuntu} -- A distro derived from Ubuntu that uses the Xfce desktop (\textit{q.v.}).
  241. \textbf{zip}
  242. \end{hangparas}
  243. %\end{small}
  244. \end{multicols}
  245. \hrule
  246. \begin{center}
  247. \section{The Sources}
  248. \end{center}
  249. \begin{multicols}{2}
  250. As much as possible, I've tried to stick to APA style here, because it focuses on the date the article or book was published, which is relevant here (\textit{q.v.} my remarks in the introduction). I am sure this is not perfect, because the citation style I am most familiar with is MLA style. I have also added the date of access, with the exception of Wikipedia sources, because APA omits this except for Wikipedia articles. The date of access is in square brackets, in the format \texttt{YYYY.MM.DD}.
  251. As always, \textit{caveat emptor!}
  252. \end{multicols}
  253. \begin{hangparas}{12mm}{1}
  254. \begin{small}
  255. Community Help Wiki. (n.d.) \textit{Glossary}. Ubuntu Documentation. \texttt{https://help.ubuntu.com/community/Gloss \\ ary} [Accessed 2021.11.18]
  256. JED (text editor). (2021, November 15). In \textit{Wikipedia}. \texttt{https://en.wikipedia.org/wiki/JED\_(text\_editor)}
  257. The Linux Development Project. (n.d.). \textit{Linux Filesystem Hierarchy: Glossary}. \texttt{https://tldp.org/LDP/Linux- \\ Filesystem-Hierarchy/html/glossary. \\ html} [Accessed 2021.11.17.]
  258. Linuxtopia. (n.d.). \textit{Linux - Glossary}. \texttt{https://www.linuxtopia.org/online\_books/introduction\_to\_linux/g \\ loss.html} [Accessed 2021.11.17.]
  259. \end{small}
  260. \end{hangparas}
  261. \end{document}