summaryrefslogtreecommitdiff
path: root/Debugging.m4 (unfollow)
Commit message (Collapse)Author
2024-04-24Introduction: Emphasize book title instead of using quotesPaul Menzel
Signed-off-by: Andre Noll <maan@tuebingen.mpg.de>
2024-04-24OS-Level_Virtualization: Spell *threat model* with *t*Paul Menzel
Signed-off-by: Andre Noll <maan@tuebingen.mpg.de>
2024-01-24Improve explanation of fifos.Andre Noll
Fifos are introduced as one of the seven file types but the explanation given there does not include typical use cases. Add a paragraph about fifos in the section on pipes and redirections to elaborate a little how fifos facilitate inter process communication. Suggested-by: Andrea Movilli <andrea.movilli@tuebingen.mpg.de>
2023-12-29LVM: Update paragraph on multi-queue schedulers.Andre Noll
The single queue schedulers are history, so replace the text which said that they are about to be replaced.
2023-12-29LVM: Trivial formatting fix.Andre Noll
The term "device" was not formatted properly due to a missing <code> and </code>.
2023-12-29Increase font size of <code> sections.Andre Noll
At least with some versions of firefox, they appear way too small.
2023-10-17uc: Add a summary of the SCO lawsuit to the history section.Andre Noll
The new text summarizes the cited LWN article.
2023-10-17Unix concepts: Add missing </p>.Andre Noll
2023-10-15Improve table of contents menu and style sheet.Andre Noll
Major changes to the macros and the .css files which should improve the look and feel of the pages a bit. Most notable is the increased font size and the new layout of the table of contents dropdown menu. No content changes.
2023-10-14Networking: Fix typo.Andre Noll
Remove the duplicate "on".
2023-10-14Networking: Slightly reword veth paragraph.Andre Noll
Don't imply that eth0 is always a physical interface and fix a typo/braino: one instance of pair needs to be peer.
2023-10-11Filesytems: Fix trivial grammar issue.Andre Noll
2022-10-06FS: Replace http link to nfs sourceforge page by https.Andre Noll
checklink complains as follows: Code: 301 -> 200 OK To do: This is a permanent redirect. The link should be updated.
2022-10-06FS: Remove Link to xfs.org page.Andre Noll
Code: 500 Can't connect to xfs.org:443 (Connection timed out) Quoting XFS developer Darrick J. Wong on lkml: > Is there a replacement URL for the xfs documentation? None that I know of. Some of it went to xfs.org but then we lost control of it. I tried to push other pieces went to xfs.wiki.kernel.org but then we lost control of that too. Some of it is slowly migrating to the kernel source code, but most of the old stuff is probably not movable because people are afraid of mixing GPL and CC licensed data in the same git repo/git server.
2022-07-12fs: Add two LWN links to NFS articles by Neil Brown.Andre Noll
As always, these are a nice read.
2022-07-12fs: Expand subsection on NFS file delegations.Andre Noll
Add some text about leases, the new corteous server feature and directory delegations.
2022-07-12fs: Improve text on NFS silly renames.Andre Noll
Mention the rmdir problem and that as of nfs4.1 silly renames are a thing of the past. Adjust the exercise which asks the reader to create a silly-renamed file accordingly.
2022-07-10fs: Fix typo in NFS section.Andre Noll
2022-02-01Networking: Remove exercise about www.meineip.de.Andre Noll
This site went offline recently. It now redirects to a different page which requires javascript and requires the user to enter a captcha.
2021-05-09filesystems: Add a paragraph about post-EOF reclaim after crash.Andre Noll
2021-02-19OSLV: Replace LXC section.Andre Noll
LXC got more and more complex, which made me write micoforia, a minimalistic container framework for Linux. This commit replaces the section on LXC by a similar section on micoforia.
2020-07-20OS-Level_Virtualization: Fix typo.Andre Noll
2020-04-21Introduction: Fix duplication anchor.Andre Noll
Since the chapter list is contained twice on the intro page, we must use different names for the anchors. To do so, change the TABLE_OF_CONTENTS() macro to receive the name of the anchor as an argument. Found by checklink. Fixes: 47d1b278687988739b214025788f7c5739916e70
2020-04-21OS-Level_Virtualization: Reword exercise on AMD's Secure Virtual Machine.Andre Noll
The link is dead. Reword the exercise to avoid referring to the document directly. Found by checklink.
2020-04-21Fix two broken links.Andre Noll
The cluster and the user-info repo were merged recently, and the cluster repo was removed afterwards. This commit makes the links refer to the user-info repo instead. This only affects the internal version of the pages. Found by checklink.
2020-03-26Filesystems: Improve section on dentry cache.Andre Noll
2020-03-25Add link to LWN article on dcache.Andre Noll
Although a bit dated, it's still worth reading.
2020-03-11Add table of contents to the main page.Andre Noll
At least the netsurf browser completely ignores the hamburger icon, so provide an alternative way to navigate the pages.
2020-03-11Have the logo link to the top level page.Andre Noll
This allows the user to switch back to the main page from any chapter.
2020-02-10Unix Concepts: Move some links to "Further Reading".Andre Noll
These are independent documents rather than exercises.
2020-02-10Unix Concepts: Use <th> for table headers.Andre Noll
This way they are styled according to the values in the css file.
2020-02-03LVM: Fix broken link to COW.Andre Noll
The link broke when the section on the virtual address space was made a subsection. Just link to the containing section on processes instead. Use the opportunity to reformat the whole paragraph and add the missing at the end of the paragraph </p>.
2020-02-03Unix Concepts: Remove broken link.Andre Noll
The section on soft and hard links was made a subsection, which has been merged into the section on Paths, Files and Directories. Remove the misleading and broken link. Found by checklink.
2020-01-23Decrease font size of menu.Andre Noll
To make it fit onto small cell phone screens.
2020-01-23Improve menu.Andre Noll
The grey bar was not very intuitive to use, and it does not work with all browsers. While elinks ignores the css and renders the menu at the top of the page, at least one popular cell phone browser neither shows the bar nor the menu, making it impossible to navigate the pages. This commit reworks the css and html code to always show an hamburger icon at the top left corner of the page. Moving the pointer on the icon opens the menu. Suggested-by: Sanja Jasek <S.Jasek@exeter.ac.uk> Tested-by: Maša Lenuzzi <masa.lenuzzi@tuebingen.mpg.de>
2020-01-11Avoid stray '<!DOCTYPE>' text.Andre Noll
The markdown converter converts the doctype header into html which results in a stray line at the top of the chapter. This only affects the chapters that still use markdown: Bash, Git, Command Line Utilities, and Gridengine. This patch applies a silly workaround. In the long run, the chapters should be converted to plain html.