Skip to content
Branch: master
Find file History

Latest commit

initBasti Gitbook Links: replace old links with new ones
The old links didn't point to valid locations.
Replace the old links with the new links and test those changes with a
small script: https://github.com/initBasti/markdown_link_check .

______________________________________________________________

In order to find and replace the links, I used the following commands:

grep -rwohP '.' -e "\(https\:\/\/0xax.gitbooks.io\/\S*\)" > links.txt
(Find all links recursivly in the project directories and print out the
 only the matches links)

Within links.txt:
Remove the '(' & ')' => :%s/\(//g  and :%s/\)//g
Remove duplicates => :sort u

Test if the links work with:
python3 md_link_check.py --pattern 0xax.gitbook --output-file bad.txt
(https://github.com/initBasti/markdown_link_check)

Create replace commands:
:%s/.*/grep -rl & '.' | xargs sed -i 's#&##g'
Enter replacement URL between the 2nd & 3rd '#'
Execute commands: :w !sh

Signed-off-by: Sebastian Fricke <sebastian.fricke.linux@gmail.com>
Latest commit 2cff4ab May 31, 2020

Files

Permalink
Type Name Latest commit message Commit time
..
Failed to load latest commit information.
images Salvage images from archive.org and add them to git Oct 10, 2019
README.md typo fix Dec 1, 2018
linux-bootstrap-1.md fix calculation of 8086 available memory range May 31, 2020
linux-bootstrap-2.md Merge pull request #692 from darkstar/fixes Nov 1, 2019
linux-bootstrap-3.md Salvage images from archive.org and add them to git Oct 10, 2019
linux-bootstrap-4.md Gitbook Links: replace old links with new ones May 31, 2020
linux-bootstrap-5.md Fix grammar and improve formatting Apr 15, 2019
linux-bootstrap-6.md Fix grammar and improve formatting Apr 15, 2019

README.md

Kernel Boot Process

This chapter describes the linux kernel boot process. Here you will see a series of posts which describes the full cycle of the kernel loading process:

This chapter coincides with Linux kernel v4.17.

You can’t perform that action at this time.