You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -4252,12 +4252,12 @@ Useful resources:
4252
4252
</details>
4253
4253
4254
4254
<details>
4255
-
<summary><b>How to prevent <code>dd</code> from freezing system?</b></summary><br>
4255
+
<summary><b>How to prevent <code>dd</code> from freezing your system?</b></summary><br>
4256
4256
4257
4257
Try using ionice:
4258
4258
4259
4259
```bash
4260
-
ionice -c3 dd if=/dev/zero of=z
4260
+
ionice -c3 dd if=/dev/zero of=file
4261
4261
```
4262
4262
4263
4263
This start the `dd` process with the "idle" IO priority: it only gets disk time when no other process is using disk IO for a certain amount of time.
@@ -5257,7 +5257,7 @@ if [[ $state -ne 0 ]] ; then echo "not connection" > /dev/stderr ; exit ; fi
5257
5257
</details>
5258
5258
5259
5259
<details>
5260
-
<summary><b>You should rewrite POST with payload to external API but POST requests loose the parameters passed on the URL. How to fix this problem (e.g. in Nginx) and what are the reasons for this behavior?</b></summary><br>
5260
+
<summary><b>You should rewrite POST with payload to an external API but the POST requests loose the parameters passed on the URL. How to fix this problem (e.g. in Nginx) and what are the reasons for this behavior?</b></summary><br>
5261
5261
5262
5262
The issue is that external redirects will never resend **POST** data. This is written into the HTTP spec (check the `3xx` section). Any client that does do this is violating the spec.
0 commit comments