1
0
mirror of https://github.com/0xAX/linux-insides.git synced 2024-12-22 14:48:08 +00:00
Commit Graph

26 Commits

Author SHA1 Message Date
Sebastian Fricke
2cff4abf08 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>
2020-05-31 17:23:17 +02:00
Sebastian Fricke
991f171c6d Initialization/linux-initialization-8.md: Fix grammatical errors & improve wording
s/as if a single task/as if they were a single task/
s/The least unit which scheduler operates is an individual task or thread. But a process is not only one type of entities of which the scheduller may operate./
The smallest unit that the scheduler works with is an individual task or thread. However, a process is not the only type of entity that the scheduler can operate with./
s/these options provides support/these options provide support/
s/The first one option provides support for group scheduling with `completely fair scheduler` policies and the second with `real-time` policies respectively./
The first option provides support for group scheduling with the `completely fair scheduler` policies and the second with the `real-time` policies respectively./
s/It means that it supports/That means it supports/
2020-04-18 07:11:09 +02:00
Michael D
99e156101a More image file salvaging
Patch 3: Initialization/
2019-10-10 19:54:55 +02:00
Alexander Kuleshov
e896e56c86
s/http/https for linux-insides 2018-03-24 01:06:57 +06:00
Dongliang Mu
49c8951eb8 modify broken links related with Thoery, Data structure, Misc and so on 2018-03-22 19:50:44 -04:00
Dongliang Mu
72c71c2560 fix interrupts 2018-03-19 22:09:46 -04:00
Dongliang Mu
f159c63e0c Change mm to MM, interrupts to Interrupts 2018-03-16 16:03:40 -04:00
Chandan Rai
976c775471 corrected typos 2017-08-02 00:44:53 +05:30
Aaron Hill
17da4af718
Make all Github links reference a specific commit
Closes #480
2017-07-30 15:56:26 -04:00
Radek Dostál
684c5ee70b Initialization: fix spelling
"hierarcy" => "hierarchy"
"hierarcies" => "hierarcies"

Signed-off-by: Radek Dostál <rd@radekdostal.com>
2017-07-22 20:12:21 +02:00
Alexander Kuleshov
6792d39c66 fix a typo 2017-07-14 17:34:50 +06:00
Alexander Kuleshov
30600495c4
fix articles 2017-07-08 00:22:46 +06:00
Alexander Kuleshov
7be6e28f7e rewrite scheduler initialization part 2017-04-03 00:28:05 +06:00
Alexander Kuleshov
2d64a01b64 update linux-initialization-8.md part 2017-04-01 00:33:58 +06:00
Jakub Wilk
ddad9dfb4f Initialization: Fix typos 2016-06-28 11:31:24 +02:00
Mack Stump
3fda046617 fix typos 2016-05-19 10:46:26 -04:00
Dmitriy Olshevskiy
f4f5eb96ba fix typos in Initialization chapter 2016-03-30 20:49:00 +03:00
zhaoxiaoqiang
0d1ee9e346 fix grammer errors of the rest parts 2016-01-12 15:43:54 +08:00
zhaoxiaoqiang
ae5cbb4c20 fix minor grammer errors 2016-01-06 18:16:12 +08:00
mudongliang
ae6b0f52ee revert internals to insides in initialization 2015-10-26 09:32:07 +08:00
mudongliang
dbfb8d4cd3 modify 'internals' to 'insides' 2015-10-16 22:05:36 +08:00
Diogo Kersting
bfe6fc596a Some english fixes - "runned" 2015-07-17 10:45:28 -03:00
0xAX
dda54c95b7 Update linux-initialization-8.md 2015-05-10 19:57:46 +06:00
0xAX
54f36dac7a Update linux-initialization-8.md 2015-05-10 19:56:07 +06:00
0xAX
265165af9a Update linux-initialization-8.md 2015-05-10 19:55:36 +06:00
0xAX
d6521a5b8b Create linux-initialization-8.md 2015-05-10 19:53:52 +06:00