File tree 2 files changed +27
-0
lines changed
2 files changed +27
-0
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ TIL is a collection of the things that I learned today. The contents can be anyt
15
15
* [ MySQL] ( #mysql )
16
16
* [ Oracle] ( #oracle )
17
17
* [ Percona] ( #percona )
18
+ * [ PostgreSQL] ( #postgresql )
18
19
* [ PMDK] ( #pmdk )
19
20
* [ Predix] ( #predix )
20
21
* [ RocksDB] ( #rocksdb )
@@ -52,6 +53,7 @@ TIL is a collection of the things that I learned today. The contents can be anyt
52
53
- [ How to control cores via bash command] ( linux/how-to-control-cores-via-bash-command.md )
53
54
- [ Copy and paste in tmux] ( linux/copy-and-paste-in-tmux.md )
54
55
- [ Extract multiple lines from a file] ( linux/extract-multiple-lines-from-a-file.md )
56
+ - [ How to add a kernel boot parameter] ( linux/how-to-add-a-kernel-boot-parameter.md )
55
57
56
58
### MySQL
57
59
Original file line number Diff line number Diff line change
1
+ # How to add a kernel boot parameter
2
+
3
+ 1 . Open the GRUB file:
4
+
5
+ ``` bash
6
+ $ sudo vi /etc/default/grub
7
+ ```
8
+
9
+ 2 . Find ` GRUB_CMDLINE_LINUX_DEFAULT ` and append a new paramter to its end:
10
+
11
+ ``` bash
12
+ GRUB_CMDLINE_LINUX_DEFAULT=" quiet splash mem=2048m"
13
+ ```
14
+
15
+ 3 . Update the GRUB configuration:
16
+
17
+ ``` bash
18
+ $ sudo update-grub
19
+ ```
20
+
21
+ 4 . Reboot:
22
+
23
+ ``` bash
24
+ $ sudo reboot
25
+ ```
You can’t perform that action at this time.
0 commit comments