Skip to content

Commit 934b751

Browse files
committed
minor update
1 parent d340296 commit 934b751

File tree

15 files changed

+228
-39
lines changed

15 files changed

+228
-39
lines changed

pages/bare_metal_cloud/dedicated_servers/hardware-diagnose/guide.de-de.md

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,24 @@ Weitere Informationen zur Ausgabe dieses Befehls und deren Interpretation finden
7373

7474
Der Partitionstest umfasst einen Zugriffstest auf die Disk und eine Prüfung des Dateisystems. Der Zugriffstest prüft, ob das System mit den Disks Ihres Server kommunizieren kann. Die Überprüfung des Dateisystems führt den Befehl `fsck -fy` aus.
7575

76+
Führen Sie den folgenden Befehl aus, um das Dateisystem zu überprüfen:
77+
78+
```bash
79+
fsck -fy
80+
```
81+
82+
Führen Sie den folgenden Befehl aus, um einen Wiedergabetest durchzuführen. Ersetzen Sie `sd(x)` durch eigene Werte.
83+
84+
```bash
85+
dd if=/dev/zero of=/dev/sd(x) bs=1M count=100
86+
```
87+
88+
Führen Sie den folgenden Befehl aus, um einen Schreibtest durchzuführen. Ersetzen Sie `sd(x)` durch eigene Werte
89+
7690
```bash
77-
stress-ng --metrics-brief --timeout 60s --hdd 0 --aggressive
91+
hdparm -t /dev/sd(x)
7892
```
7993

8094
## Weiterführende Informationen
8195

82-
Für den Austausch mit unserer User Community gehen Sie auf <https://community.ovh.com/en/>.
96+
Für den Austausch mit unserer [User Community](/links/community).

pages/bare_metal_cloud/dedicated_servers/hardware-diagnose/guide.en-asia.md

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ fsck-fy
7878
For a read test, run the command below. Replace `sd(x)` with your own values.
7979

8080
```bash
81-
dd if=/dev/zero of=/dev/sd(x) bs=1M count=
81+
dd if=/dev/zero of=/dev/sd(x) bs=1M count=100
8282
```
8383

8484
For a write test, run the command below. Replace `sd(x)` with your own values
@@ -87,12 +87,6 @@ For a write test, run the command below. Replace `sd(x)` with your own values
8787
hdparm -t /dev/sd(x)
8888
```
8989

90-
For a stress test, run the following command:
91-
92-
```bash
93-
stress-ng --metrics-brief --timeout 60s --hdd 0 --aggressive
94-
```
95-
9690
## Go further
9791

9892
Join our [community of users](/links/community).

pages/bare_metal_cloud/dedicated_servers/hardware-diagnose/guide.en-au.md

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "How to perform server hardware diagnostics in rescue mode"
33
excerpt: "Find out how to use the OVHcloud rescue mode and diagnostic tools to identify hardware failures on your dedicated server"
4-
updated: 2024-05-06
4+
updated: 2025-09-04
55
---
66

77
## Objective
@@ -69,10 +69,24 @@ To learn more about the output of this command and how to interpret it, consult
6969

7070
The partitions test is comprised of a disk access test and a file system check. The disk access test checks if the system can communicate with your server's hard drives. The file system check uses the `fsck -fy` command to check the entire file system.
7171

72+
To check the file system, run the following command:
73+
74+
```bash
75+
fsck-fy
76+
```
77+
78+
For a read test, run the command below. Replace `sd(x)` with your own values.
79+
80+
```bash
81+
dd if=/dev/zero of=/dev/sd(x) bs=1M count=100
82+
```
83+
84+
For a write test, run the command below. Replace `sd(x)` with your own values
85+
7286
```bash
73-
stress-ng --metrics-brief --timeout 60s --hdd 0 --aggressive
87+
hdparm -t /dev/sd(x)
7488
```
7589

7690
## Go further
7791

78-
Join our [community of users](/links/community).
92+
Join our [community of users](/links/community).

pages/bare_metal_cloud/dedicated_servers/hardware-diagnose/guide.en-ca.md

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "How to perform server hardware diagnostics in rescue mode"
33
excerpt: "Find out how to use the OVHcloud rescue mode and diagnostic tools to identify hardware failures on your dedicated server"
4-
updated: 2024-05-06
4+
updated: 2025-09-04
55
---
66

77
## Objective
@@ -69,10 +69,24 @@ To learn more about the output of this command and how to interpret it, consult
6969

7070
The partitions test is comprised of a disk access test and a file system check. The disk access test checks if the system can communicate with your server's hard drives. The file system check uses the `fsck -fy` command to check the entire file system.
7171

72+
To check the file system, run the following command:
73+
74+
```bash
75+
fsck-fy
76+
```
77+
78+
For a read test, run the command below. Replace `sd(x)` with your own values.
79+
80+
```bash
81+
dd if=/dev/zero of=/dev/sd(x) bs=1M count=100
82+
```
83+
84+
For a write test, run the command below. Replace `sd(x)` with your own values
85+
7286
```bash
73-
stress-ng --metrics-brief --timeout 60s --hdd 0 --aggressive
87+
hdparm -t /dev/sd(x)
7488
```
7589

7690
## Go further
7791

78-
Join our [community of users](/links/community).
92+
Join our [community of users](/links/community).

pages/bare_metal_cloud/dedicated_servers/hardware-diagnose/guide.en-gb.md

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "How to perform server hardware diagnostics in rescue mode"
33
excerpt: "Find out how to use the OVHcloud rescue mode and diagnostic tools to identify hardware failures on your dedicated server"
4-
updated: 2024-05-06
4+
updated: 2025-09-04
55
---
66

77
## Objective
@@ -69,10 +69,24 @@ To learn more about the output of this command and how to interpret it, consult
6969

7070
The partitions test is comprised of a disk access test and a file system check. The disk access test checks if the system can communicate with your server's hard drives. The file system check uses the `fsck -fy` command to check the entire file system.
7171

72+
To check the file system, run the following command:
73+
74+
```bash
75+
fsck-fy
76+
```
77+
78+
For a read test, run the command below. Replace `sd(x)` with your own values.
79+
80+
```bash
81+
dd if=/dev/zero of=/dev/sd(x) bs=1M count=100
82+
```
83+
84+
For a write test, run the command below. Replace `sd(x)` with your own values
85+
7286
```bash
73-
stress-ng --metrics-brief --timeout 60s --hdd 0 --aggressive
87+
hdparm -t /dev/sd(x)
7488
```
7589

7690
## Go further
7791

78-
Join our [community of users](/links/community).
92+
Join our [community of users](/links/community).

pages/bare_metal_cloud/dedicated_servers/hardware-diagnose/guide.en-ie.md

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "How to perform server hardware diagnostics in rescue mode"
33
excerpt: "Find out how to use the OVHcloud rescue mode and diagnostic tools to identify hardware failures on your dedicated server"
4-
updated: 2024-05-06
4+
updated: 2025-09-04
55
---
66

77
## Objective
@@ -69,10 +69,24 @@ To learn more about the output of this command and how to interpret it, consult
6969

7070
The partitions test is comprised of a disk access test and a file system check. The disk access test checks if the system can communicate with your server's hard drives. The file system check uses the `fsck -fy` command to check the entire file system.
7171

72+
To check the file system, run the following command:
73+
74+
```bash
75+
fsck-fy
76+
```
77+
78+
For a read test, run the command below. Replace `sd(x)` with your own values.
79+
80+
```bash
81+
dd if=/dev/zero of=/dev/sd(x) bs=1M count=100
82+
```
83+
84+
For a write test, run the command below. Replace `sd(x)` with your own values
85+
7286
```bash
73-
stress-ng --metrics-brief --timeout 60s --hdd 0 --aggressive
87+
hdparm -t /dev/sd(x)
7488
```
7589

7690
## Go further
7791

78-
Join our [community of users](/links/community).
92+
Join our [community of users](/links/community).

pages/bare_metal_cloud/dedicated_servers/hardware-diagnose/guide.en-sg.md

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "How to perform server hardware diagnostics in rescue mode"
33
excerpt: "Find out how to use the OVHcloud rescue mode and diagnostic tools to identify hardware failures on your dedicated server"
4-
updated: 2024-05-06
4+
updated: 2025-09-04
55
---
66

77
## Objective
@@ -69,10 +69,24 @@ To learn more about the output of this command and how to interpret it, consult
6969

7070
The partitions test is comprised of a disk access test and a file system check. The disk access test checks if the system can communicate with your server's hard drives. The file system check uses the `fsck -fy` command to check the entire file system.
7171

72+
To check the file system, run the following command:
73+
74+
```bash
75+
fsck-fy
76+
```
77+
78+
For a read test, run the command below. Replace `sd(x)` with your own values.
79+
80+
```bash
81+
dd if=/dev/zero of=/dev/sd(x) bs=1M count=100
82+
```
83+
84+
For a write test, run the command below. Replace `sd(x)` with your own values
85+
7286
```bash
73-
stress-ng --metrics-brief --timeout 60s --hdd 0 --aggressive
87+
hdparm -t /dev/sd(x)
7488
```
7589

7690
## Go further
7791

78-
Join our [community of users](/links/community).
92+
Join our [community of users](/links/community).

pages/bare_metal_cloud/dedicated_servers/hardware-diagnose/guide.en-us.md

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "How to perform server hardware diagnostics in rescue mode"
33
excerpt: "Find out how to use the OVHcloud rescue mode and diagnostic tools to identify hardware failures on your dedicated server"
4-
updated: 2024-05-06
4+
updated: 2025-09-04
55
---
66

77
## Objective
@@ -69,10 +69,24 @@ To learn more about the output of this command and how to interpret it, consult
6969

7070
The partitions test is comprised of a disk access test and a file system check. The disk access test checks if the system can communicate with your server's hard drives. The file system check uses the `fsck -fy` command to check the entire file system.
7171

72+
To check the file system, run the following command:
73+
74+
```bash
75+
fsck-fy
76+
```
77+
78+
For a read test, run the command below. Replace `sd(x)` with your own values.
79+
80+
```bash
81+
dd if=/dev/zero of=/dev/sd(x) bs=1M count=100
82+
```
83+
84+
For a write test, run the command below. Replace `sd(x)` with your own values
85+
7286
```bash
73-
stress-ng --metrics-brief --timeout 60s --hdd 0 --aggressive
87+
hdparm -t /dev/sd(x)
7488
```
7589

7690
## Go further
7791

78-
Join our [community of users](/links/community).
92+
Join our [community of users](/links/community).

pages/bare_metal_cloud/dedicated_servers/hardware-diagnose/guide.es-es.md

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,24 @@ Para más información sobre el resultado de este comando y su interpretación,
7474

7575
La prueba de las particiones analiza el acceso al disco y verifica el sistema de archivos. Respecto al acceso al disco, la aplicación comprueba que el sistema pueda comunicarse con los discos duros del servidor. En cuanto a la verificación del sistema de archivos, la aplicación utiliza el comando `fsck -fy`.
7676

77+
Para comprobar el sistema de archivos, ejecute el siguiente comando:
78+
79+
```bash
80+
fsck -fy
81+
```
82+
83+
Para una prueba de reproducción, ejecute el siguiente comando. Sustituya `sd(x)` por sus propios valores.
84+
85+
```bash
86+
dd if=/dev/zero of=/dev/sd(x) bs=1M count=100
87+
```
88+
89+
Para una prueba de escritura, ejecute el siguiente comando. Sustituya `sd(x)` por sus propios valores
90+
7791
```bash
78-
stress-ng --metrics-brief --timeout 60s --hdd 0 --aggressive
92+
hdparm -t /dev/sd(x)
7993
```
8094

8195
## Más información
8296

83-
Interactúe con nuestra comunidad de usuarios en <https://community.ovh.com/en/>.
97+
Interactúe con nuestra [comunidad de usuarios](/links/community).

pages/bare_metal_cloud/dedicated_servers/hardware-diagnose/guide.es-us.md

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,24 @@ Para más información sobre el resultado de este comando y su interpretación,
7474

7575
La prueba de las particiones analiza el acceso al disco y verifica el sistema de archivos. Respecto al acceso al disco, la aplicación comprueba que el sistema pueda comunicarse con los discos duros del servidor. En cuanto a la verificación del sistema de archivos, la aplicación utiliza el comando `fsck -fy`.
7676

77+
Para comprobar el sistema de archivos, ejecute el siguiente comando:
78+
79+
```bash
80+
fsck -fy
81+
```
82+
83+
Para una prueba de reproducción, ejecute el siguiente comando. Sustituya `sd(x)` por sus propios valores.
84+
85+
```bash
86+
dd if=/dev/zero of=/dev/sd(x) bs=1M count=100
87+
```
88+
89+
Para una prueba de escritura, ejecute el siguiente comando. Sustituya `sd(x)` por sus propios valores
90+
7791
```bash
78-
stress-ng --metrics-brief --timeout 60s --hdd 0 --aggressive
92+
hdparm -t /dev/sd(x)
7993
```
8094

8195
## Más información
8296

83-
Interactúe con nuestra comunidad de usuarios en <https://community.ovh.com/en/>.
97+
Interactúe con nuestra [comunidad de usuarios](/links/community).

0 commit comments

Comments
 (0)