mirror of
https://gitlab.com/octtspacc/OcttKB
synced 2025-04-04 18:51:02 +02:00
OcttKB Cross-Repo Sync (HTML to Raw)
This commit is contained in:
parent
44af6fc87f
commit
decc214216
@ -1,8 +0,0 @@
|
||||
created: 20230202225920722
|
||||
creator: Octt
|
||||
modified: 20230206111552196
|
||||
modifier: Octt
|
||||
tags: $:/i18n:en
|
||||
title: Markdown:en
|
||||
|
||||
<<WikipediaFrame Markdown en>>
|
@ -1,8 +0,0 @@
|
||||
created: 20230202225649145
|
||||
creator: Octt
|
||||
modified: 20230206111552472
|
||||
modifier: Octt
|
||||
tags: $:/i18n:en
|
||||
title: XML:en
|
||||
|
||||
<<WikipediaFrame XML en>>
|
19
Wiki-OcttKB/tiddlers/Normal/_BBCode.tid
Normal file
19
Wiki-OcttKB/tiddlers/Normal/_BBCode.tid
Normal file
@ -0,0 +1,19 @@
|
||||
created: 20230817233039500
|
||||
creator: Octt
|
||||
modified: 20230817234251775
|
||||
modifier: Octt
|
||||
tags: Markup WIP
|
||||
title: BBCode
|
||||
|
||||
<<^wikipediaframe BBCode>>
|
||||
|
||||
!!! ''Creation''
|
||||
|
||||
* Simple tag, without arguments: `[example]{TEXT}[/example]`
|
||||
* Medium tag, with a standard argument: `[example={SIMPLETEXT}]{TEXT}[/example]`
|
||||
* Complex tag, with (multiple) named arguments: `[example first={SIMPLETEXT} second={NUMBER}]{TEXT}[/example]`
|
||||
|
||||
!!!! ''Advanced''
|
||||
|
||||
* Specifying multiple fields of the same type is done by prefixing the type with a number (e.g. `{TEXT1}`).
|
||||
* Prefixing a field with `?` or `;optional` makes it optional on the user input side.
|
@ -1,10 +1,10 @@
|
||||
created: 20230202224901337
|
||||
creator: Octt
|
||||
icon: 📰
|
||||
modified: 20230221210547014
|
||||
modified: 20230817233127466
|
||||
modifier: Octt
|
||||
page-cover: https://images.unsplash.com/photo-1517134062979-e1234be8a085
|
||||
tags: Web
|
||||
tags: Web Markup
|
||||
title: HTML
|
||||
|
||||
<<^WikipediaFrame HTML en>>
|
||||
|
@ -1,11 +1,11 @@
|
||||
created: 20230816223835858
|
||||
creator: Octt
|
||||
modified: 20230816224928332
|
||||
modified: 20230817225824818
|
||||
modifier: Octt
|
||||
tags: Linux
|
||||
title: Kernel postinst issue on Linux Mint
|
||||
|
||||
The other day I got my Linux Mint system not booting anymore. I suspected this was due to my custom script I placed in `/etc/kernel/postinst.d/` that is needed to copy the latest kernel in my EFI partition after an APT update, to allow boot via efistub bypassing grub. Maybe an unattended upgrade of my kernel failed.
|
||||
The other day I got my Linux Mint system not booting anymore. I suspected this was due to [[my custom script|$:/Linux/Scripts/UpdateEfiBoot]] I placed in `/etc/kernel/postinst.d/` that is needed to copy the latest kernel in my EFI partition after an APT update, to allow boot via efistub bypassing grub. Maybe an unattended upgrade of my kernel failed.
|
||||
|
||||
After manually fixing the EFI partition to boot again in the system, I tried manually to run `apt upgrade`, and saw that my postinst script threw an error due to not finding one of the files to copy from `/boot` to `/boot/efi`.
|
||||
|
||||
@ -22,4 +22,4 @@ zz-shim
|
||||
zz-update-grub
|
||||
```
|
||||
|
||||
This was ugly to fix since, as seen in this list, my distro's mantainers are geniuses and decided to get rid of numbers, and instead prefer to just use alphabetical ordered naming, falling back to ugly letter suffixes when that plan failed. I renamed my script from `UpdateEfiBoot` to `zzz-UpdateEfiBoot` and that fixed the issue.
|
||||
This was ugly to fix since, as seen in this list, my distro's mantainers are geniuses and decided to get rid of numbers, and instead prefer to just use alphabetical ordered naming, falling back to ugly letter suffixes when that plan failed. I renamed my script from `UpdateEfiBoot` to `zzz-UpdateEfiBoot`, thus making it appear at the end of an alphabetical listing and sure enough that fixed the issue: running `apt upgrade` again completed the update without errors and my script did its job.
|
||||
|
8
Wiki-OcttKB/tiddlers/Normal/_Markdown.tid
Normal file
8
Wiki-OcttKB/tiddlers/Normal/_Markdown.tid
Normal file
@ -0,0 +1,8 @@
|
||||
created: 20230202225920722
|
||||
creator: Octt
|
||||
modified: 20230817233028088
|
||||
modifier: Octt
|
||||
tags: $:/i18n:en Markup WIP
|
||||
title: Markdown
|
||||
|
||||
<<^WikipediaFrame Markdown en>>
|
@ -1,6 +1,6 @@
|
||||
created: 20230207185112276
|
||||
creator: Octt
|
||||
modified: 20230723133217249
|
||||
modified: 20230817232253417
|
||||
modifier: Octt
|
||||
tags:
|
||||
title: Nginx
|
||||
@ -12,3 +12,7 @@ title: Nginx
|
||||
* [[agentzh's Nginx Tutorials (version 2020.03.19)|https://openresty.org/download/agentzh-nginx-tutorials-en.html]]
|
||||
* [[How to set up Nginx as a caching reverse proxy?|https://serverfault.com/questions/30705/how-to-set-up-nginx-as-a-caching-reverse-proxy]]
|
||||
* Nginx reverse proxy + URL rewrite: [[most correct way and best practice is usually...|https://serverfault.com/a/870620]]
|
||||
* [[If is Evil… when used in location context|https://www.nginx.com/resources/wiki/start/topics/depth/ifisevil/]] --- (always dangerous in locations, except when doing `return ...;` or `rewrite ... last;`)
|
||||
|
||||
* [[Install more_set_headers in nginx for Debian-based distro|https://serverfault.com/questions/954708/install-more-set-headers-in-nginx-1-15-8]] --- `apt install nginx-extras`, keeping in mind that it will rewrite the nginx core package, so any active nginx daemon will crash and need to be restarted.
|
||||
** Apparently all extra modules get enabled by default after this installation, and some might crash on some systems: if so, delete their symlinks from `/etc/nginx/modules-enabled`.
|
||||
|
@ -1,8 +1,8 @@
|
||||
created: 20230112115019993
|
||||
creator: Octt
|
||||
modified: 20230724220338171
|
||||
modified: 20230817233116020
|
||||
modifier: Octt
|
||||
tags: TiddlyWiki MediaWiki $:/i18n:en
|
||||
tags: TiddlyWiki MediaWiki $:/i18n:en Markup
|
||||
title: Wikitext
|
||||
|
||||
<<^wikipediaframe "Help:Wikitext" en>>
|
||||
|
8
Wiki-OcttKB/tiddlers/Normal/_XML.tid
Normal file
8
Wiki-OcttKB/tiddlers/Normal/_XML.tid
Normal file
@ -0,0 +1,8 @@
|
||||
created: 20230202225649145
|
||||
creator: Octt
|
||||
modified: 20230817233159210
|
||||
modifier: Octt
|
||||
tags: $:/i18n:en Markup WIP
|
||||
title: XML
|
||||
|
||||
<<^WikipediaFrame XML en>>
|
8
Wiki-OcttKB/tiddlers/Normal/_XPath.tid
Normal file
8
Wiki-OcttKB/tiddlers/Normal/_XPath.tid
Normal file
@ -0,0 +1,8 @@
|
||||
created: 20230817233205916
|
||||
creator: Octt
|
||||
modified: 20230817233235394
|
||||
modifier: Octt
|
||||
tags: XML WIP
|
||||
title: XPath
|
||||
|
||||
<<^wikipediaframe XPath>>
|
6
Wiki-OcttKB/tiddlers/System/Apps/_BBCodeAssembler.tid
Normal file
6
Wiki-OcttKB/tiddlers/System/Apps/_BBCodeAssembler.tid
Normal file
@ -0,0 +1,6 @@
|
||||
created: 20230817233331840
|
||||
creator: Octt
|
||||
modified: 20230817233610503
|
||||
modifier: Octt
|
||||
tags: $:/Apps
|
||||
title: $:/Apps/BBCodeAssembler
|
10
Wiki-OcttKB/tiddlers/System/Linux/Scripts/_UpdateEfiBoot.txt
Normal file
10
Wiki-OcttKB/tiddlers/System/Linux/Scripts/_UpdateEfiBoot.txt
Normal file
@ -0,0 +1,10 @@
|
||||
#!/bin/sh
|
||||
# => /etc/kernel/postinst.d/zzz-UpdateEfiBoot
|
||||
set -ex
|
||||
cd /boot/efi
|
||||
|
||||
cp ./vmlinuz.mint ./vmlinuz.mint.old
|
||||
cp ./initrd.mint ./initrd.mint.old
|
||||
|
||||
cp ../vmlinuz ./vmlinuz.mint
|
||||
cp ../initrd.img ./initrd.mint
|
@ -0,0 +1,7 @@
|
||||
created: 20230817225535427
|
||||
creator: Octt
|
||||
modified: 20230817225708513
|
||||
modifier: Octt
|
||||
tags:
|
||||
title: $:/Linux/Scripts/UpdateEfiBoot
|
||||
type: text/plain
|
@ -1,5 +1,5 @@
|
||||
created: 20230816230916467
|
||||
created: 20230817234334842
|
||||
current-tiddler: GettingStarted
|
||||
modified: 20230816230916467
|
||||
modified: 20230817234334842
|
||||
title: $:/HistoryList
|
||||
type: application/json
|
@ -1,6 +1,6 @@
|
||||
created: 20230816223632021
|
||||
created: 20230817140518847
|
||||
creator: Octt
|
||||
list:
|
||||
modified: 20230816230658515
|
||||
modified: 20230817233719568
|
||||
modifier: Octt
|
||||
title: $:/StoryList
|
@ -1,6 +1,6 @@
|
||||
created: 20220920160922870
|
||||
creator: Octt
|
||||
modified: 20230417103637996
|
||||
modified: 20230817233014551
|
||||
modifier: Octt
|
||||
title: $:/config/RelinkOnRename
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
created: 20220920174307633
|
||||
creator: Octt
|
||||
modified: 20230723223418307
|
||||
modified: 20230817225838840
|
||||
modifier: Octt
|
||||
title: $:/state/sidebar
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
created: 20220920092307479
|
||||
creator: Octt
|
||||
modified: 20230816230630105
|
||||
modified: 20230817233634606
|
||||
modifier: Octt
|
||||
title: $:/state/tab/sidebar--595412856
|
||||
|
||||
$:/core/ui/SideBar/More
|
||||
OcttKB/Index
|
@ -0,0 +1,7 @@
|
||||
created: 20230817233312379
|
||||
creator: Octt
|
||||
modified: 20230817233334196
|
||||
modifier: Octt
|
||||
title: $:/state/toc/$:/ToC-$:/Apps--1697730578
|
||||
|
||||
close
|
@ -0,0 +1,7 @@
|
||||
created: 20230817233308156
|
||||
creator: Octt
|
||||
modified: 20230817233311699
|
||||
modifier: Octt
|
||||
title: $:/state/toc/$:/ToC-$:/Tools--1697730578
|
||||
|
||||
close
|
@ -1,7 +1,7 @@
|
||||
created: 20221109225836608
|
||||
creator: Octt
|
||||
modified: 20230225144041923
|
||||
modified: 20230817233316723
|
||||
modifier: Octt
|
||||
title: $:/state/tree/$:/Apps/Dashboard/
|
||||
|
||||
hide
|
||||
show
|
Loading…
x
Reference in New Issue
Block a user