From 3794713e4f30e3b376b269a8d8237607b4de78b6 Mon Sep 17 00:00:00 2001 From: fabienOVH Date: Wed, 24 Sep 2025 14:57:17 +0200 Subject: [PATCH 01/12] Update about the password modification --- .../replacing-user-password/guide.fr-fr.md | 25 ++++++++++++++++--- 1 file changed, 21 insertions(+), 4 deletions(-) diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.fr-fr.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.fr-fr.md index 3250b97ed82..e3e10e6c783 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.fr-fr.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.fr-fr.md @@ -1,7 +1,7 @@ --- title: "Comment récupérer l'accès au serveur en cas de perte du mot de passe de l'utilisateur" excerpt: "Découvrez comment configurer un nouveau mot de passe pour un compte utilisateur sur un système d'exploitation GNU/Linux avec le mode rescue OVHcloud" -updated: 2024-02-19 +updated: 2025-09-24 --- ## Objectif @@ -66,12 +66,22 @@ chroot /mnt/ ### Étape 2 : réinitialiser le mot de passe de l'utilisateur -Remarque : sur une distribution GNU/Linux, **une invite de mot de passe n'affiche pas vos entrées clavier**. +> [!primary] +> +> Sur une distribution GNU/Linux, **une invite de mot de passe n'affiche pas vos entrées clavier**. -Changez le mot de passe de l'utilisateur avec la commande suivante (remplacez `username` par le nom réel du compte utilisateur) : +Avant de changer le mot de passe de l'utilisateur, **vérifiez sur quel compte vous êtes connecté** : ```bash -passwd username +whoami +``` + +Exemples de sortie : `debian`, `ubuntu`, `user1`, etc. + +Si c’est bien le compte qui s'affiche que vous voulez modifier, changez le mot de passe avec la commande suivante : + +```bash +passwd ``` ```text @@ -80,6 +90,13 @@ Retype new password: passwd: password updated successfully ``` +Si ce n’est pas le bon compte, déconnectez-vous puis reconnectez-vous en SSH avec l’utilisateur cible, et seulement ensuite changez son mot de passe. + +> [!warning] +> +> La commande `passwd` sans argument modifie le mot de passe du compte affiché par `whoami`. +Vérifiez toujours l’utilisateur courant avant d'éxécuter cette commande. + Pensez à utiliser le mode de démarrage **normal** de votre serveur lorsque vous le redémarrez depuis votre [espace client OVHcloud](/links/manager). Consultez le [guide du mode rescue](#step1) si nécessaire. From eac289e2c6c9795c22fd73a2c624c8360fbe52e4 Mon Sep 17 00:00:00 2001 From: fabienOVH Date: Wed, 24 Sep 2025 15:00:11 +0200 Subject: [PATCH 02/12] minor update --- .../dedicated_servers/replacing-user-password/guide.fr-fr.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.fr-fr.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.fr-fr.md index e3e10e6c783..1f770f93e48 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.fr-fr.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.fr-fr.md @@ -78,7 +78,7 @@ whoami Exemples de sortie : `debian`, `ubuntu`, `user1`, etc. -Si c’est bien le compte qui s'affiche que vous voulez modifier, changez le mot de passe avec la commande suivante : +Si c’est bien le compte affiché que vous souhaitez modifier, changez le mot de passe avec la commande suivante : ```bash passwd @@ -95,7 +95,7 @@ Si ce n’est pas le bon compte, déconnectez-vous puis reconnectez-vous en SSH > [!warning] > > La commande `passwd` sans argument modifie le mot de passe du compte affiché par `whoami`. -Vérifiez toujours l’utilisateur courant avant d'éxécuter cette commande. +Vérifiez toujours l’utilisateur courant avant d'exécuter cette commande. Pensez à utiliser le mode de démarrage **normal** de votre serveur lorsque vous le redémarrez depuis votre [espace client OVHcloud](/links/manager). From dfad28a701b32f98f47030648faaf920c2110382 Mon Sep 17 00:00:00 2001 From: fabienOVH Date: Wed, 24 Sep 2025 15:20:55 +0200 Subject: [PATCH 03/12] english version --- .../replacing-user-password/guide.en-asia.md | 29 +++++++++++++++---- .../replacing-user-password/guide.en-au.md | 29 +++++++++++++++---- .../replacing-user-password/guide.en-ca.md | 29 +++++++++++++++---- .../replacing-user-password/guide.en-gb.md | 29 +++++++++++++++---- .../replacing-user-password/guide.en-ie.md | 29 +++++++++++++++---- .../replacing-user-password/guide.en-sg.md | 29 +++++++++++++++---- .../replacing-user-password/guide.en-us.md | 29 +++++++++++++++---- .../replacing-user-password/guide.fr-ca.md | 25 +++++++++++++--- 8 files changed, 182 insertions(+), 46 deletions(-) diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-asia.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-asia.md index e2a756b89ca..56ddc6eab3d 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-asia.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-asia.md @@ -1,7 +1,7 @@ --- title: How to recover server access if your user password is lost excerpt: Find out how to configure a new password for a user account on a GNU/Linux operating system with the OVHcloud rescue mode -updated: 2024-02-19 +updated: 2025-09-24 --- @@ -66,20 +66,37 @@ chroot /mnt/ ### Step 2: Reset the user password -Note: On a GNU/Linux distribution, **a password prompt will not display your keyboard inputs**. +> [!primary] +> +> On a GNU/Linux distribution, **a password prompt will not display your keyboard inputs**. -Change the user password with the following command (replace `username` with the actual name of the user account): +Before changing the user password, **check which account you are logged in to**: ```bash -passwd username +whoami +``` + +Output examples: `debian`, `ubuntu`, `user1`, etc. + +If you would like to change the password for the account displayed, change it with the following command: + +```bash +passwd ``` ```text -New password: +New password: Retype new password: -passwd: password updated successfully +passwd: password updated ``` +If this is not the right account, log out and then log in again via SSH with the target user, and only then change their password. + +> [!warning] +> +> The `passwd` command without any arguments modifies the password of the account displayed by `whoami`. +Always check the current user before running this command. + Remember to use the regular boot mode of your server when restarting it in your [OVHcloud Control Panel](/links/manager). Refer to the corresponding [rescue mode guide](#step1) if necessary. diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-au.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-au.md index e2a756b89ca..56ddc6eab3d 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-au.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-au.md @@ -1,7 +1,7 @@ --- title: How to recover server access if your user password is lost excerpt: Find out how to configure a new password for a user account on a GNU/Linux operating system with the OVHcloud rescue mode -updated: 2024-02-19 +updated: 2025-09-24 --- @@ -66,20 +66,37 @@ chroot /mnt/ ### Step 2: Reset the user password -Note: On a GNU/Linux distribution, **a password prompt will not display your keyboard inputs**. +> [!primary] +> +> On a GNU/Linux distribution, **a password prompt will not display your keyboard inputs**. -Change the user password with the following command (replace `username` with the actual name of the user account): +Before changing the user password, **check which account you are logged in to**: ```bash -passwd username +whoami +``` + +Output examples: `debian`, `ubuntu`, `user1`, etc. + +If you would like to change the password for the account displayed, change it with the following command: + +```bash +passwd ``` ```text -New password: +New password: Retype new password: -passwd: password updated successfully +passwd: password updated ``` +If this is not the right account, log out and then log in again via SSH with the target user, and only then change their password. + +> [!warning] +> +> The `passwd` command without any arguments modifies the password of the account displayed by `whoami`. +Always check the current user before running this command. + Remember to use the regular boot mode of your server when restarting it in your [OVHcloud Control Panel](/links/manager). Refer to the corresponding [rescue mode guide](#step1) if necessary. diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-ca.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-ca.md index e2a756b89ca..56ddc6eab3d 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-ca.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-ca.md @@ -1,7 +1,7 @@ --- title: How to recover server access if your user password is lost excerpt: Find out how to configure a new password for a user account on a GNU/Linux operating system with the OVHcloud rescue mode -updated: 2024-02-19 +updated: 2025-09-24 --- @@ -66,20 +66,37 @@ chroot /mnt/ ### Step 2: Reset the user password -Note: On a GNU/Linux distribution, **a password prompt will not display your keyboard inputs**. +> [!primary] +> +> On a GNU/Linux distribution, **a password prompt will not display your keyboard inputs**. -Change the user password with the following command (replace `username` with the actual name of the user account): +Before changing the user password, **check which account you are logged in to**: ```bash -passwd username +whoami +``` + +Output examples: `debian`, `ubuntu`, `user1`, etc. + +If you would like to change the password for the account displayed, change it with the following command: + +```bash +passwd ``` ```text -New password: +New password: Retype new password: -passwd: password updated successfully +passwd: password updated ``` +If this is not the right account, log out and then log in again via SSH with the target user, and only then change their password. + +> [!warning] +> +> The `passwd` command without any arguments modifies the password of the account displayed by `whoami`. +Always check the current user before running this command. + Remember to use the regular boot mode of your server when restarting it in your [OVHcloud Control Panel](/links/manager). Refer to the corresponding [rescue mode guide](#step1) if necessary. diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-gb.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-gb.md index e2a756b89ca..56ddc6eab3d 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-gb.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-gb.md @@ -1,7 +1,7 @@ --- title: How to recover server access if your user password is lost excerpt: Find out how to configure a new password for a user account on a GNU/Linux operating system with the OVHcloud rescue mode -updated: 2024-02-19 +updated: 2025-09-24 --- @@ -66,20 +66,37 @@ chroot /mnt/ ### Step 2: Reset the user password -Note: On a GNU/Linux distribution, **a password prompt will not display your keyboard inputs**. +> [!primary] +> +> On a GNU/Linux distribution, **a password prompt will not display your keyboard inputs**. -Change the user password with the following command (replace `username` with the actual name of the user account): +Before changing the user password, **check which account you are logged in to**: ```bash -passwd username +whoami +``` + +Output examples: `debian`, `ubuntu`, `user1`, etc. + +If you would like to change the password for the account displayed, change it with the following command: + +```bash +passwd ``` ```text -New password: +New password: Retype new password: -passwd: password updated successfully +passwd: password updated ``` +If this is not the right account, log out and then log in again via SSH with the target user, and only then change their password. + +> [!warning] +> +> The `passwd` command without any arguments modifies the password of the account displayed by `whoami`. +Always check the current user before running this command. + Remember to use the regular boot mode of your server when restarting it in your [OVHcloud Control Panel](/links/manager). Refer to the corresponding [rescue mode guide](#step1) if necessary. diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-ie.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-ie.md index e2a756b89ca..56ddc6eab3d 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-ie.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-ie.md @@ -1,7 +1,7 @@ --- title: How to recover server access if your user password is lost excerpt: Find out how to configure a new password for a user account on a GNU/Linux operating system with the OVHcloud rescue mode -updated: 2024-02-19 +updated: 2025-09-24 --- @@ -66,20 +66,37 @@ chroot /mnt/ ### Step 2: Reset the user password -Note: On a GNU/Linux distribution, **a password prompt will not display your keyboard inputs**. +> [!primary] +> +> On a GNU/Linux distribution, **a password prompt will not display your keyboard inputs**. -Change the user password with the following command (replace `username` with the actual name of the user account): +Before changing the user password, **check which account you are logged in to**: ```bash -passwd username +whoami +``` + +Output examples: `debian`, `ubuntu`, `user1`, etc. + +If you would like to change the password for the account displayed, change it with the following command: + +```bash +passwd ``` ```text -New password: +New password: Retype new password: -passwd: password updated successfully +passwd: password updated ``` +If this is not the right account, log out and then log in again via SSH with the target user, and only then change their password. + +> [!warning] +> +> The `passwd` command without any arguments modifies the password of the account displayed by `whoami`. +Always check the current user before running this command. + Remember to use the regular boot mode of your server when restarting it in your [OVHcloud Control Panel](/links/manager). Refer to the corresponding [rescue mode guide](#step1) if necessary. diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-sg.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-sg.md index e2a756b89ca..56ddc6eab3d 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-sg.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-sg.md @@ -1,7 +1,7 @@ --- title: How to recover server access if your user password is lost excerpt: Find out how to configure a new password for a user account on a GNU/Linux operating system with the OVHcloud rescue mode -updated: 2024-02-19 +updated: 2025-09-24 --- @@ -66,20 +66,37 @@ chroot /mnt/ ### Step 2: Reset the user password -Note: On a GNU/Linux distribution, **a password prompt will not display your keyboard inputs**. +> [!primary] +> +> On a GNU/Linux distribution, **a password prompt will not display your keyboard inputs**. -Change the user password with the following command (replace `username` with the actual name of the user account): +Before changing the user password, **check which account you are logged in to**: ```bash -passwd username +whoami +``` + +Output examples: `debian`, `ubuntu`, `user1`, etc. + +If you would like to change the password for the account displayed, change it with the following command: + +```bash +passwd ``` ```text -New password: +New password: Retype new password: -passwd: password updated successfully +passwd: password updated ``` +If this is not the right account, log out and then log in again via SSH with the target user, and only then change their password. + +> [!warning] +> +> The `passwd` command without any arguments modifies the password of the account displayed by `whoami`. +Always check the current user before running this command. + Remember to use the regular boot mode of your server when restarting it in your [OVHcloud Control Panel](/links/manager). Refer to the corresponding [rescue mode guide](#step1) if necessary. diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-us.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-us.md index e2a756b89ca..56ddc6eab3d 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-us.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-us.md @@ -1,7 +1,7 @@ --- title: How to recover server access if your user password is lost excerpt: Find out how to configure a new password for a user account on a GNU/Linux operating system with the OVHcloud rescue mode -updated: 2024-02-19 +updated: 2025-09-24 --- @@ -66,20 +66,37 @@ chroot /mnt/ ### Step 2: Reset the user password -Note: On a GNU/Linux distribution, **a password prompt will not display your keyboard inputs**. +> [!primary] +> +> On a GNU/Linux distribution, **a password prompt will not display your keyboard inputs**. -Change the user password with the following command (replace `username` with the actual name of the user account): +Before changing the user password, **check which account you are logged in to**: ```bash -passwd username +whoami +``` + +Output examples: `debian`, `ubuntu`, `user1`, etc. + +If you would like to change the password for the account displayed, change it with the following command: + +```bash +passwd ``` ```text -New password: +New password: Retype new password: -passwd: password updated successfully +passwd: password updated ``` +If this is not the right account, log out and then log in again via SSH with the target user, and only then change their password. + +> [!warning] +> +> The `passwd` command without any arguments modifies the password of the account displayed by `whoami`. +Always check the current user before running this command. + Remember to use the regular boot mode of your server when restarting it in your [OVHcloud Control Panel](/links/manager). Refer to the corresponding [rescue mode guide](#step1) if necessary. diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.fr-ca.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.fr-ca.md index 3250b97ed82..1f770f93e48 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.fr-ca.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.fr-ca.md @@ -1,7 +1,7 @@ --- title: "Comment récupérer l'accès au serveur en cas de perte du mot de passe de l'utilisateur" excerpt: "Découvrez comment configurer un nouveau mot de passe pour un compte utilisateur sur un système d'exploitation GNU/Linux avec le mode rescue OVHcloud" -updated: 2024-02-19 +updated: 2025-09-24 --- ## Objectif @@ -66,12 +66,22 @@ chroot /mnt/ ### Étape 2 : réinitialiser le mot de passe de l'utilisateur -Remarque : sur une distribution GNU/Linux, **une invite de mot de passe n'affiche pas vos entrées clavier**. +> [!primary] +> +> Sur une distribution GNU/Linux, **une invite de mot de passe n'affiche pas vos entrées clavier**. -Changez le mot de passe de l'utilisateur avec la commande suivante (remplacez `username` par le nom réel du compte utilisateur) : +Avant de changer le mot de passe de l'utilisateur, **vérifiez sur quel compte vous êtes connecté** : ```bash -passwd username +whoami +``` + +Exemples de sortie : `debian`, `ubuntu`, `user1`, etc. + +Si c’est bien le compte affiché que vous souhaitez modifier, changez le mot de passe avec la commande suivante : + +```bash +passwd ``` ```text @@ -80,6 +90,13 @@ Retype new password: passwd: password updated successfully ``` +Si ce n’est pas le bon compte, déconnectez-vous puis reconnectez-vous en SSH avec l’utilisateur cible, et seulement ensuite changez son mot de passe. + +> [!warning] +> +> La commande `passwd` sans argument modifie le mot de passe du compte affiché par `whoami`. +Vérifiez toujours l’utilisateur courant avant d'exécuter cette commande. + Pensez à utiliser le mode de démarrage **normal** de votre serveur lorsque vous le redémarrez depuis votre [espace client OVHcloud](/links/manager). Consultez le [guide du mode rescue](#step1) si nécessaire. From 50b8d87e7b46be4c831d07e3f28f98a9f589d57b Mon Sep 17 00:00:00 2001 From: benchbzh Date: Wed, 24 Sep 2025 17:16:41 +0200 Subject: [PATCH 04/12] Proofreading before translations --- .../replacing-user-password/guide.en-asia.md | 18 ++++++++++-------- .../replacing-user-password/guide.en-au.md | 18 ++++++++++-------- .../replacing-user-password/guide.en-ca.md | 18 ++++++++++-------- .../replacing-user-password/guide.en-gb.md | 18 ++++++++++-------- .../replacing-user-password/guide.en-ie.md | 18 ++++++++++-------- .../replacing-user-password/guide.en-sg.md | 18 ++++++++++-------- .../replacing-user-password/guide.en-us.md | 18 ++++++++++-------- .../replacing-user-password/guide.fr-ca.md | 18 ++++++++++-------- .../replacing-user-password/guide.fr-fr.md | 18 ++++++++++-------- 9 files changed, 90 insertions(+), 72 deletions(-) diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-asia.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-asia.md index 56ddc6eab3d..70dcdb2f894 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-asia.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-asia.md @@ -66,11 +66,7 @@ chroot /mnt/ ### Step 2: Reset the user password -> [!primary] -> -> On a GNU/Linux distribution, **a password prompt will not display your keyboard inputs**. - -Before changing the user password, **check which account you are logged in to**: +Before changing the user's password, **check which account you are logged in with** using the command below: ```bash whoami @@ -78,24 +74,30 @@ whoami Output examples: `debian`, `ubuntu`, `user1`, etc. -If you would like to change the password for the account displayed, change it with the following command: +If the displayed account is the correct user account, use the following command to change his password: ```bash passwd ``` +Enter the new password: + ```text New password: Retype new password: passwd: password updated ``` -If this is not the right account, log out and then log in again via SSH with the target user, and only then change their password. +> [!primary] +> +> On a GNU/Linux distribution, **a password prompt will not display your keyboard inputs**. + +If this is not the right account, log out and reconnect via SSH with the target user user, then change his password. > [!warning] > > The `passwd` command without any arguments modifies the password of the account displayed by `whoami`. -Always check the current user before running this command. +> Always check the current user before running this command. Remember to use the regular boot mode of your server when restarting it in your [OVHcloud Control Panel](/links/manager). diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-au.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-au.md index 56ddc6eab3d..70dcdb2f894 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-au.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-au.md @@ -66,11 +66,7 @@ chroot /mnt/ ### Step 2: Reset the user password -> [!primary] -> -> On a GNU/Linux distribution, **a password prompt will not display your keyboard inputs**. - -Before changing the user password, **check which account you are logged in to**: +Before changing the user's password, **check which account you are logged in with** using the command below: ```bash whoami @@ -78,24 +74,30 @@ whoami Output examples: `debian`, `ubuntu`, `user1`, etc. -If you would like to change the password for the account displayed, change it with the following command: +If the displayed account is the correct user account, use the following command to change his password: ```bash passwd ``` +Enter the new password: + ```text New password: Retype new password: passwd: password updated ``` -If this is not the right account, log out and then log in again via SSH with the target user, and only then change their password. +> [!primary] +> +> On a GNU/Linux distribution, **a password prompt will not display your keyboard inputs**. + +If this is not the right account, log out and reconnect via SSH with the target user user, then change his password. > [!warning] > > The `passwd` command without any arguments modifies the password of the account displayed by `whoami`. -Always check the current user before running this command. +> Always check the current user before running this command. Remember to use the regular boot mode of your server when restarting it in your [OVHcloud Control Panel](/links/manager). diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-ca.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-ca.md index 56ddc6eab3d..70dcdb2f894 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-ca.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-ca.md @@ -66,11 +66,7 @@ chroot /mnt/ ### Step 2: Reset the user password -> [!primary] -> -> On a GNU/Linux distribution, **a password prompt will not display your keyboard inputs**. - -Before changing the user password, **check which account you are logged in to**: +Before changing the user's password, **check which account you are logged in with** using the command below: ```bash whoami @@ -78,24 +74,30 @@ whoami Output examples: `debian`, `ubuntu`, `user1`, etc. -If you would like to change the password for the account displayed, change it with the following command: +If the displayed account is the correct user account, use the following command to change his password: ```bash passwd ``` +Enter the new password: + ```text New password: Retype new password: passwd: password updated ``` -If this is not the right account, log out and then log in again via SSH with the target user, and only then change their password. +> [!primary] +> +> On a GNU/Linux distribution, **a password prompt will not display your keyboard inputs**. + +If this is not the right account, log out and reconnect via SSH with the target user user, then change his password. > [!warning] > > The `passwd` command without any arguments modifies the password of the account displayed by `whoami`. -Always check the current user before running this command. +> Always check the current user before running this command. Remember to use the regular boot mode of your server when restarting it in your [OVHcloud Control Panel](/links/manager). diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-gb.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-gb.md index 56ddc6eab3d..70dcdb2f894 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-gb.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-gb.md @@ -66,11 +66,7 @@ chroot /mnt/ ### Step 2: Reset the user password -> [!primary] -> -> On a GNU/Linux distribution, **a password prompt will not display your keyboard inputs**. - -Before changing the user password, **check which account you are logged in to**: +Before changing the user's password, **check which account you are logged in with** using the command below: ```bash whoami @@ -78,24 +74,30 @@ whoami Output examples: `debian`, `ubuntu`, `user1`, etc. -If you would like to change the password for the account displayed, change it with the following command: +If the displayed account is the correct user account, use the following command to change his password: ```bash passwd ``` +Enter the new password: + ```text New password: Retype new password: passwd: password updated ``` -If this is not the right account, log out and then log in again via SSH with the target user, and only then change their password. +> [!primary] +> +> On a GNU/Linux distribution, **a password prompt will not display your keyboard inputs**. + +If this is not the right account, log out and reconnect via SSH with the target user user, then change his password. > [!warning] > > The `passwd` command without any arguments modifies the password of the account displayed by `whoami`. -Always check the current user before running this command. +> Always check the current user before running this command. Remember to use the regular boot mode of your server when restarting it in your [OVHcloud Control Panel](/links/manager). diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-ie.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-ie.md index 56ddc6eab3d..70dcdb2f894 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-ie.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-ie.md @@ -66,11 +66,7 @@ chroot /mnt/ ### Step 2: Reset the user password -> [!primary] -> -> On a GNU/Linux distribution, **a password prompt will not display your keyboard inputs**. - -Before changing the user password, **check which account you are logged in to**: +Before changing the user's password, **check which account you are logged in with** using the command below: ```bash whoami @@ -78,24 +74,30 @@ whoami Output examples: `debian`, `ubuntu`, `user1`, etc. -If you would like to change the password for the account displayed, change it with the following command: +If the displayed account is the correct user account, use the following command to change his password: ```bash passwd ``` +Enter the new password: + ```text New password: Retype new password: passwd: password updated ``` -If this is not the right account, log out and then log in again via SSH with the target user, and only then change their password. +> [!primary] +> +> On a GNU/Linux distribution, **a password prompt will not display your keyboard inputs**. + +If this is not the right account, log out and reconnect via SSH with the target user user, then change his password. > [!warning] > > The `passwd` command without any arguments modifies the password of the account displayed by `whoami`. -Always check the current user before running this command. +> Always check the current user before running this command. Remember to use the regular boot mode of your server when restarting it in your [OVHcloud Control Panel](/links/manager). diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-sg.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-sg.md index 56ddc6eab3d..70dcdb2f894 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-sg.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-sg.md @@ -66,11 +66,7 @@ chroot /mnt/ ### Step 2: Reset the user password -> [!primary] -> -> On a GNU/Linux distribution, **a password prompt will not display your keyboard inputs**. - -Before changing the user password, **check which account you are logged in to**: +Before changing the user's password, **check which account you are logged in with** using the command below: ```bash whoami @@ -78,24 +74,30 @@ whoami Output examples: `debian`, `ubuntu`, `user1`, etc. -If you would like to change the password for the account displayed, change it with the following command: +If the displayed account is the correct user account, use the following command to change his password: ```bash passwd ``` +Enter the new password: + ```text New password: Retype new password: passwd: password updated ``` -If this is not the right account, log out and then log in again via SSH with the target user, and only then change their password. +> [!primary] +> +> On a GNU/Linux distribution, **a password prompt will not display your keyboard inputs**. + +If this is not the right account, log out and reconnect via SSH with the target user user, then change his password. > [!warning] > > The `passwd` command without any arguments modifies the password of the account displayed by `whoami`. -Always check the current user before running this command. +> Always check the current user before running this command. Remember to use the regular boot mode of your server when restarting it in your [OVHcloud Control Panel](/links/manager). diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-us.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-us.md index 56ddc6eab3d..70dcdb2f894 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-us.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-us.md @@ -66,11 +66,7 @@ chroot /mnt/ ### Step 2: Reset the user password -> [!primary] -> -> On a GNU/Linux distribution, **a password prompt will not display your keyboard inputs**. - -Before changing the user password, **check which account you are logged in to**: +Before changing the user's password, **check which account you are logged in with** using the command below: ```bash whoami @@ -78,24 +74,30 @@ whoami Output examples: `debian`, `ubuntu`, `user1`, etc. -If you would like to change the password for the account displayed, change it with the following command: +If the displayed account is the correct user account, use the following command to change his password: ```bash passwd ``` +Enter the new password: + ```text New password: Retype new password: passwd: password updated ``` -If this is not the right account, log out and then log in again via SSH with the target user, and only then change their password. +> [!primary] +> +> On a GNU/Linux distribution, **a password prompt will not display your keyboard inputs**. + +If this is not the right account, log out and reconnect via SSH with the target user user, then change his password. > [!warning] > > The `passwd` command without any arguments modifies the password of the account displayed by `whoami`. -Always check the current user before running this command. +> Always check the current user before running this command. Remember to use the regular boot mode of your server when restarting it in your [OVHcloud Control Panel](/links/manager). diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.fr-ca.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.fr-ca.md index 1f770f93e48..8a238fdb262 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.fr-ca.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.fr-ca.md @@ -66,11 +66,7 @@ chroot /mnt/ ### Étape 2 : réinitialiser le mot de passe de l'utilisateur -> [!primary] -> -> Sur une distribution GNU/Linux, **une invite de mot de passe n'affiche pas vos entrées clavier**. - -Avant de changer le mot de passe de l'utilisateur, **vérifiez sur quel compte vous êtes connecté** : +Avant de changer le mot de passe de l'utilisateur, **vérifiez sur quel compte vous êtes connecté** grâce à la commande ci-dessous : ```bash whoami @@ -78,24 +74,30 @@ whoami Exemples de sortie : `debian`, `ubuntu`, `user1`, etc. -Si c’est bien le compte affiché que vous souhaitez modifier, changez le mot de passe avec la commande suivante : +Si le compte affiché est bien celui de l'utilisateur concerné, utilisez la commande suivante pour modifier son mot de passe : ```bash passwd ``` +Renseignez le nouveau mot de passe : + ```text New password: Retype new password: passwd: password updated successfully ``` -Si ce n’est pas le bon compte, déconnectez-vous puis reconnectez-vous en SSH avec l’utilisateur cible, et seulement ensuite changez son mot de passe. +> [!primary] +> +> Sur une distribution GNU/Linux, **une invite de mot de passe n'affiche pas vos entrées clavier**. + +Si ce n’est pas le bon compte, déconnectez-vous puis reconnectez-vous en SSH avec l’utilisateur cible, puis modifiez son mot de passe. > [!warning] > > La commande `passwd` sans argument modifie le mot de passe du compte affiché par `whoami`. -Vérifiez toujours l’utilisateur courant avant d'exécuter cette commande. +> Vérifiez toujours l’utilisateur courant avant d'exécuter cette commande. Pensez à utiliser le mode de démarrage **normal** de votre serveur lorsque vous le redémarrez depuis votre [espace client OVHcloud](/links/manager). diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.fr-fr.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.fr-fr.md index 1f770f93e48..8a238fdb262 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.fr-fr.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.fr-fr.md @@ -66,11 +66,7 @@ chroot /mnt/ ### Étape 2 : réinitialiser le mot de passe de l'utilisateur -> [!primary] -> -> Sur une distribution GNU/Linux, **une invite de mot de passe n'affiche pas vos entrées clavier**. - -Avant de changer le mot de passe de l'utilisateur, **vérifiez sur quel compte vous êtes connecté** : +Avant de changer le mot de passe de l'utilisateur, **vérifiez sur quel compte vous êtes connecté** grâce à la commande ci-dessous : ```bash whoami @@ -78,24 +74,30 @@ whoami Exemples de sortie : `debian`, `ubuntu`, `user1`, etc. -Si c’est bien le compte affiché que vous souhaitez modifier, changez le mot de passe avec la commande suivante : +Si le compte affiché est bien celui de l'utilisateur concerné, utilisez la commande suivante pour modifier son mot de passe : ```bash passwd ``` +Renseignez le nouveau mot de passe : + ```text New password: Retype new password: passwd: password updated successfully ``` -Si ce n’est pas le bon compte, déconnectez-vous puis reconnectez-vous en SSH avec l’utilisateur cible, et seulement ensuite changez son mot de passe. +> [!primary] +> +> Sur une distribution GNU/Linux, **une invite de mot de passe n'affiche pas vos entrées clavier**. + +Si ce n’est pas le bon compte, déconnectez-vous puis reconnectez-vous en SSH avec l’utilisateur cible, puis modifiez son mot de passe. > [!warning] > > La commande `passwd` sans argument modifie le mot de passe du compte affiché par `whoami`. -Vérifiez toujours l’utilisateur courant avant d'exécuter cette commande. +> Vérifiez toujours l’utilisateur courant avant d'exécuter cette commande. Pensez à utiliser le mode de démarrage **normal** de votre serveur lorsque vous le redémarrez depuis votre [espace client OVHcloud](/links/manager). From 0a9832d7126a8daf3918453635a835717c9a8a09 Mon Sep 17 00:00:00 2001 From: benchbzh Date: Thu, 25 Sep 2025 16:15:35 +0200 Subject: [PATCH 05/12] translations --- .../replacing-user-password/guide.de-de.md | 25 ++++++++++++++++--- .../replacing-user-password/guide.es-es.md | 25 ++++++++++++++++--- .../replacing-user-password/guide.es-us.md | 25 ++++++++++++++++--- .../replacing-user-password/guide.it-it.md | 25 ++++++++++++++++--- .../replacing-user-password/guide.pl-pl.md | 25 ++++++++++++++++--- .../replacing-user-password/guide.pt-pt.md | 25 ++++++++++++++++--- 6 files changed, 132 insertions(+), 18 deletions(-) diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.de-de.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.de-de.md index c6470670ef1..239e9285e15 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.de-de.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.de-de.md @@ -71,20 +71,39 @@ chroot /mnt/ ### Schritt 2: Benutzer-Passwort zurücksetzen -Hinweis: Bei einer GNU/Linux-Distribution **zeigt eine Passworteingabeaufforderung keine Tastatureingaben an**. +Bevor Sie das Passwort des Benutzers ändern, **stellen Sie sicher, auf welchem Konto Sie angemeldet sind**, mithilfe des folgenden Befehls: -Ändern Sie das Passwort des Benutzers mit folgendem Befehl (ersetzen Sie `username` durch den Namen des Benutzer-Accounts): +```bash +whoami +``` + +Beispiele für die Ausgabe: `debian`, `ubuntu`, `user1`, etc. + +Wenn das angezeigte Konto das richtige ist, verwenden Sie den folgenden Befehl, um das Passwort zu ändern: ```bash -passwd username +passwd ``` +Geben Sie das neue Passwort ein: + ```text New password: Retype new password: passwd: password updated successfully ``` +> [!primary] +> +> Auf einer GNU/Linux-Distribution **wird bei der Passwortabfrage keine Tastatureingabe angezeigt**. + +Falls es sich nicht um das richtige Konto handelt, melden Sie sich ab und verbinden Sie sich erneut per SSH mit dem Zielbenutzer, bevor Sie das Passwort ändern. + +> [!warning] +> +> Der Befehl `passwd` ohne Argument ändert das Passwort des Kontos, das durch `whoami` angezeigt wird. +> Stellen Sie immer sicher, welcher aktuelle Benutzer vorliegt, bevor Sie diesen Befehl ausführen. + Denken Sie daran, den regulären Startmodus zu verwenden, wenn Sie Ihren Server im [OVHcloud Kundencenter](/links/manager) neu starten. Folgen Sie bei Bedarf der passenden [Anleitung zum Rescue-Modus](#step1). diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.es-es.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.es-es.md index 05f2ad69e81..363ba779791 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.es-es.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.es-es.md @@ -71,20 +71,39 @@ chroot /mnt/ ### Paso 2: restablecer la contraseña del usuario -Nota: en una distribución GNU/Linux, **una petición de contraseña no muestra las entradas de teclado**. +Antes de cambiar la contraseña del usuario, **verifique en qué cuenta está conectado** mediante el siguiente comando: -Cambie la contraseña del usuario con el siguiente comando (sustituya `username` por el nombre real de la cuenta de usuario): +```bash +whoami +``` + +Ejemplos de salida: `debian`, `ubuntu`, `user1`, etc. + +Si la cuenta mostrada es la correcta, utilice el siguiente comando para modificar su contraseña: ```bash -passwd username +passwd ``` +Introduzca la nueva contraseña: + ```text New password: Retype new password: passwd: password updated successfully ``` +> [!primary] +> +> En una distribución GNU/Linux, **una solicitud de contraseña no muestra las teclas que introduce**. + +Si no es la cuenta correcta, desconéctese y vuelva a conectarse por SSH con el usuario objetivo, y luego cambie su contraseña. + +> [!warning] +> +> El comando `passwd` sin argumentos modifica la contraseña de la cuenta mostrada por `whoami`. +> Siempre verifique el usuario actual antes de ejecutar este comando. + Recuerde utilizar el modo de arranque **normal** del servidor al reiniciarlo desde el [área de cliente de OVHcloud](/links/manager). Consulte la [guía del modo de rescate](#step1) si es necesario. diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.es-us.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.es-us.md index 20976dd2a5e..96c32db6c4b 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.es-us.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.es-us.md @@ -71,20 +71,39 @@ chroot /mnt/ ### Paso 2: restablecer la contraseña del usuario -Nota: en una distribución GNU/Linux, **una petición de contraseña no muestra las entradas de teclado**. +Antes de cambiar la contraseña del usuario, **verifique en qué cuenta está conectado** mediante el siguiente comando: -Cambie la contraseña del usuario con el siguiente comando (sustituya `username` por el nombre real de la cuenta de usuario): +```bash +whoami +``` + +Ejemplos de salida: `debian`, `ubuntu`, `user1`, etc. + +Si la cuenta mostrada es la correcta, utilice el siguiente comando para modificar su contraseña: ```bash -passwd username +passwd ``` +Introduzca la nueva contraseña: + ```text New password: Retype new password: passwd: password updated successfully ``` +> [!primary] +> +> En una distribución GNU/Linux, **una solicitud de contraseña no muestra las teclas que introduce**. + +Si no es la cuenta correcta, desconéctese y vuelva a conectarse por SSH con el usuario objetivo, y luego cambie su contraseña. + +> [!warning] +> +> El comando `passwd` sin argumentos modifica la contraseña de la cuenta mostrada por `whoami`. +> Siempre verifique el usuario actual antes de ejecutar este comando. + Recuerde utilizar el modo de arranque **normal** del servidor al reiniciarlo desde el [área de cliente de OVHcloud](/links/manager). Consulte la [guía del modo de rescate](#step1) si es necesario. diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.it-it.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.it-it.md index dfcdcb43766..1cbdd660fe0 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.it-it.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.it-it.md @@ -71,20 +71,39 @@ chroot /mnt/ ### Step 2: reimposta la password dell'utente -Nota: in una distribuzione GNU/Linux, **il prompt della password non visualizza le voci della tastiera**. +Prima di modificare la password dell'utente, **verifica su quale account sei connesso** utilizzando il comando seguente: -Modifica la password dell’utente con questo comando (sostituisci `username` con il nome reale dell’account utente): +```bash +whoami +``` + +Esempi di output: `debian`, `ubuntu`, `user1`, ecc. + +Se l'account visualizzato è corretto, utilizza il comando seguente per modificare la password: ```bash -passwd username +passwd ``` +Inserisci la nuova password: + ```text New password: Retype new password: passwd: password updated successfully ``` +> [!primary] +> +> Su una distribuzione GNU/Linux, **una richiesta di password non visualizza le tue tastiere**. + +Se non è l'account corretto, disconnettiti e riconnettiti tramite SSH con l'utente obiettivo, quindi modifica la sua password. + +> [!warning] +> +> Il comando `passwd` senza argomenti modifica la password dell'account visualizzato da `whoami`. +> Verifica sempre l'utente corrente prima di eseguire questo comando. + Utilizza la modalità di avvio **normal** del tuo server quando lo riavvii dallo [Spazio Cliente OVHcloud](/links/manager). Se necessario, consulta la [guida del Rescue mode](#step1). diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.pl-pl.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.pl-pl.md index d7b9c232933..071848a145c 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.pl-pl.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.pl-pl.md @@ -71,20 +71,39 @@ chroot /mnt/ ### Etap 2: resetowanie hasła użytkownika -Uwaga: w dystrybucji GNU/Linux **wiersz hasła nie wyświetla wpisów klawiaturowych**. +Przed zmianą hasła użytkownika **sprawdź, na jakim koncie jesteś zalogowany**, używając poniższego polecenia: -Zmień hasło użytkownika za pomocą następującego polecenia (zastąp `username` rzeczywistą nazwą konta użytkownika): +```bash +whoami +``` + +Przykłady wyjścia: `debian`, `ubuntu`, `user1`, itp. + +Jeśli wyświetlony konto jest poprawne, użyj poniższego polecenia, aby zmienić hasło: ```bash -passwd username +passwd ``` +Wprowadź nowe hasło: + ```text New password: Retype new password: passwd: password updated successfully ``` +> [!primary] +> +> W przypadku dystrybucji GNU/Linux **prośba o hasło nie wyświetla wpisywanych znaków**. + +Jeśli to nie jest poprawne konto, wyloguj się i ponownie zaloguj się przez SSH z użytkownikiem docelowym, a następnie zmień jego hasło. + +> [!warning] +> +> Polecenie `passwd` bez argumentów zmienia hasło konta wyświetlanego przez `whoami`. +> Zawsze sprawdzaj aktualnego użytkownika przed wykonaniem tego polecenia. + Pamiętaj, aby podczas restartu serwera z poziomu [Panelu klienta OVHcloud](/links/manager) użyć trybu uruchamiania **normalnego** Twojego serwera. W razie potrzeby sprawdź przewodnik [Tryb ratunkowy](#step1). diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.pt-pt.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.pt-pt.md index 597e4ef4656..b20c6720a20 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.pt-pt.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.pt-pt.md @@ -70,20 +70,39 @@ chroot /mnt/ ### Etapa 2: reinicializar a palavra-passe do utilizador -Nota: numa distribuição GNU/Linux, **uma linha de comandos de palavra-passe não apresenta as suas entradas de teclado**. +Antes de alterar a senha do usuário, **verifique em qual conta você está conectado** usando o seguinte comando: -Altere a palavra-passe do utilizador com o seguinte comando (substitua `username` pelo nome real da conta de utilizador): +```bash +whoami +``` + +Exemplos de saída: `debian`, `ubuntu`, `user1`, etc. + +Se a conta exibida estiver correta, use o seguinte comando para modificar sua senha: ```bash -passwd username +passwd ``` +Insira a nova senha: + ```text New password: Retype new password: passwd: password updated successfully ``` +> [!primary] +> +> Em uma distribuição GNU/Linux, **uma solicitação de senha não exibe as teclas digitadas**. + +Se não for a conta correta, desconecte-se e reconecte-se via SSH com o usuário alvo, em seguida altere sua senha. + +> [!warning] +> +> O comando `passwd` sem argumentos modifica a senha da conta exibida por `whoami`. +> Sempre verifique o usuário atual antes de executar este comando. + Lembre-se de utilizar o modo de arranque **normal** do seu servidor quando o reiniciar a partir da sua [Área de Cliente OVHcloud](/links/manager). Consulte [manual do modo rescue](#step1) se necessário. From 05607e8cfba8118acf4e9c98e23001bf2a4de300 Mon Sep 17 00:00:00 2001 From: fabienOVH Date: Mon, 29 Sep 2025 10:17:21 +0200 Subject: [PATCH 06/12] update --- .../replacing-user-password/guide.fr-fr.md | 36 +++++++------------ 1 file changed, 12 insertions(+), 24 deletions(-) diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.fr-fr.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.fr-fr.md index 8a238fdb262..35d442338d1 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.fr-fr.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.fr-fr.md @@ -1,7 +1,7 @@ --- title: "Comment récupérer l'accès au serveur en cas de perte du mot de passe de l'utilisateur" excerpt: "Découvrez comment configurer un nouveau mot de passe pour un compte utilisateur sur un système d'exploitation GNU/Linux avec le mode rescue OVHcloud" -updated: 2025-09-24 +updated: 2025-09-29 --- ## Objectif @@ -64,40 +64,28 @@ La commande exacte dépend du point de montage utilisé. Par exemple, si vous av chroot /mnt/ ``` -### Étape 2 : réinitialiser le mot de passe de l'utilisateur +### Étape 2 : identifier le(s) compte(s) utilisateur et réinitialiser le mot de passe -Avant de changer le mot de passe de l'utilisateur, **vérifiez sur quel compte vous êtes connecté** grâce à la commande ci-dessous : +Après avoir monté la partition et exécuté `chroot /mnt` (ou l'équivalent), vous disposez des privilèges **root** sur le système monté. -```bash -whoami -``` - -Exemples de sortie : `debian`, `ubuntu`, `user1`, etc. - -Si le compte affiché est bien celui de l'utilisateur concerné, utilisez la commande suivante pour modifier son mot de passe : +Avant de modifier un mot de passe, **identifiez les comptes existants** : ```bash -passwd +cat /etc/passwd ``` -Renseignez le nouveau mot de passe : +Pour changer le mot de passe d’un compte précis (ex. `user1`), spécifiez toujours le nom d’utilisateur : -```text -New password: -Retype new password: -passwd: password updated successfully +```bash +passwd user1 +# New password: +# Retype new password: +# passwd: password updated successfully ``` -> [!primary] -> -> Sur une distribution GNU/Linux, **une invite de mot de passe n'affiche pas vos entrées clavier**. - -Si ce n’est pas le bon compte, déconnectez-vous puis reconnectez-vous en SSH avec l’utilisateur cible, puis modifiez son mot de passe. - > [!warning] > -> La commande `passwd` sans argument modifie le mot de passe du compte affiché par `whoami`. -> Vérifiez toujours l’utilisateur courant avant d'exécuter cette commande. +> Évitez `passwd` sans argument : cette commande modifie le mot de passe du compte courant (souvent `root` après `chroot`). Indiquez systématiquement `passwd `. Pensez à utiliser le mode de démarrage **normal** de votre serveur lorsque vous le redémarrez depuis votre [espace client OVHcloud](/links/manager). From 658d4836db5dcee09b8f01e1cd26a1990483a801 Mon Sep 17 00:00:00 2001 From: benchbzh Date: Wed, 1 Oct 2025 14:36:58 +0200 Subject: [PATCH 07/12] proofreading & translations all languages --- .../replacing-user-password/guide.de-de.md | 43 ++++++------------ .../replacing-user-password/guide.en-asia.md | 45 +++++++------------ .../replacing-user-password/guide.en-au.md | 45 +++++++------------ .../replacing-user-password/guide.en-ca.md | 45 +++++++------------ .../replacing-user-password/guide.en-gb.md | 45 +++++++------------ .../replacing-user-password/guide.en-ie.md | 45 +++++++------------ .../replacing-user-password/guide.en-sg.md | 45 +++++++------------ .../replacing-user-password/guide.en-us.md | 45 +++++++------------ .../replacing-user-password/guide.es-es.md | 43 ++++++------------ .../replacing-user-password/guide.es-us.md | 41 ++++++----------- .../replacing-user-password/guide.fr-ca.md | 38 ++++++---------- .../replacing-user-password/guide.fr-fr.md | 14 +++--- .../replacing-user-password/guide.it-it.md | 44 ++++++------------ .../replacing-user-password/guide.pl-pl.md | 44 ++++++------------ .../replacing-user-password/guide.pt-pt.md | 42 ++++++----------- .../replacing-user-password/meta.yaml | 1 + 16 files changed, 225 insertions(+), 400 deletions(-) diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.de-de.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.de-de.md index 239e9285e15..e0b6fc89eee 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.de-de.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.de-de.md @@ -4,10 +4,6 @@ excerpt: "Erfahren Sie hier, wie Sie mit dem OVHcloud Rescue-Modus ein neues Pas updated: 2024-02-19 --- -> [!primary] -> Diese Übersetzung wurde durch unseren Partner SYSTRAN automatisch erstellt. In manchen Fällen können ungenaue Formulierungen verwendet worden sein, z.B. bei der Beschriftung von Schaltflächen oder technischen Details. Bitte ziehen Sie im Zweifelsfall die englische oder französische Fassung der Anleitung zu Rate. Möchten Sie mithelfen, diese Übersetzung zu verbessern? Dann nutzen Sie dazu bitte den Button "Beitragen" auf dieser Seite. -> - ## Ziel Ohne eine alternative Authentifizierungsmethode oder einen anderen Benutzer-Account bedeutet der Verlust Ihres Passworts, dass Sie sich nicht mehr auf regulärem Weg bei Ihrem Server einloggen können. @@ -39,8 +35,8 @@ Lesen Sie ggf. auch unsere Anleitung zu den ersten Schritten für Ihren Dienst: - Für einen [Dedicated Server der Reihe **Eco**](/pages/bare_metal_cloud/dedicated_servers/getting-started-with-dedicated-server-eco) - Für einen [VPS](/pages/bare_metal_cloud/virtual_private_servers/starting_with_a_vps) - > [!warning] +> > OVHcloud stellt Ihnen Dienstleistungen zur Verfügung, für deren Konfiguration und Verwaltung Sie die alleinige Verantwortung tragen. Es liegt somit bei Ihnen, sicherzustellen, dass diese ordnungsgemäß funktionieren. > > Wir stellen Ihnen diese Anleitung zur Verfügung, um Ihnen bei der Bewältigung alltäglicher Verwaltungsaufgaben zu helfen. Dennoch empfehlen wir Ihnen, einen [spezialisierten Dienstleister](/links/partner) zu kontaktieren oder Ihre Fragen an die [OVHcloud Community](https://community.ovh.com/en/) zu richten, wenn Sie Schwierigkeiten oder Zweifel hinsichtlich der Verwaltung, Nutzung oder Implementierung der Dienste auf einem Server haben. @@ -48,7 +44,7 @@ Lesen Sie ggf. auch unsere Anleitung zu den ersten Schritten für Ihren Dienst: -### Schritt 1: Server im Rescue-Modus neu starten +### Schritt 1 - Server im Rescue-Modus neu starten Folgen Sie den Schritten unserer Anleitungen zum Rescue-Modus, um sich mit Ihrem Server zu verbinden und Ihre Partitionen zu mounten: @@ -69,40 +65,29 @@ Der exakte Befehl hängt vom verwendeten Mountpunkt ab. Wenn Sie Ihre Partition chroot /mnt/ ``` -### Schritt 2: Benutzer-Passwort zurücksetzen - -Bevor Sie das Passwort des Benutzers ändern, **stellen Sie sicher, auf welchem Konto Sie angemeldet sind**, mithilfe des folgenden Befehls: - -```bash -whoami -``` +### Schritt 2 - Benutzerkonten identifizieren und das Passwort zurücksetzen -Beispiele für die Ausgabe: `debian`, `ubuntu`, `user1`, etc. +Nachdem Sie die Partition eingehängt und `chroot /mnt` (oder den entsprechenden Befehl) ausgeführt haben, verfügen Sie über **root**-Berechtigungen auf dem eingehängten System. -Wenn das angezeigte Konto das richtige ist, verwenden Sie den folgenden Befehl, um das Passwort zu ändern: +Falls erforderlich, identifizieren Sie vor der Änderung eines Passworts **vorhandene Benutzerkonten** mit dem folgenden Befehl: ```bash -passwd +cat /etc/passwd ``` -Geben Sie das neue Passwort ein: +Um das Passwort eines bestimmten Kontos zu ändern (z. B. **user1**), geben Sie immer den Benutzernamen an: -```text -New password: -Retype new password: -passwd: password updated successfully +```bash +passwd user1 +# New password: +# Retype new password: +# passwd: password updated successfully ``` > [!primary] > -> Auf einer GNU/Linux-Distribution **wird bei der Passwortabfrage keine Tastatureingabe angezeigt**. - -Falls es sich nicht um das richtige Konto handelt, melden Sie sich ab und verbinden Sie sich erneut per SSH mit dem Zielbenutzer, bevor Sie das Passwort ändern. - -> [!warning] -> -> Der Befehl `passwd` ohne Argument ändert das Passwort des Kontos, das durch `whoami` angezeigt wird. -> Stellen Sie immer sicher, welcher aktuelle Benutzer vorliegt, bevor Sie diesen Befehl ausführen. +> Vermeiden Sie es, den Befehl `passwd` ohne Argumente auszuführen: Dieser Befehl ändert das Passwort des aktuellen Kontos (was nach der Ausführung von `chroot` oft **root** ist). +> Geben Sie immer `passwd ` an. Denken Sie daran, den regulären Startmodus zu verwenden, wenn Sie Ihren Server im [OVHcloud Kundencenter](/links/manager) neu starten. diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-asia.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-asia.md index 70dcdb2f894..c7eeeb20cc6 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-asia.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-asia.md @@ -4,7 +4,6 @@ excerpt: Find out how to configure a new password for a user account on a GNU/Li updated: 2025-09-24 --- - ## Objective Without a different mode of authentication or another user account, losing your password means you can no longer log in to your server in a regular way. @@ -24,6 +23,7 @@ To recover access to a server that you log in to with an SSH key, refer to our g - Access to the [OVHcloud Control Panel](/links/manager) > [!primary] +> > This guide is not applicable for **Windows** server installations. Please refer to our guides on [How to change the admin password on a Windows dedicated server](/pages/bare_metal_cloud/dedicated_servers/rcw-changing-admin-password-on-windows) and [How to change the admin password on a Windows VPS](/pages/bare_metal_cloud/virtual_private_servers/resetting_a_windows_password). > @@ -36,14 +36,15 @@ Be sure to consult our "Getting started" guides as well: - For a [VPS](/pages/bare_metal_cloud/virtual_private_servers/starting_with_a_vps) > [!warning] ->OVHcloud is providing you with services for which you are responsible, with regard to their configuration and management. It is therefore your responsibility to ensure that they function correctly. > ->This guide is designed to assist you in common tasks as much as possible. Nevertheless, we recommend that you contact a [specialist service provider](/links/partner) or reach out to [our community](https://community.ovh.com/en/) if you face difficulties or doubts concerning the administration, usage or implementation of services on a server. +> OVHcloud is providing you with services for which you are responsible, with regard to their configuration and management. It is therefore your responsibility to ensure that they function correctly. +> +> This guide is designed to assist you in common tasks as much as possible. Nevertheless, we recommend that you contact a [specialist service provider](/links/partner) or reach out to [our community](https://community.ovh.com/en/) if you face difficulties or doubts concerning the administration, usage or implementation of services on a server. > -### Step 1: Restart the server into rescue mode +### Step 1 - Restart the server into rescue mode Use the corresponding rescue mode guide to connect to your server and mount your partitions: @@ -64,40 +65,29 @@ The exact command depends on the mountpoint you used. For example, if you have m chroot /mnt/ ``` -### Step 2: Reset the user password - -Before changing the user's password, **check which account you are logged in with** using the command below: - -```bash -whoami -``` +### Step 2 - Identify the user account(s) and reset the password -Output examples: `debian`, `ubuntu`, `user1`, etc. +After mounting the partition and running `chroot /mnt` (or the equivalent), you have **root** privileges on the mounted system. -If the displayed account is the correct user account, use the following command to change his password: +If needed, before changing a password, **identify existing accounts** using the following command: ```bash -passwd +cat /etc/passwd ``` -Enter the new password: +To change the password for a specific account (e.g., **user1**), always specify the username: -```text -New password: -Retype new password: -passwd: password updated +```bash +passwd user1 +# New password: +# Retype new password: +# passwd: password updated successfully ``` > [!primary] > -> On a GNU/Linux distribution, **a password prompt will not display your keyboard inputs**. - -If this is not the right account, log out and reconnect via SSH with the target user user, then change his password. - -> [!warning] -> -> The `passwd` command without any arguments modifies the password of the account displayed by `whoami`. -> Always check the current user before running this command. +> Avoid running the `passwd` command without arguments: This command modifies the password of the current account (which is often **root** after running `chroot`). +> Always specify `passwd `. Remember to use the regular boot mode of your server when restarting it in your [OVHcloud Control Panel](/links/manager). @@ -105,7 +95,6 @@ Refer to the corresponding [rescue mode guide](#step1) if necessary. You have now access to the server with your new password. - ## Go further [Creating and using SSH keys](/pages/bare_metal_cloud/dedicated_servers/creating-ssh-keys-dedicated) diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-au.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-au.md index 70dcdb2f894..c7eeeb20cc6 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-au.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-au.md @@ -4,7 +4,6 @@ excerpt: Find out how to configure a new password for a user account on a GNU/Li updated: 2025-09-24 --- - ## Objective Without a different mode of authentication or another user account, losing your password means you can no longer log in to your server in a regular way. @@ -24,6 +23,7 @@ To recover access to a server that you log in to with an SSH key, refer to our g - Access to the [OVHcloud Control Panel](/links/manager) > [!primary] +> > This guide is not applicable for **Windows** server installations. Please refer to our guides on [How to change the admin password on a Windows dedicated server](/pages/bare_metal_cloud/dedicated_servers/rcw-changing-admin-password-on-windows) and [How to change the admin password on a Windows VPS](/pages/bare_metal_cloud/virtual_private_servers/resetting_a_windows_password). > @@ -36,14 +36,15 @@ Be sure to consult our "Getting started" guides as well: - For a [VPS](/pages/bare_metal_cloud/virtual_private_servers/starting_with_a_vps) > [!warning] ->OVHcloud is providing you with services for which you are responsible, with regard to their configuration and management. It is therefore your responsibility to ensure that they function correctly. > ->This guide is designed to assist you in common tasks as much as possible. Nevertheless, we recommend that you contact a [specialist service provider](/links/partner) or reach out to [our community](https://community.ovh.com/en/) if you face difficulties or doubts concerning the administration, usage or implementation of services on a server. +> OVHcloud is providing you with services for which you are responsible, with regard to their configuration and management. It is therefore your responsibility to ensure that they function correctly. +> +> This guide is designed to assist you in common tasks as much as possible. Nevertheless, we recommend that you contact a [specialist service provider](/links/partner) or reach out to [our community](https://community.ovh.com/en/) if you face difficulties or doubts concerning the administration, usage or implementation of services on a server. > -### Step 1: Restart the server into rescue mode +### Step 1 - Restart the server into rescue mode Use the corresponding rescue mode guide to connect to your server and mount your partitions: @@ -64,40 +65,29 @@ The exact command depends on the mountpoint you used. For example, if you have m chroot /mnt/ ``` -### Step 2: Reset the user password - -Before changing the user's password, **check which account you are logged in with** using the command below: - -```bash -whoami -``` +### Step 2 - Identify the user account(s) and reset the password -Output examples: `debian`, `ubuntu`, `user1`, etc. +After mounting the partition and running `chroot /mnt` (or the equivalent), you have **root** privileges on the mounted system. -If the displayed account is the correct user account, use the following command to change his password: +If needed, before changing a password, **identify existing accounts** using the following command: ```bash -passwd +cat /etc/passwd ``` -Enter the new password: +To change the password for a specific account (e.g., **user1**), always specify the username: -```text -New password: -Retype new password: -passwd: password updated +```bash +passwd user1 +# New password: +# Retype new password: +# passwd: password updated successfully ``` > [!primary] > -> On a GNU/Linux distribution, **a password prompt will not display your keyboard inputs**. - -If this is not the right account, log out and reconnect via SSH with the target user user, then change his password. - -> [!warning] -> -> The `passwd` command without any arguments modifies the password of the account displayed by `whoami`. -> Always check the current user before running this command. +> Avoid running the `passwd` command without arguments: This command modifies the password of the current account (which is often **root** after running `chroot`). +> Always specify `passwd `. Remember to use the regular boot mode of your server when restarting it in your [OVHcloud Control Panel](/links/manager). @@ -105,7 +95,6 @@ Refer to the corresponding [rescue mode guide](#step1) if necessary. You have now access to the server with your new password. - ## Go further [Creating and using SSH keys](/pages/bare_metal_cloud/dedicated_servers/creating-ssh-keys-dedicated) diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-ca.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-ca.md index 70dcdb2f894..c7eeeb20cc6 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-ca.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-ca.md @@ -4,7 +4,6 @@ excerpt: Find out how to configure a new password for a user account on a GNU/Li updated: 2025-09-24 --- - ## Objective Without a different mode of authentication or another user account, losing your password means you can no longer log in to your server in a regular way. @@ -24,6 +23,7 @@ To recover access to a server that you log in to with an SSH key, refer to our g - Access to the [OVHcloud Control Panel](/links/manager) > [!primary] +> > This guide is not applicable for **Windows** server installations. Please refer to our guides on [How to change the admin password on a Windows dedicated server](/pages/bare_metal_cloud/dedicated_servers/rcw-changing-admin-password-on-windows) and [How to change the admin password on a Windows VPS](/pages/bare_metal_cloud/virtual_private_servers/resetting_a_windows_password). > @@ -36,14 +36,15 @@ Be sure to consult our "Getting started" guides as well: - For a [VPS](/pages/bare_metal_cloud/virtual_private_servers/starting_with_a_vps) > [!warning] ->OVHcloud is providing you with services for which you are responsible, with regard to their configuration and management. It is therefore your responsibility to ensure that they function correctly. > ->This guide is designed to assist you in common tasks as much as possible. Nevertheless, we recommend that you contact a [specialist service provider](/links/partner) or reach out to [our community](https://community.ovh.com/en/) if you face difficulties or doubts concerning the administration, usage or implementation of services on a server. +> OVHcloud is providing you with services for which you are responsible, with regard to their configuration and management. It is therefore your responsibility to ensure that they function correctly. +> +> This guide is designed to assist you in common tasks as much as possible. Nevertheless, we recommend that you contact a [specialist service provider](/links/partner) or reach out to [our community](https://community.ovh.com/en/) if you face difficulties or doubts concerning the administration, usage or implementation of services on a server. > -### Step 1: Restart the server into rescue mode +### Step 1 - Restart the server into rescue mode Use the corresponding rescue mode guide to connect to your server and mount your partitions: @@ -64,40 +65,29 @@ The exact command depends on the mountpoint you used. For example, if you have m chroot /mnt/ ``` -### Step 2: Reset the user password - -Before changing the user's password, **check which account you are logged in with** using the command below: - -```bash -whoami -``` +### Step 2 - Identify the user account(s) and reset the password -Output examples: `debian`, `ubuntu`, `user1`, etc. +After mounting the partition and running `chroot /mnt` (or the equivalent), you have **root** privileges on the mounted system. -If the displayed account is the correct user account, use the following command to change his password: +If needed, before changing a password, **identify existing accounts** using the following command: ```bash -passwd +cat /etc/passwd ``` -Enter the new password: +To change the password for a specific account (e.g., **user1**), always specify the username: -```text -New password: -Retype new password: -passwd: password updated +```bash +passwd user1 +# New password: +# Retype new password: +# passwd: password updated successfully ``` > [!primary] > -> On a GNU/Linux distribution, **a password prompt will not display your keyboard inputs**. - -If this is not the right account, log out and reconnect via SSH with the target user user, then change his password. - -> [!warning] -> -> The `passwd` command without any arguments modifies the password of the account displayed by `whoami`. -> Always check the current user before running this command. +> Avoid running the `passwd` command without arguments: This command modifies the password of the current account (which is often **root** after running `chroot`). +> Always specify `passwd `. Remember to use the regular boot mode of your server when restarting it in your [OVHcloud Control Panel](/links/manager). @@ -105,7 +95,6 @@ Refer to the corresponding [rescue mode guide](#step1) if necessary. You have now access to the server with your new password. - ## Go further [Creating and using SSH keys](/pages/bare_metal_cloud/dedicated_servers/creating-ssh-keys-dedicated) diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-gb.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-gb.md index 70dcdb2f894..c7eeeb20cc6 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-gb.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-gb.md @@ -4,7 +4,6 @@ excerpt: Find out how to configure a new password for a user account on a GNU/Li updated: 2025-09-24 --- - ## Objective Without a different mode of authentication or another user account, losing your password means you can no longer log in to your server in a regular way. @@ -24,6 +23,7 @@ To recover access to a server that you log in to with an SSH key, refer to our g - Access to the [OVHcloud Control Panel](/links/manager) > [!primary] +> > This guide is not applicable for **Windows** server installations. Please refer to our guides on [How to change the admin password on a Windows dedicated server](/pages/bare_metal_cloud/dedicated_servers/rcw-changing-admin-password-on-windows) and [How to change the admin password on a Windows VPS](/pages/bare_metal_cloud/virtual_private_servers/resetting_a_windows_password). > @@ -36,14 +36,15 @@ Be sure to consult our "Getting started" guides as well: - For a [VPS](/pages/bare_metal_cloud/virtual_private_servers/starting_with_a_vps) > [!warning] ->OVHcloud is providing you with services for which you are responsible, with regard to their configuration and management. It is therefore your responsibility to ensure that they function correctly. > ->This guide is designed to assist you in common tasks as much as possible. Nevertheless, we recommend that you contact a [specialist service provider](/links/partner) or reach out to [our community](https://community.ovh.com/en/) if you face difficulties or doubts concerning the administration, usage or implementation of services on a server. +> OVHcloud is providing you with services for which you are responsible, with regard to their configuration and management. It is therefore your responsibility to ensure that they function correctly. +> +> This guide is designed to assist you in common tasks as much as possible. Nevertheless, we recommend that you contact a [specialist service provider](/links/partner) or reach out to [our community](https://community.ovh.com/en/) if you face difficulties or doubts concerning the administration, usage or implementation of services on a server. > -### Step 1: Restart the server into rescue mode +### Step 1 - Restart the server into rescue mode Use the corresponding rescue mode guide to connect to your server and mount your partitions: @@ -64,40 +65,29 @@ The exact command depends on the mountpoint you used. For example, if you have m chroot /mnt/ ``` -### Step 2: Reset the user password - -Before changing the user's password, **check which account you are logged in with** using the command below: - -```bash -whoami -``` +### Step 2 - Identify the user account(s) and reset the password -Output examples: `debian`, `ubuntu`, `user1`, etc. +After mounting the partition and running `chroot /mnt` (or the equivalent), you have **root** privileges on the mounted system. -If the displayed account is the correct user account, use the following command to change his password: +If needed, before changing a password, **identify existing accounts** using the following command: ```bash -passwd +cat /etc/passwd ``` -Enter the new password: +To change the password for a specific account (e.g., **user1**), always specify the username: -```text -New password: -Retype new password: -passwd: password updated +```bash +passwd user1 +# New password: +# Retype new password: +# passwd: password updated successfully ``` > [!primary] > -> On a GNU/Linux distribution, **a password prompt will not display your keyboard inputs**. - -If this is not the right account, log out and reconnect via SSH with the target user user, then change his password. - -> [!warning] -> -> The `passwd` command without any arguments modifies the password of the account displayed by `whoami`. -> Always check the current user before running this command. +> Avoid running the `passwd` command without arguments: This command modifies the password of the current account (which is often **root** after running `chroot`). +> Always specify `passwd `. Remember to use the regular boot mode of your server when restarting it in your [OVHcloud Control Panel](/links/manager). @@ -105,7 +95,6 @@ Refer to the corresponding [rescue mode guide](#step1) if necessary. You have now access to the server with your new password. - ## Go further [Creating and using SSH keys](/pages/bare_metal_cloud/dedicated_servers/creating-ssh-keys-dedicated) diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-ie.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-ie.md index 70dcdb2f894..c7eeeb20cc6 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-ie.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-ie.md @@ -4,7 +4,6 @@ excerpt: Find out how to configure a new password for a user account on a GNU/Li updated: 2025-09-24 --- - ## Objective Without a different mode of authentication or another user account, losing your password means you can no longer log in to your server in a regular way. @@ -24,6 +23,7 @@ To recover access to a server that you log in to with an SSH key, refer to our g - Access to the [OVHcloud Control Panel](/links/manager) > [!primary] +> > This guide is not applicable for **Windows** server installations. Please refer to our guides on [How to change the admin password on a Windows dedicated server](/pages/bare_metal_cloud/dedicated_servers/rcw-changing-admin-password-on-windows) and [How to change the admin password on a Windows VPS](/pages/bare_metal_cloud/virtual_private_servers/resetting_a_windows_password). > @@ -36,14 +36,15 @@ Be sure to consult our "Getting started" guides as well: - For a [VPS](/pages/bare_metal_cloud/virtual_private_servers/starting_with_a_vps) > [!warning] ->OVHcloud is providing you with services for which you are responsible, with regard to their configuration and management. It is therefore your responsibility to ensure that they function correctly. > ->This guide is designed to assist you in common tasks as much as possible. Nevertheless, we recommend that you contact a [specialist service provider](/links/partner) or reach out to [our community](https://community.ovh.com/en/) if you face difficulties or doubts concerning the administration, usage or implementation of services on a server. +> OVHcloud is providing you with services for which you are responsible, with regard to their configuration and management. It is therefore your responsibility to ensure that they function correctly. +> +> This guide is designed to assist you in common tasks as much as possible. Nevertheless, we recommend that you contact a [specialist service provider](/links/partner) or reach out to [our community](https://community.ovh.com/en/) if you face difficulties or doubts concerning the administration, usage or implementation of services on a server. > -### Step 1: Restart the server into rescue mode +### Step 1 - Restart the server into rescue mode Use the corresponding rescue mode guide to connect to your server and mount your partitions: @@ -64,40 +65,29 @@ The exact command depends on the mountpoint you used. For example, if you have m chroot /mnt/ ``` -### Step 2: Reset the user password - -Before changing the user's password, **check which account you are logged in with** using the command below: - -```bash -whoami -``` +### Step 2 - Identify the user account(s) and reset the password -Output examples: `debian`, `ubuntu`, `user1`, etc. +After mounting the partition and running `chroot /mnt` (or the equivalent), you have **root** privileges on the mounted system. -If the displayed account is the correct user account, use the following command to change his password: +If needed, before changing a password, **identify existing accounts** using the following command: ```bash -passwd +cat /etc/passwd ``` -Enter the new password: +To change the password for a specific account (e.g., **user1**), always specify the username: -```text -New password: -Retype new password: -passwd: password updated +```bash +passwd user1 +# New password: +# Retype new password: +# passwd: password updated successfully ``` > [!primary] > -> On a GNU/Linux distribution, **a password prompt will not display your keyboard inputs**. - -If this is not the right account, log out and reconnect via SSH with the target user user, then change his password. - -> [!warning] -> -> The `passwd` command without any arguments modifies the password of the account displayed by `whoami`. -> Always check the current user before running this command. +> Avoid running the `passwd` command without arguments: This command modifies the password of the current account (which is often **root** after running `chroot`). +> Always specify `passwd `. Remember to use the regular boot mode of your server when restarting it in your [OVHcloud Control Panel](/links/manager). @@ -105,7 +95,6 @@ Refer to the corresponding [rescue mode guide](#step1) if necessary. You have now access to the server with your new password. - ## Go further [Creating and using SSH keys](/pages/bare_metal_cloud/dedicated_servers/creating-ssh-keys-dedicated) diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-sg.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-sg.md index 70dcdb2f894..c7eeeb20cc6 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-sg.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-sg.md @@ -4,7 +4,6 @@ excerpt: Find out how to configure a new password for a user account on a GNU/Li updated: 2025-09-24 --- - ## Objective Without a different mode of authentication or another user account, losing your password means you can no longer log in to your server in a regular way. @@ -24,6 +23,7 @@ To recover access to a server that you log in to with an SSH key, refer to our g - Access to the [OVHcloud Control Panel](/links/manager) > [!primary] +> > This guide is not applicable for **Windows** server installations. Please refer to our guides on [How to change the admin password on a Windows dedicated server](/pages/bare_metal_cloud/dedicated_servers/rcw-changing-admin-password-on-windows) and [How to change the admin password on a Windows VPS](/pages/bare_metal_cloud/virtual_private_servers/resetting_a_windows_password). > @@ -36,14 +36,15 @@ Be sure to consult our "Getting started" guides as well: - For a [VPS](/pages/bare_metal_cloud/virtual_private_servers/starting_with_a_vps) > [!warning] ->OVHcloud is providing you with services for which you are responsible, with regard to their configuration and management. It is therefore your responsibility to ensure that they function correctly. > ->This guide is designed to assist you in common tasks as much as possible. Nevertheless, we recommend that you contact a [specialist service provider](/links/partner) or reach out to [our community](https://community.ovh.com/en/) if you face difficulties or doubts concerning the administration, usage or implementation of services on a server. +> OVHcloud is providing you with services for which you are responsible, with regard to their configuration and management. It is therefore your responsibility to ensure that they function correctly. +> +> This guide is designed to assist you in common tasks as much as possible. Nevertheless, we recommend that you contact a [specialist service provider](/links/partner) or reach out to [our community](https://community.ovh.com/en/) if you face difficulties or doubts concerning the administration, usage or implementation of services on a server. > -### Step 1: Restart the server into rescue mode +### Step 1 - Restart the server into rescue mode Use the corresponding rescue mode guide to connect to your server and mount your partitions: @@ -64,40 +65,29 @@ The exact command depends on the mountpoint you used. For example, if you have m chroot /mnt/ ``` -### Step 2: Reset the user password - -Before changing the user's password, **check which account you are logged in with** using the command below: - -```bash -whoami -``` +### Step 2 - Identify the user account(s) and reset the password -Output examples: `debian`, `ubuntu`, `user1`, etc. +After mounting the partition and running `chroot /mnt` (or the equivalent), you have **root** privileges on the mounted system. -If the displayed account is the correct user account, use the following command to change his password: +If needed, before changing a password, **identify existing accounts** using the following command: ```bash -passwd +cat /etc/passwd ``` -Enter the new password: +To change the password for a specific account (e.g., **user1**), always specify the username: -```text -New password: -Retype new password: -passwd: password updated +```bash +passwd user1 +# New password: +# Retype new password: +# passwd: password updated successfully ``` > [!primary] > -> On a GNU/Linux distribution, **a password prompt will not display your keyboard inputs**. - -If this is not the right account, log out and reconnect via SSH with the target user user, then change his password. - -> [!warning] -> -> The `passwd` command without any arguments modifies the password of the account displayed by `whoami`. -> Always check the current user before running this command. +> Avoid running the `passwd` command without arguments: This command modifies the password of the current account (which is often **root** after running `chroot`). +> Always specify `passwd `. Remember to use the regular boot mode of your server when restarting it in your [OVHcloud Control Panel](/links/manager). @@ -105,7 +95,6 @@ Refer to the corresponding [rescue mode guide](#step1) if necessary. You have now access to the server with your new password. - ## Go further [Creating and using SSH keys](/pages/bare_metal_cloud/dedicated_servers/creating-ssh-keys-dedicated) diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-us.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-us.md index 70dcdb2f894..c7eeeb20cc6 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-us.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-us.md @@ -4,7 +4,6 @@ excerpt: Find out how to configure a new password for a user account on a GNU/Li updated: 2025-09-24 --- - ## Objective Without a different mode of authentication or another user account, losing your password means you can no longer log in to your server in a regular way. @@ -24,6 +23,7 @@ To recover access to a server that you log in to with an SSH key, refer to our g - Access to the [OVHcloud Control Panel](/links/manager) > [!primary] +> > This guide is not applicable for **Windows** server installations. Please refer to our guides on [How to change the admin password on a Windows dedicated server](/pages/bare_metal_cloud/dedicated_servers/rcw-changing-admin-password-on-windows) and [How to change the admin password on a Windows VPS](/pages/bare_metal_cloud/virtual_private_servers/resetting_a_windows_password). > @@ -36,14 +36,15 @@ Be sure to consult our "Getting started" guides as well: - For a [VPS](/pages/bare_metal_cloud/virtual_private_servers/starting_with_a_vps) > [!warning] ->OVHcloud is providing you with services for which you are responsible, with regard to their configuration and management. It is therefore your responsibility to ensure that they function correctly. > ->This guide is designed to assist you in common tasks as much as possible. Nevertheless, we recommend that you contact a [specialist service provider](/links/partner) or reach out to [our community](https://community.ovh.com/en/) if you face difficulties or doubts concerning the administration, usage or implementation of services on a server. +> OVHcloud is providing you with services for which you are responsible, with regard to their configuration and management. It is therefore your responsibility to ensure that they function correctly. +> +> This guide is designed to assist you in common tasks as much as possible. Nevertheless, we recommend that you contact a [specialist service provider](/links/partner) or reach out to [our community](https://community.ovh.com/en/) if you face difficulties or doubts concerning the administration, usage or implementation of services on a server. > -### Step 1: Restart the server into rescue mode +### Step 1 - Restart the server into rescue mode Use the corresponding rescue mode guide to connect to your server and mount your partitions: @@ -64,40 +65,29 @@ The exact command depends on the mountpoint you used. For example, if you have m chroot /mnt/ ``` -### Step 2: Reset the user password - -Before changing the user's password, **check which account you are logged in with** using the command below: - -```bash -whoami -``` +### Step 2 - Identify the user account(s) and reset the password -Output examples: `debian`, `ubuntu`, `user1`, etc. +After mounting the partition and running `chroot /mnt` (or the equivalent), you have **root** privileges on the mounted system. -If the displayed account is the correct user account, use the following command to change his password: +If needed, before changing a password, **identify existing accounts** using the following command: ```bash -passwd +cat /etc/passwd ``` -Enter the new password: +To change the password for a specific account (e.g., **user1**), always specify the username: -```text -New password: -Retype new password: -passwd: password updated +```bash +passwd user1 +# New password: +# Retype new password: +# passwd: password updated successfully ``` > [!primary] > -> On a GNU/Linux distribution, **a password prompt will not display your keyboard inputs**. - -If this is not the right account, log out and reconnect via SSH with the target user user, then change his password. - -> [!warning] -> -> The `passwd` command without any arguments modifies the password of the account displayed by `whoami`. -> Always check the current user before running this command. +> Avoid running the `passwd` command without arguments: This command modifies the password of the current account (which is often **root** after running `chroot`). +> Always specify `passwd `. Remember to use the regular boot mode of your server when restarting it in your [OVHcloud Control Panel](/links/manager). @@ -105,7 +95,6 @@ Refer to the corresponding [rescue mode guide](#step1) if necessary. You have now access to the server with your new password. - ## Go further [Creating and using SSH keys](/pages/bare_metal_cloud/dedicated_servers/creating-ssh-keys-dedicated) diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.es-es.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.es-es.md index 363ba779791..fdc3502299a 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.es-es.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.es-es.md @@ -4,10 +4,6 @@ excerpt: "Cómo configurar una nueva contraseña para una cuenta de usuario en u updated: 2024-02-19 --- -> [!primary] -> Esta traducción ha sido generada de forma automática por nuestro partner SYSTRAN. En algunos casos puede contener términos imprecisos, como en las etiquetas de los botones o los detalles técnicos. En caso de duda, le recomendamos que consulte la versión inglesa o francesa de la guía. Si quiere ayudarnos a mejorar esta traducción, por favor, utilice el botón «Contribuir» de esta página. -> - ## Objetivo Sin otro modo de autenticación u otra cuenta de usuario, la pérdida de su contraseña significa que no podrá conectarse a su servidor de forma normal. @@ -47,7 +43,7 @@ No olvide consultar también nuestras guías de primeros pasos: -### Paso 1: reiniciar el servidor en modo de rescate +### Paso 1 - Reiniciar el servidor en modo de rescate Siga los pasos de nuestras guías sobre el modo de rescate para conectarse a su servidor y montar sus particiones: @@ -69,40 +65,29 @@ El comando exacto depende del punto de montaje utilizado. Por ejemplo, si ha mon chroot /mnt/ ``` -### Paso 2: restablecer la contraseña del usuario - -Antes de cambiar la contraseña del usuario, **verifique en qué cuenta está conectado** mediante el siguiente comando: - -```bash -whoami -``` +### Paso 2 - Identificar la(s) cuenta(s) de usuario y restablecer la contraseña -Ejemplos de salida: `debian`, `ubuntu`, `user1`, etc. +Después de montar la partición y ejecutar `chroot /mnt` (o el equivalente), dispone de privilegios **root** en el sistema montado. -Si la cuenta mostrada es la correcta, utilice el siguiente comando para modificar su contraseña: +Si es necesario, antes de modificar una contraseña, **identifique las cuentas existentes** con el siguiente comando: ```bash -passwd +cat /etc/passwd ``` -Introduzca la nueva contraseña: +Para cambiar la contraseña de una cuenta específica (por ejemplo: **user1**), siempre especifique el nombre de usuario: -```text -New password: -Retype new password: -passwd: password updated successfully +```bash +passwd user1 +# New password: +# Retype new password: +# passwd: password updated successfully ``` > [!primary] > -> En una distribución GNU/Linux, **una solicitud de contraseña no muestra las teclas que introduce**. - -Si no es la cuenta correcta, desconéctese y vuelva a conectarse por SSH con el usuario objetivo, y luego cambie su contraseña. - -> [!warning] -> -> El comando `passwd` sin argumentos modifica la contraseña de la cuenta mostrada por `whoami`. -> Siempre verifique el usuario actual antes de ejecutar este comando. +> Evite ejecutar el comando `passwd` sin argumentos: este comando modifica la contraseña de la cuenta actual (que suele ser **root** después de ejecutar `chroot`). +> Indiquez systématiquement `passwd `. Recuerde utilizar el modo de arranque **normal** del servidor al reiniciarlo desde el [área de cliente de OVHcloud](/links/manager). @@ -120,4 +105,4 @@ Ya puede acceder al servidor con su nueva contraseña. [Configuración de las cuentas de usuario y del acceso root en un servidor](/pages/bare_metal_cloud/dedicated_servers/changing_root_password_linux_ds) -Interactúe con nuestra comunidad de usuarios en . +Interactúe con nuestra comunidad de usuarios en . \ No newline at end of file diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.es-us.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.es-us.md index 96c32db6c4b..365733b06a2 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.es-us.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.es-us.md @@ -4,10 +4,6 @@ excerpt: "Cómo configurar una nueva contraseña para una cuenta de usuario en u updated: 2024-02-19 --- -> [!primary] -> Esta traducción ha sido generada de forma automática por nuestro partner SYSTRAN. En algunos casos puede contener términos imprecisos, como en las etiquetas de los botones o los detalles técnicos. En caso de duda, le recomendamos que consulte la versión inglesa o francesa de la guía. Si quiere ayudarnos a mejorar esta traducción, por favor, utilice el botón «Contribuir» de esta página. -> - ## Objetivo Sin otro modo de autenticación u otra cuenta de usuario, la pérdida de su contraseña significa que no podrá conectarse a su servidor de forma normal. @@ -47,7 +43,7 @@ No olvide consultar también nuestras guías de primeros pasos: -### Paso 1: reiniciar el servidor en modo de rescate +### Paso 1 - Reiniciar el servidor en modo de rescate Siga los pasos de nuestras guías sobre el modo de rescate para conectarse a su servidor y montar sus particiones: @@ -69,40 +65,29 @@ El comando exacto depende del punto de montaje utilizado. Por ejemplo, si ha mon chroot /mnt/ ``` -### Paso 2: restablecer la contraseña del usuario - -Antes de cambiar la contraseña del usuario, **verifique en qué cuenta está conectado** mediante el siguiente comando: - -```bash -whoami -``` +### Paso 2 - Identificar la(s) cuenta(s) de usuario y restablecer la contraseña -Ejemplos de salida: `debian`, `ubuntu`, `user1`, etc. +Después de montar la partición y ejecutar `chroot /mnt` (o el equivalente), dispone de privilegios **root** en el sistema montado. -Si la cuenta mostrada es la correcta, utilice el siguiente comando para modificar su contraseña: +Si es necesario, antes de modificar una contraseña, **identifique las cuentas existentes** con el siguiente comando: ```bash -passwd +cat /etc/passwd ``` -Introduzca la nueva contraseña: +Para cambiar la contraseña de una cuenta específica (por ejemplo: **user1**), siempre especifique el nombre de usuario: -```text -New password: -Retype new password: -passwd: password updated successfully +```bash +passwd user1 +# New password: +# Retype new password: +# passwd: password updated successfully ``` > [!primary] > -> En una distribución GNU/Linux, **una solicitud de contraseña no muestra las teclas que introduce**. - -Si no es la cuenta correcta, desconéctese y vuelva a conectarse por SSH con el usuario objetivo, y luego cambie su contraseña. - -> [!warning] -> -> El comando `passwd` sin argumentos modifica la contraseña de la cuenta mostrada por `whoami`. -> Siempre verifique el usuario actual antes de ejecutar este comando. +> Evite ejecutar el comando `passwd` sin argumentos: este comando modifica la contraseña de la cuenta actual (que suele ser **root** después de ejecutar `chroot`). +> Siempre indique `passwd `. Recuerde utilizar el modo de arranque **normal** del servidor al reiniciarlo desde el [área de cliente de OVHcloud](/links/manager). diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.fr-ca.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.fr-ca.md index 8a238fdb262..0631b3c69d1 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.fr-ca.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.fr-ca.md @@ -23,6 +23,7 @@ Dans ce cas, vous pouvez vous connecter à votre serveur via le mode rescue d’ - Être connecté à votre [espace client OVHcloud](/links/manager) > [!primary] +> > Ce guide ne s'applique pas aux installations de **Windows** Server. Consultez nos guides « [Comment changer le mot de passe administrateur sur un serveur dédié Windows](/pages/bare_metal_cloud/dedicated_servers/rcw-changing-admin-password-on-windows) » et « [Comment changer le mot de passe administrateur sur un VPS Windows](/pages/bare_metal_cloud/virtual_private_servers/resetting_a_windows_password) ». > @@ -43,7 +44,7 @@ N'oubliez pas de consulter également nos guides de premiers pas : -### Étape 1 : redémarrer le serveur en mode rescue +### Étape 1 - Redémarrer le serveur en mode rescue Suivez les étapes de nos guides sur le mode rescue pour vous connecter à votre serveur et monter vos partitions : @@ -64,40 +65,29 @@ La commande exacte dépend du point de montage utilisé. Par exemple, si vous av chroot /mnt/ ``` -### Étape 2 : réinitialiser le mot de passe de l'utilisateur - -Avant de changer le mot de passe de l'utilisateur, **vérifiez sur quel compte vous êtes connecté** grâce à la commande ci-dessous : - -```bash -whoami -``` +### Étape 2 - Identifier le(s) compte(s) utilisateur et réinitialiser le mot de passe -Exemples de sortie : `debian`, `ubuntu`, `user1`, etc. +Après avoir monté la partition et exécuté `chroot /mnt` (ou l'équivalent), vous disposez des privilèges **root** sur le système monté. -Si le compte affiché est bien celui de l'utilisateur concerné, utilisez la commande suivante pour modifier son mot de passe : +Si besoin, avant de modifier un mot de passe, **identifiez les comptes existants** avec la commande suivante : ```bash -passwd +cat /etc/passwd ``` -Renseignez le nouveau mot de passe : +Pour changer le mot de passe d’un compte précis (par exemple : **user1**), spécifiez toujours le nom d’utilisateur : -```text -New password: -Retype new password: -passwd: password updated successfully +```bash +passwd user1 +# New password: +# Retype new password: +# passwd: password updated successfully ``` > [!primary] > -> Sur une distribution GNU/Linux, **une invite de mot de passe n'affiche pas vos entrées clavier**. - -Si ce n’est pas le bon compte, déconnectez-vous puis reconnectez-vous en SSH avec l’utilisateur cible, puis modifiez son mot de passe. - -> [!warning] -> -> La commande `passwd` sans argument modifie le mot de passe du compte affiché par `whoami`. -> Vérifiez toujours l’utilisateur courant avant d'exécuter cette commande. +> Évitez d'exécuter la commande `passwd` sans argument : cette commande modifie le mot de passe du compte courant (qui est souvent **root** après l'exécution d'un `chroot`). +> Indiquez systématiquement `passwd `. Pensez à utiliser le mode de démarrage **normal** de votre serveur lorsque vous le redémarrez depuis votre [espace client OVHcloud](/links/manager). diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.fr-fr.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.fr-fr.md index 35d442338d1..a66a375a8a8 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.fr-fr.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.fr-fr.md @@ -23,6 +23,7 @@ Dans ce cas, vous pouvez vous connecter à votre serveur via le mode rescue d’ - Être connecté à votre [espace client OVHcloud](/links/manager) > [!primary] +> > Ce guide ne s'applique pas aux installations de **Windows** Server. Consultez nos guides « [Comment changer le mot de passe administrateur sur un serveur dédié Windows](/pages/bare_metal_cloud/dedicated_servers/rcw-changing-admin-password-on-windows) » et « [Comment changer le mot de passe administrateur sur un VPS Windows](/pages/bare_metal_cloud/virtual_private_servers/resetting_a_windows_password) ». > @@ -43,7 +44,7 @@ N'oubliez pas de consulter également nos guides de premiers pas : -### Étape 1 : redémarrer le serveur en mode rescue +### Étape 1 - Redémarrer le serveur en mode rescue Suivez les étapes de nos guides sur le mode rescue pour vous connecter à votre serveur et monter vos partitions : @@ -64,17 +65,17 @@ La commande exacte dépend du point de montage utilisé. Par exemple, si vous av chroot /mnt/ ``` -### Étape 2 : identifier le(s) compte(s) utilisateur et réinitialiser le mot de passe +### Étape 2 - Identifier le(s) compte(s) utilisateur et réinitialiser le mot de passe Après avoir monté la partition et exécuté `chroot /mnt` (ou l'équivalent), vous disposez des privilèges **root** sur le système monté. -Avant de modifier un mot de passe, **identifiez les comptes existants** : +Si besoin, avant de modifier un mot de passe, **identifiez les comptes existants** avec la commande suivante : ```bash cat /etc/passwd ``` -Pour changer le mot de passe d’un compte précis (ex. `user1`), spécifiez toujours le nom d’utilisateur : +Pour changer le mot de passe d’un compte précis (par exemple : **user1**), spécifiez toujours le nom d’utilisateur : ```bash passwd user1 @@ -83,9 +84,10 @@ passwd user1 # passwd: password updated successfully ``` -> [!warning] +> [!primary] > -> Évitez `passwd` sans argument : cette commande modifie le mot de passe du compte courant (souvent `root` après `chroot`). Indiquez systématiquement `passwd `. +> Évitez d'exécuter la commande `passwd` sans argument : cette commande modifie le mot de passe du compte courant (qui est souvent **root** après l'exécution d'un `chroot`). +> Indiquez systématiquement `passwd `. Pensez à utiliser le mode de démarrage **normal** de votre serveur lorsque vous le redémarrez depuis votre [espace client OVHcloud](/links/manager). diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.it-it.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.it-it.md index 1cbdd660fe0..2ce33817c41 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.it-it.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.it-it.md @@ -4,11 +4,6 @@ excerpt: "Scopri come configurare una nuova password per un account utente su un updated: 2024-02-19 --- - -> [!primary] -> Questa traduzione è stata generata automaticamente dal nostro partner SYSTRAN. I contenuti potrebbero presentare imprecisioni, ad esempio la nomenclatura dei pulsanti o alcuni dettagli tecnici. In caso di dubbi consigliamo di fare riferimento alla versione inglese o francese della guida. Per aiutarci a migliorare questa traduzione, utilizza il pulsante "Contribuisci" di questa pagina. -> - ## Obiettivo Senza un’altra modalità di autenticazione o un altro account utente, la perdita della password significa che non è più possibile connettersi al server in modo normale. @@ -28,6 +23,7 @@ In questo caso, è possibile accedere al server tramite la modalità Rescue di O - Avere accesso allo [Spazio Cliente OVHcloud](/links/manager) > [!primary] +> > Questa guida non si applica alle installazioni di **Windows** Server. Consulta le nostre guide "[Come cambiare la password amministratore su un server dedicato Windows](/pages/bare_metal_cloud/dedicated_servers/rcw-changing-admin-password-on-windows)" e "[Come cambiare la password amministratore su un VPS Windows](/pages/bare_metal_cloud/virtual_private_servers/resetting_a_windows_password)". > @@ -48,7 +44,7 @@ Non dimenticare di consultare anche le nostre guide di primo passo: -### Step 1: riavvia il server in modalità Rescue +### Step 1 - Riavvia il server in modalità Rescue Segui gli step delle nostre guide in modalità Rescue per connetterti al tuo server e montare le tue partizioni: @@ -69,40 +65,29 @@ Il comando esatto dipende dal punto di montaggio utilizzato. Ad esempio, se la p chroot /mnt/ ``` -### Step 2: reimposta la password dell'utente - -Prima di modificare la password dell'utente, **verifica su quale account sei connesso** utilizzando il comando seguente: +### Passo 2 - Identificare l'account utente e reimpostare la password -```bash -whoami -``` +Dopo aver montato la partizione ed eseguito `chroot /mnt` (o l'equivalente), disponi dei privilegi root sul sistema montato. -Esempi di output: `debian`, `ubuntu`, `user1`, ecc. - -Se l'account visualizzato è corretto, utilizza il comando seguente per modificare la password: +Se necessario, prima di modificare una password, **identifica gli account esistenti** con il comando seguente: ```bash -passwd +cat /etc/passwd ``` -Inserisci la nuova password: +Per modificare la password di un account specifico (ad esempio: **user1**), specifica sempre il nome utente: -```text -New password: -Retype new password: -passwd: password updated successfully +```bash +passwd user1 +# New password: +# Retype new password: +# passwd: password updated successfully ``` > [!primary] > -> Su una distribuzione GNU/Linux, **una richiesta di password non visualizza le tue tastiere**. - -Se non è l'account corretto, disconnettiti e riconnettiti tramite SSH con l'utente obiettivo, quindi modifica la sua password. - -> [!warning] -> -> Il comando `passwd` senza argomenti modifica la password dell'account visualizzato da `whoami`. -> Verifica sempre l'utente corrente prima di eseguire questo comando. +> Evita di eseguire il comando `passwd` senza argomenti: questo comando modifica la password dell'account corrente (che è spesso **root** dopo l'esecuzione di `chroot`). +> Specifica sempre `passwd `. Utilizza la modalità di avvio **normal** del tuo server quando lo riavvii dallo [Spazio Cliente OVHcloud](/links/manager). @@ -110,7 +95,6 @@ Se necessario, consulta la [guida del Rescue mode](#step1). A questo punto, sarà possibile accedere al server con la nuova password. - ## Per saperne di più [Creare e utilizzare chiavi SSH](/pages/bare_metal_cloud/dedicated_servers/creating-ssh-keys-dedicated) diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.pl-pl.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.pl-pl.md index 071848a145c..4155772aacb 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.pl-pl.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.pl-pl.md @@ -4,11 +4,6 @@ excerpt: "Dowiedz się, jak skonfigurować nowe hasło dla konta użytkownika w updated: 2024-02-19 --- - -> [!primary] -> Tłumaczenie zostało wygenerowane automatycznie przez system naszego partnera SYSTRAN. W niektórych przypadkach mogą wystąpić nieprecyzyjne sformułowania, na przykład w tłumaczeniu nazw przycisków lub szczegółów technicznych. W przypadku jakichkolwiek wątpliwości zalecamy zapoznanie się z angielską/francuską wersją przewodnika. Jeśli chcesz przyczynić się do ulepszenia tłumaczenia, kliknij przycisk "Zgłoś propozycję modyfikacji” na tej stronie. -> - ## Wprowadzenie Bez alternatywnego uwierzytelniania lub innego konta użytkownika utrata hasła oznacza, że nie można się normalnie połączyć z serwerem. @@ -28,6 +23,7 @@ W takim przypadku możesz zalogować się do Twojego serwera za pomocą trybu Re - Dostęp do [Panelu klienta OVHcloud](/links/manager) > [!primary] +> > Ten przewodnik nie dotyczy instalacji **Windows* Server. Zapoznaj się z naszymi przewodnikami "[Jak zmienić hasło administratora na serwerze dedykowanym Windows](/pages/bare_metal_cloud/dedicated_servers/rcw-changing-admin-password-on-windows)" i "[Jak zmienić hasło administratora na serwerze VPS Windows](/pages/bare_metal_cloud/virtual_private_servers/resetting_a_windows_password)". > @@ -48,7 +44,7 @@ Sprawdź również nasze przewodniki: -### Etap 1: restart serwera w trybie rescue +### Etap 1 - Restart serwera w trybie rescue Postępuj zgodnie z instrukcjami zawartymi w przewodnikach dotyczących trybu Rescue, aby połączyć się z serwerem i zamontować partycje: @@ -69,40 +65,29 @@ Dokładne sterowanie zależy od użytego punktu montowania. Na przykład, jeśli chroot /mnt/ ``` -### Etap 2: resetowanie hasła użytkownika - -Przed zmianą hasła użytkownika **sprawdź, na jakim koncie jesteś zalogowany**, używając poniższego polecenia: +### Etap 2 - Zidentyfikowanie kont użytkownika i zresetowanie hasła -```bash -whoami -``` +Po zamontowaniu partycji i uruchomieniu `chroot /mnt` (lub odpowiednika), masz uprawnienia root do zamontowanego systemu. -Przykłady wyjścia: `debian`, `ubuntu`, `user1`, itp. - -Jeśli wyświetlony konto jest poprawne, użyj poniższego polecenia, aby zmienić hasło: +Jeśli to konieczne, przed zmianą hasła **zidentyfikuj istniejące konta** za pomocą poniższego polecenia: ```bash -passwd +cat /etc/passwd ``` -Wprowadź nowe hasło: +Aby zmienić hasło dla konkretnego konta (np. **user1**), zawsze podaj nazwę użytkownika: -```text -New password: -Retype new password: -passwd: password updated successfully +```bash +passwd user1 +# New password: +# Retype new password: +# passwd: password updated successfully ``` > [!primary] > -> W przypadku dystrybucji GNU/Linux **prośba o hasło nie wyświetla wpisywanych znaków**. - -Jeśli to nie jest poprawne konto, wyloguj się i ponownie zaloguj się przez SSH z użytkownikiem docelowym, a następnie zmień jego hasło. - -> [!warning] -> -> Polecenie `passwd` bez argumentów zmienia hasło konta wyświetlanego przez `whoami`. -> Zawsze sprawdzaj aktualnego użytkownika przed wykonaniem tego polecenia. +> Unikaj uruchamiania polecenia `passwd` bez argumentów: to polecenie zmienia hasło dla konta bieżącego (które często jest **root** po uruchomieniu `chroot`). +> Zawsze podawaj `passwd `. Pamiętaj, aby podczas restartu serwera z poziomu [Panelu klienta OVHcloud](/links/manager) użyć trybu uruchamiania **normalnego** Twojego serwera. @@ -110,7 +95,6 @@ W razie potrzeby sprawdź przewodnik [Tryb ratunkowy](#step1). Teraz masz dostęp do serwera za pomocą nowego hasła. - ## Sprawdź również [Tworzenie i używanie kluczy SSH](/pages/bare_metal_cloud/dedicated_servers/creating-ssh-keys-dedicated) diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.pt-pt.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.pt-pt.md index b20c6720a20..41938c100c0 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.pt-pt.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.pt-pt.md @@ -4,10 +4,6 @@ excerpt: "Saiba como configurar uma nova palavra-passe para uma conta de utiliza updated: 2024-02-19 --- -> [!primary] -> Esta tradução foi automaticamente gerada pelo nosso parceiro SYSTRAN. Em certos casos, poderão ocorrer formulações imprecisas, como por exemplo nomes de botões ou detalhes técnicos. Recomendamos que consulte a versão inglesa ou francesa do manual, caso tenha alguma dúvida. Se nos quiser ajudar a melhorar esta tradução, clique em "Contribuir" nesta página. -> - ## Objetivo Sem um outro modo de autenticação ou uma conta de utilizador, a perda da palavra-passe significa que não é possível iniciar sessão no servidor normalmente. @@ -27,6 +23,7 @@ Neste caso, pode ligar-se ao seu servidor através do modo rescue da OVHcloud, q - Ter acesso à [Área de Cliente OVHcloud](/links/manager) > [!primary] +> > Este manual não se aplica a instalações do **Windows** Server. Consulte os nossos manuais "[Como alterar a palavra-passe de administrador num servidor dedicado Windows](/pages/bare_metal_cloud/dedicated_servers/rcw-changing-admin-password-on-windows)" e "[Como alterar a palavra-passe de administrador num VPS Windows](/pages/bare_metal_cloud/virtual_private_servers/resetting_a_windows_password)". > @@ -47,7 +44,7 @@ Não se esqueça de consultar também os nossos guias de primeiros passos: -### Etapa 1: reiniciar o servidor em modo rescue +### Etapa 1 - Reiniciar o servidor em modo rescue Siga as etapas dos nossos manuais sobre o modo rescue para se ligar ao seu servidor e montar as suas partições: @@ -68,40 +65,29 @@ O comando exato depende do ponto de montagem utilizado. Por exemplo, se tiver mo chroot /mnt/ ``` -### Etapa 2: reinicializar a palavra-passe do utilizador +### Etapa 2 - Identificar a(s) conta(s) de usuário e redefinir a senha -Antes de alterar a senha do usuário, **verifique em qual conta você está conectado** usando o seguinte comando: - -```bash -whoami -``` +Após montar a partição e executar `chroot /mnt` (ou o equivalente), você terá privilégios root no sistema montado. -Exemplos de saída: `debian`, `ubuntu`, `user1`, etc. - -Se a conta exibida estiver correta, use o seguinte comando para modificar sua senha: +Se necessário, antes de alterar uma senha, **identifique as contas existentes** com o seguinte comando: ```bash -passwd +cat /etc/passwd ``` -Insira a nova senha: +Para alterar a senha de uma conta específica (por exemplo: **user1**), sempre especifique o nome do usuário: -```text -New password: -Retype new password: -passwd: password updated successfully +```bash +passwd user1 +# New password: +# Retype new password: +# passwd: password updated successfully ``` > [!primary] > -> Em uma distribuição GNU/Linux, **uma solicitação de senha não exibe as teclas digitadas**. - -Se não for a conta correta, desconecte-se e reconecte-se via SSH com o usuário alvo, em seguida altere sua senha. - -> [!warning] -> -> O comando `passwd` sem argumentos modifica a senha da conta exibida por `whoami`. -> Sempre verifique o usuário atual antes de executar este comando. +> Evite executar o comando `passwd` sem argumentos: este comando modifica a senha da conta atual (que é frequentemente **root** após a execução de `chroot`). +> Sempre especifique `passwd `. Lembre-se de utilizar o modo de arranque **normal** do seu servidor quando o reiniciar a partir da sua [Área de Cliente OVHcloud](/links/manager). diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/meta.yaml b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/meta.yaml index cbae36c2fa4..72e61cd0690 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/meta.yaml +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/meta.yaml @@ -1,3 +1,4 @@ id: 0486fca9-8510-41dd-96be-f534a74aed1c full_slug: dedicated-servers-change-password +translation_banner: true reference_category: bare-metal-cloud-dedicated-servers-troubleshooting \ No newline at end of file From 41384b4c47dcdb1851fad758bb0ee88fb78abee3 Mon Sep 17 00:00:00 2001 From: tcpdumpfbacke <63296875+tcpdumpfbacke@users.noreply.github.com> Date: Wed, 1 Oct 2025 14:46:36 +0200 Subject: [PATCH 08/12] DE proof --- .../replacing-user-password/guide.de-de.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.de-de.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.de-de.md index e0b6fc89eee..8176818b573 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.de-de.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.de-de.md @@ -1,7 +1,7 @@ --- title: "Wiederherstellen des Serverzugriffs bei Passwortverlust" excerpt: "Erfahren Sie hier, wie Sie mit dem OVHcloud Rescue-Modus ein neues Passwort für einen Benutzer-Account auf einem GNU/Linux-Betriebssystem einrichten" -updated: 2024-02-19 +updated: 2025-10-01 --- ## Ziel @@ -24,7 +24,7 @@ In diesem Fall können Sie sich über den OVHcloud Rescue-Modus mit Ihrem Server > [!primary] > -> Diese Anleitung gilt nicht für Installationen von **Windows** Server. Folgen Sie stattdessen unserer Anleitung zum [Ändern des Administratorpassworts auf einem Windows Dedicated Server](/pages/bare_metal_cloud/dedicated_servers/rcw-changing-admin-password-on-windows) oder [Ändern des Administratorpassworts auf einem Windows VPS](/pages/bare_metal_cloud/virtual_private_servers/resetting_a_windows_password). +> Diese Anleitung gilt nicht für Installationen von **Windows** Server. Folgen Sie stattdessen unserer Anleitung zum [Ändern des Administratorpassworts auf einem Windows Dedicated Server](/pages/bare_metal_cloud/dedicated_servers/rcw-changing-admin-password-on-windows) oder [Ändern des Administrator-Passworts auf einem Windows VPS](/pages/bare_metal_cloud/virtual_private_servers/resetting_a_windows_password). > ## In der praktischen Anwendung @@ -67,7 +67,7 @@ chroot /mnt/ ### Schritt 2 - Benutzerkonten identifizieren und das Passwort zurücksetzen -Nachdem Sie die Partition eingehängt und `chroot /mnt` (oder den entsprechenden Befehl) ausgeführt haben, verfügen Sie über **root**-Berechtigungen auf dem eingehängten System. +Nachdem Sie die Partition gemountet und `chroot /mnt` (oder den entsprechenden Befehl) ausgeführt haben, verfügen Sie über **root**-Berechtigungen auf dem System. Falls erforderlich, identifizieren Sie vor der Änderung eines Passworts **vorhandene Benutzerkonten** mit dem folgenden Befehl: @@ -75,7 +75,7 @@ Falls erforderlich, identifizieren Sie vor der Änderung eines Passworts **vorha cat /etc/passwd ``` -Um das Passwort eines bestimmten Kontos zu ändern (z. B. **user1**), geben Sie immer den Benutzernamen an: +Um das Passwort eines bestimmten Kontos zu ändern (z. B. **user1**), geben Sie diesen Befehl ein: ```bash passwd user1 @@ -86,10 +86,10 @@ passwd user1 > [!primary] > -> Vermeiden Sie es, den Befehl `passwd` ohne Argumente auszuführen: Dieser Befehl ändert das Passwort des aktuellen Kontos (was nach der Ausführung von `chroot` oft **root** ist). -> Geben Sie immer `passwd ` an. +> Vermeiden Sie es, den Befehl `passwd` ohne Argumente auszuführen: Dieser Befehl ändert das Passwort des aktuellen Kontos (**root** nach der Ausführung von `chroot` ist). +> Verwenden Sie deshalb `passwd `. -Denken Sie daran, den regulären Startmodus zu verwenden, wenn Sie Ihren Server im [OVHcloud Kundencenter](/links/manager) neu starten. +Denken Sie daran, den regulären Startmodus zu verwenden, bevor Sie Ihren Server im [OVHcloud Kundencenter](/links/manager) neu starten. Folgen Sie bei Bedarf der passenden [Anleitung zum Rescue-Modus](#step1). @@ -105,4 +105,4 @@ Sie haben nun mit Ihrem neuen Passwort Zugriff auf den Server. [Konfigurieren von Benutzer-Accounts und Root-Zugriff auf einem Server](/pages/bare_metal_cloud/dedicated_servers/changing_root_password_linux_ds) -Für den Austausch mit unserer User Community gehen Sie auf . \ No newline at end of file +Für den Austausch mit unserer User Community gehen Sie auf . From 42f57236447f831d35a93cad0a230c2809d608a0 Mon Sep 17 00:00:00 2001 From: tcpdumpfbacke <63296875+tcpdumpfbacke@users.noreply.github.com> Date: Wed, 1 Oct 2025 14:47:05 +0200 Subject: [PATCH 09/12] Update guide.de-de.md --- .../dedicated_servers/replacing-user-password/guide.de-de.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.de-de.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.de-de.md index 8176818b573..ec555f377e0 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.de-de.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.de-de.md @@ -1,7 +1,7 @@ --- title: "Wiederherstellen des Serverzugriffs bei Passwortverlust" excerpt: "Erfahren Sie hier, wie Sie mit dem OVHcloud Rescue-Modus ein neues Passwort für einen Benutzer-Account auf einem GNU/Linux-Betriebssystem einrichten" -updated: 2025-10-01 +updated: 2025-09-24 --- ## Ziel From bf3318b0a0eae7f7e0d96705a2065bc6e6860cf7 Mon Sep 17 00:00:00 2001 From: tcpdumpfbacke <63296875+tcpdumpfbacke@users.noreply.github.com> Date: Wed, 1 Oct 2025 15:27:56 +0200 Subject: [PATCH 10/12] EN update --- .../replacing-user-password/guide.en-gb.md | 29 ++++++++++++++++--- 1 file changed, 25 insertions(+), 4 deletions(-) diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-gb.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-gb.md index c7eeeb20cc6..67e37386acb 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-gb.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-gb.md @@ -75,10 +75,31 @@ If needed, before changing a password, **identify existing accounts** using the cat /etc/passwd ``` -To change the password for a specific account (e.g., **user1**), always specify the username: +Example output (shortened): + +```console +daemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin +bin:x:2:2:bin:/bin:/usr/sbin/nologin +sys:x:3:3:sys:/dev:/usr/sbin/nologin +. +nobody:x:65534:65534:nobody:/nonexistent:/usr/sbin/nologin +systemd-network:x:998:998:systemd Network Management:/:/usr/sbin/nologin +syslog:x:102:102::/nonexistent:/usr/sbin/nologin +sshd:x:105:65534::/run/sshd:/usr/sbin/nologin +. +user1:x:1000:1000:Ubuntu:/home/ubuntu:/bin/bash +``` + +Find your user name(s) in the list of accounts. +To change the password for a specific account (e.g. **user1**), enter this comand: ```bash passwd user1 +``` + +Enter the new password twice and confirm: + +```console # New password: # Retype new password: # passwd: password updated successfully @@ -86,14 +107,14 @@ passwd user1 > [!primary] > -> Avoid running the `passwd` command without arguments: This command modifies the password of the current account (which is often **root** after running `chroot`). +> Avoid running the `passwd` command without arguments: This command modifies the password of the current account (which is **root** after executing `chroot`). > Always specify `passwd `. Remember to use the regular boot mode of your server when restarting it in your [OVHcloud Control Panel](/links/manager). Refer to the corresponding [rescue mode guide](#step1) if necessary. -You have now access to the server with your new password. +The modified user account has now access to the server via SSH with the new password. ## Go further @@ -105,4 +126,4 @@ You have now access to the server with your new password. [How to configure user accounts and root access on a server](/pages/bare_metal_cloud/dedicated_servers/changing_root_password_linux_ds) -Join our [community of users](/links/community). \ No newline at end of file +Join our [community of users](/links/community). From 8c4d0c457d1fb6677323e28a0caa55f3e5caac44 Mon Sep 17 00:00:00 2001 From: benchbzh Date: Thu, 2 Oct 2025 11:48:06 +0200 Subject: [PATCH 11/12] updates, translations & date update --- .../replacing-user-password/guide.de-de.md | 36 +++++++++++++++---- .../replacing-user-password/guide.en-asia.md | 31 +++++++++++++--- .../replacing-user-password/guide.en-au.md | 31 +++++++++++++--- .../replacing-user-password/guide.en-ca.md | 31 +++++++++++++--- .../replacing-user-password/guide.en-gb.md | 8 +++-- .../replacing-user-password/guide.en-ie.md | 31 +++++++++++++--- .../replacing-user-password/guide.en-sg.md | 31 +++++++++++++--- .../replacing-user-password/guide.en-us.md | 31 +++++++++++++--- .../replacing-user-password/guide.es-es.md | 30 ++++++++++++++-- .../replacing-user-password/guide.es-us.md | 32 ++++++++++++++--- .../replacing-user-password/guide.fr-ca.md | 30 ++++++++++++++-- .../replacing-user-password/guide.fr-fr.md | 30 ++++++++++++++-- .../replacing-user-password/guide.it-it.md | 36 +++++++++++++++---- .../replacing-user-password/guide.pl-pl.md | 36 +++++++++++++++---- .../replacing-user-password/guide.pt-pt.md | 32 ++++++++++++++--- 15 files changed, 394 insertions(+), 62 deletions(-) diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.de-de.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.de-de.md index ec555f377e0..6c2e84a6857 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.de-de.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.de-de.md @@ -1,7 +1,7 @@ --- title: "Wiederherstellen des Serverzugriffs bei Passwortverlust" excerpt: "Erfahren Sie hier, wie Sie mit dem OVHcloud Rescue-Modus ein neues Passwort für einen Benutzer-Account auf einem GNU/Linux-Betriebssystem einrichten" -updated: 2025-09-24 +updated: 2025-10-02 --- ## Ziel @@ -65,25 +65,49 @@ Der exakte Befehl hängt vom verwendeten Mountpunkt ab. Wenn Sie Ihre Partition chroot /mnt/ ``` -### Schritt 2 - Benutzerkonten identifizieren und das Passwort zurücksetzen +### Schritt 2 - Identifizieren der Benutzerkonten und Zurücksetzen des Kennworts Nachdem Sie die Partition gemountet und `chroot /mnt` (oder den entsprechenden Befehl) ausgeführt haben, verfügen Sie über **root**-Berechtigungen auf dem System. -Falls erforderlich, identifizieren Sie vor der Änderung eines Passworts **vorhandene Benutzerkonten** mit dem folgenden Befehl: +Ermitteln Sie ggf. vorhandene Konten mithilfe des folgenden Befehls, bevor Sie ein Kennwort ändern: ```bash cat /etc/passwd ``` -Um das Passwort eines bestimmten Kontos zu ändern (z. B. **user1**), geben Sie diesen Befehl ein: +Beispielausgabe (gekürzt): + +```console +daemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin +bin:x:2:2:bin:/bin:/usr/sbin/nologin +sys:x:3:3:sys:/dev:/usr/sbin/nologin +. +nobody:x:65534:65534:nobody:/nonexistent:/usr/sbin/nologin +systemd-network:x:998:998:systemd Network Management:/:/usr/sbin/nologin +syslog:x:102:102::/nonexistent:/usr/sbin/nologin +sshd:x:105:65534::/run/sshd:/usr/sbin/nologin +. +user1:x:1000:1000:Ubuntu:/home/ubuntu:/bin/bash +``` + +Suchen Sie Ihre(n) Benutzernamen in der Liste der Konten. + +Geben Sie folgenden Befehl ein, um das Kennwort für ein bestimmtes Konto zu ändern (z. B. **user1**): ```bash passwd user1 +``` + +Geben Sie das neue Kennwort zweimal ein und bestätigen Sie: + +```console # New password: # Retype new password: # passwd: password updated successfully ``` +Bei einer GNU/Linux-Distribution zeigt **die Eingabeaufforderung für das Passwort Ihre Tastatureingabe nicht an**. + > [!primary] > > Vermeiden Sie es, den Befehl `passwd` ohne Argumente auszuführen: Dieser Befehl ändert das Passwort des aktuellen Kontos (**root** nach der Ausführung von `chroot` ist). @@ -93,7 +117,7 @@ Denken Sie daran, den regulären Startmodus zu verwenden, bevor Sie Ihren Server Folgen Sie bei Bedarf der passenden [Anleitung zum Rescue-Modus](#step1). -Sie haben nun mit Ihrem neuen Passwort Zugriff auf den Server. +Das geänderte Benutzerkonto hat nun Zugriff auf den Server mit dem neuen Kennwort. ## Weiterführende Informationen @@ -105,4 +129,4 @@ Sie haben nun mit Ihrem neuen Passwort Zugriff auf den Server. [Konfigurieren von Benutzer-Accounts und Root-Zugriff auf einem Server](/pages/bare_metal_cloud/dedicated_servers/changing_root_password_linux_ds) -Für den Austausch mit unserer User Community gehen Sie auf . +Für den Austausch mit unserer User Community gehen Sie auf . \ No newline at end of file diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-asia.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-asia.md index c7eeeb20cc6..11faab6bae7 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-asia.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-asia.md @@ -1,7 +1,7 @@ --- title: How to recover server access if your user password is lost excerpt: Find out how to configure a new password for a user account on a GNU/Linux operating system with the OVHcloud rescue mode -updated: 2025-09-24 +updated: 2025-10-02 --- ## Objective @@ -75,25 +75,48 @@ If needed, before changing a password, **identify existing accounts** using the cat /etc/passwd ``` -To change the password for a specific account (e.g., **user1**), always specify the username: +Example output (shortened): + +```console +daemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin +bin:x:2:2:bin:/bin:/usr/sbin/nologin +sys:x:3:3:sys:/dev:/usr/sbin/nologin +. +nobody:x:65534:65534:nobody:/nonexistent:/usr/sbin/nologin +systemd-network:x:998:998:systemd Network Management:/:/usr/sbin/nologin +syslog:x:102:102::/nonexistent:/usr/sbin/nologin +sshd:x:105:65534::/run/sshd:/usr/sbin/nologin +. +user1:x:1000:1000:Ubuntu:/home/ubuntu:/bin/bash +``` + +Find your user name(s) in the list of accounts. +To change the password for a specific account (e.g. **user1**), enter this comand: ```bash passwd user1 +``` + +Enter the new password twice and confirm: + +```console # New password: # Retype new password: # passwd: password updated successfully ``` +On a GNU/Linux distribution, **a password prompt does not display your keyboard input**. + > [!primary] > -> Avoid running the `passwd` command without arguments: This command modifies the password of the current account (which is often **root** after running `chroot`). +> Avoid running the `passwd` command without arguments: This command modifies the password of the current account (which is **root** after executing `chroot`). > Always specify `passwd `. Remember to use the regular boot mode of your server when restarting it in your [OVHcloud Control Panel](/links/manager). Refer to the corresponding [rescue mode guide](#step1) if necessary. -You have now access to the server with your new password. +The modified user account has now access to the server with the new password. ## Go further diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-au.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-au.md index c7eeeb20cc6..11faab6bae7 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-au.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-au.md @@ -1,7 +1,7 @@ --- title: How to recover server access if your user password is lost excerpt: Find out how to configure a new password for a user account on a GNU/Linux operating system with the OVHcloud rescue mode -updated: 2025-09-24 +updated: 2025-10-02 --- ## Objective @@ -75,25 +75,48 @@ If needed, before changing a password, **identify existing accounts** using the cat /etc/passwd ``` -To change the password for a specific account (e.g., **user1**), always specify the username: +Example output (shortened): + +```console +daemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin +bin:x:2:2:bin:/bin:/usr/sbin/nologin +sys:x:3:3:sys:/dev:/usr/sbin/nologin +. +nobody:x:65534:65534:nobody:/nonexistent:/usr/sbin/nologin +systemd-network:x:998:998:systemd Network Management:/:/usr/sbin/nologin +syslog:x:102:102::/nonexistent:/usr/sbin/nologin +sshd:x:105:65534::/run/sshd:/usr/sbin/nologin +. +user1:x:1000:1000:Ubuntu:/home/ubuntu:/bin/bash +``` + +Find your user name(s) in the list of accounts. +To change the password for a specific account (e.g. **user1**), enter this comand: ```bash passwd user1 +``` + +Enter the new password twice and confirm: + +```console # New password: # Retype new password: # passwd: password updated successfully ``` +On a GNU/Linux distribution, **a password prompt does not display your keyboard input**. + > [!primary] > -> Avoid running the `passwd` command without arguments: This command modifies the password of the current account (which is often **root** after running `chroot`). +> Avoid running the `passwd` command without arguments: This command modifies the password of the current account (which is **root** after executing `chroot`). > Always specify `passwd `. Remember to use the regular boot mode of your server when restarting it in your [OVHcloud Control Panel](/links/manager). Refer to the corresponding [rescue mode guide](#step1) if necessary. -You have now access to the server with your new password. +The modified user account has now access to the server with the new password. ## Go further diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-ca.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-ca.md index c7eeeb20cc6..11faab6bae7 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-ca.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-ca.md @@ -1,7 +1,7 @@ --- title: How to recover server access if your user password is lost excerpt: Find out how to configure a new password for a user account on a GNU/Linux operating system with the OVHcloud rescue mode -updated: 2025-09-24 +updated: 2025-10-02 --- ## Objective @@ -75,25 +75,48 @@ If needed, before changing a password, **identify existing accounts** using the cat /etc/passwd ``` -To change the password for a specific account (e.g., **user1**), always specify the username: +Example output (shortened): + +```console +daemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin +bin:x:2:2:bin:/bin:/usr/sbin/nologin +sys:x:3:3:sys:/dev:/usr/sbin/nologin +. +nobody:x:65534:65534:nobody:/nonexistent:/usr/sbin/nologin +systemd-network:x:998:998:systemd Network Management:/:/usr/sbin/nologin +syslog:x:102:102::/nonexistent:/usr/sbin/nologin +sshd:x:105:65534::/run/sshd:/usr/sbin/nologin +. +user1:x:1000:1000:Ubuntu:/home/ubuntu:/bin/bash +``` + +Find your user name(s) in the list of accounts. +To change the password for a specific account (e.g. **user1**), enter this comand: ```bash passwd user1 +``` + +Enter the new password twice and confirm: + +```console # New password: # Retype new password: # passwd: password updated successfully ``` +On a GNU/Linux distribution, **a password prompt does not display your keyboard input**. + > [!primary] > -> Avoid running the `passwd` command without arguments: This command modifies the password of the current account (which is often **root** after running `chroot`). +> Avoid running the `passwd` command without arguments: This command modifies the password of the current account (which is **root** after executing `chroot`). > Always specify `passwd `. Remember to use the regular boot mode of your server when restarting it in your [OVHcloud Control Panel](/links/manager). Refer to the corresponding [rescue mode guide](#step1) if necessary. -You have now access to the server with your new password. +The modified user account has now access to the server with the new password. ## Go further diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-gb.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-gb.md index 67e37386acb..11faab6bae7 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-gb.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-gb.md @@ -1,7 +1,7 @@ --- title: How to recover server access if your user password is lost excerpt: Find out how to configure a new password for a user account on a GNU/Linux operating system with the OVHcloud rescue mode -updated: 2025-09-24 +updated: 2025-10-02 --- ## Objective @@ -105,6 +105,8 @@ Enter the new password twice and confirm: # passwd: password updated successfully ``` +On a GNU/Linux distribution, **a password prompt does not display your keyboard input**. + > [!primary] > > Avoid running the `passwd` command without arguments: This command modifies the password of the current account (which is **root** after executing `chroot`). @@ -114,7 +116,7 @@ Remember to use the regular boot mode of your server when restarting it in your Refer to the corresponding [rescue mode guide](#step1) if necessary. -The modified user account has now access to the server via SSH with the new password. +The modified user account has now access to the server with the new password. ## Go further @@ -126,4 +128,4 @@ The modified user account has now access to the server via SSH with the new pass [How to configure user accounts and root access on a server](/pages/bare_metal_cloud/dedicated_servers/changing_root_password_linux_ds) -Join our [community of users](/links/community). +Join our [community of users](/links/community). \ No newline at end of file diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-ie.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-ie.md index c7eeeb20cc6..11faab6bae7 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-ie.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-ie.md @@ -1,7 +1,7 @@ --- title: How to recover server access if your user password is lost excerpt: Find out how to configure a new password for a user account on a GNU/Linux operating system with the OVHcloud rescue mode -updated: 2025-09-24 +updated: 2025-10-02 --- ## Objective @@ -75,25 +75,48 @@ If needed, before changing a password, **identify existing accounts** using the cat /etc/passwd ``` -To change the password for a specific account (e.g., **user1**), always specify the username: +Example output (shortened): + +```console +daemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin +bin:x:2:2:bin:/bin:/usr/sbin/nologin +sys:x:3:3:sys:/dev:/usr/sbin/nologin +. +nobody:x:65534:65534:nobody:/nonexistent:/usr/sbin/nologin +systemd-network:x:998:998:systemd Network Management:/:/usr/sbin/nologin +syslog:x:102:102::/nonexistent:/usr/sbin/nologin +sshd:x:105:65534::/run/sshd:/usr/sbin/nologin +. +user1:x:1000:1000:Ubuntu:/home/ubuntu:/bin/bash +``` + +Find your user name(s) in the list of accounts. +To change the password for a specific account (e.g. **user1**), enter this comand: ```bash passwd user1 +``` + +Enter the new password twice and confirm: + +```console # New password: # Retype new password: # passwd: password updated successfully ``` +On a GNU/Linux distribution, **a password prompt does not display your keyboard input**. + > [!primary] > -> Avoid running the `passwd` command without arguments: This command modifies the password of the current account (which is often **root** after running `chroot`). +> Avoid running the `passwd` command without arguments: This command modifies the password of the current account (which is **root** after executing `chroot`). > Always specify `passwd `. Remember to use the regular boot mode of your server when restarting it in your [OVHcloud Control Panel](/links/manager). Refer to the corresponding [rescue mode guide](#step1) if necessary. -You have now access to the server with your new password. +The modified user account has now access to the server with the new password. ## Go further diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-sg.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-sg.md index c7eeeb20cc6..11faab6bae7 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-sg.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-sg.md @@ -1,7 +1,7 @@ --- title: How to recover server access if your user password is lost excerpt: Find out how to configure a new password for a user account on a GNU/Linux operating system with the OVHcloud rescue mode -updated: 2025-09-24 +updated: 2025-10-02 --- ## Objective @@ -75,25 +75,48 @@ If needed, before changing a password, **identify existing accounts** using the cat /etc/passwd ``` -To change the password for a specific account (e.g., **user1**), always specify the username: +Example output (shortened): + +```console +daemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin +bin:x:2:2:bin:/bin:/usr/sbin/nologin +sys:x:3:3:sys:/dev:/usr/sbin/nologin +. +nobody:x:65534:65534:nobody:/nonexistent:/usr/sbin/nologin +systemd-network:x:998:998:systemd Network Management:/:/usr/sbin/nologin +syslog:x:102:102::/nonexistent:/usr/sbin/nologin +sshd:x:105:65534::/run/sshd:/usr/sbin/nologin +. +user1:x:1000:1000:Ubuntu:/home/ubuntu:/bin/bash +``` + +Find your user name(s) in the list of accounts. +To change the password for a specific account (e.g. **user1**), enter this comand: ```bash passwd user1 +``` + +Enter the new password twice and confirm: + +```console # New password: # Retype new password: # passwd: password updated successfully ``` +On a GNU/Linux distribution, **a password prompt does not display your keyboard input**. + > [!primary] > -> Avoid running the `passwd` command without arguments: This command modifies the password of the current account (which is often **root** after running `chroot`). +> Avoid running the `passwd` command without arguments: This command modifies the password of the current account (which is **root** after executing `chroot`). > Always specify `passwd `. Remember to use the regular boot mode of your server when restarting it in your [OVHcloud Control Panel](/links/manager). Refer to the corresponding [rescue mode guide](#step1) if necessary. -You have now access to the server with your new password. +The modified user account has now access to the server with the new password. ## Go further diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-us.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-us.md index c7eeeb20cc6..11faab6bae7 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-us.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.en-us.md @@ -1,7 +1,7 @@ --- title: How to recover server access if your user password is lost excerpt: Find out how to configure a new password for a user account on a GNU/Linux operating system with the OVHcloud rescue mode -updated: 2025-09-24 +updated: 2025-10-02 --- ## Objective @@ -75,25 +75,48 @@ If needed, before changing a password, **identify existing accounts** using the cat /etc/passwd ``` -To change the password for a specific account (e.g., **user1**), always specify the username: +Example output (shortened): + +```console +daemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin +bin:x:2:2:bin:/bin:/usr/sbin/nologin +sys:x:3:3:sys:/dev:/usr/sbin/nologin +. +nobody:x:65534:65534:nobody:/nonexistent:/usr/sbin/nologin +systemd-network:x:998:998:systemd Network Management:/:/usr/sbin/nologin +syslog:x:102:102::/nonexistent:/usr/sbin/nologin +sshd:x:105:65534::/run/sshd:/usr/sbin/nologin +. +user1:x:1000:1000:Ubuntu:/home/ubuntu:/bin/bash +``` + +Find your user name(s) in the list of accounts. +To change the password for a specific account (e.g. **user1**), enter this comand: ```bash passwd user1 +``` + +Enter the new password twice and confirm: + +```console # New password: # Retype new password: # passwd: password updated successfully ``` +On a GNU/Linux distribution, **a password prompt does not display your keyboard input**. + > [!primary] > -> Avoid running the `passwd` command without arguments: This command modifies the password of the current account (which is often **root** after running `chroot`). +> Avoid running the `passwd` command without arguments: This command modifies the password of the current account (which is **root** after executing `chroot`). > Always specify `passwd `. Remember to use the regular boot mode of your server when restarting it in your [OVHcloud Control Panel](/links/manager). Refer to the corresponding [rescue mode guide](#step1) if necessary. -You have now access to the server with your new password. +The modified user account has now access to the server with the new password. ## Go further diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.es-es.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.es-es.md index fdc3502299a..fc8b0e72470 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.es-es.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.es-es.md @@ -1,7 +1,7 @@ --- title: "Cómo recuperar el acceso al servidor en caso de pérdida de la contraseña del usuario" excerpt: "Cómo configurar una nueva contraseña para una cuenta de usuario en un sistema operativo GNU/Linux con el modo de rescate de OVHcloud" -updated: 2024-02-19 +updated: 2025-10-02 --- ## Objetivo @@ -75,15 +75,39 @@ Si es necesario, antes de modificar una contraseña, **identifique las cuentas e cat /etc/passwd ``` -Para cambiar la contraseña de una cuenta específica (por ejemplo: **user1**), siempre especifique el nombre de usuario: +Ejemplo de resultado (abreviado): + +```console +daemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin +bin:x:2:2:bin:/bin:/usr/sbin/nologin +sys:x:3:3:sys:/dev:/usr/sbin/nologin +. +nobody:x:65534:65534:nobody:/nonexistent:/usr/sbin/nologin +systemd-network:x:998:998:systemd Network Management:/:/usr/sbin/nologin +syslog:x:102:102::/nonexistent:/usr/sbin/nologin +sshd:x:105:65534::/run/sshd:/usr/sbin/nologin +. +user1:x:1000:1000:Ubuntu:/home/ubuntu:/bin/bash +``` + +Encuentre el nombre del usuario en la lista de cuentas. + +Para cambiar la contraseña de una cuenta específica (por ejemplo, **user1**), utilice este comando: ```bash passwd user1 +``` + +Introduzca la nueva contraseña dos veces: + +```console # New password: # Retype new password: # passwd: password updated successfully ``` +En una distribución GNU/Linux, **una petición de contraseña no muestra las entradas de teclado**. + > [!primary] > > Evite ejecutar el comando `passwd` sin argumentos: este comando modifica la contraseña de la cuenta actual (que suele ser **root** después de ejecutar `chroot`). @@ -93,7 +117,7 @@ Recuerde utilizar el modo de arranque **normal** del servidor al reiniciarlo des Consulte la [guía del modo de rescate](#step1) si es necesario. -Ya puede acceder al servidor con su nueva contraseña. +La cuenta de usuario modificada ahora tiene acceso al servidor con la nueva contraseña. ## Más información diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.es-us.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.es-us.md index 365733b06a2..4a93f768d0e 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.es-us.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.es-us.md @@ -1,7 +1,7 @@ --- title: "Cómo recuperar el acceso al servidor en caso de pérdida de la contraseña del usuario" excerpt: "Cómo configurar una nueva contraseña para una cuenta de usuario en un sistema operativo GNU/Linux con el modo de rescate de OVHcloud" -updated: 2024-02-19 +updated: 2025-10-02 --- ## Objetivo @@ -75,25 +75,49 @@ Si es necesario, antes de modificar una contraseña, **identifique las cuentas e cat /etc/passwd ``` -Para cambiar la contraseña de una cuenta específica (por ejemplo: **user1**), siempre especifique el nombre de usuario: +Ejemplo de resultado (abreviado): + +```console +daemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin +bin:x:2:2:bin:/bin:/usr/sbin/nologin +sys:x:3:3:sys:/dev:/usr/sbin/nologin +. +nobody:x:65534:65534:nobody:/nonexistent:/usr/sbin/nologin +systemd-network:x:998:998:systemd Network Management:/:/usr/sbin/nologin +syslog:x:102:102::/nonexistent:/usr/sbin/nologin +sshd:x:105:65534::/run/sshd:/usr/sbin/nologin +. +user1:x:1000:1000:Ubuntu:/home/ubuntu:/bin/bash +``` + +Encuentre el nombre del usuario en la lista de cuentas. + +Para cambiar la contraseña de una cuenta específica (por ejemplo, **user1**), utilice este comando: ```bash passwd user1 +``` + +Introduzca la nueva contraseña dos veces: + +```console # New password: # Retype new password: # passwd: password updated successfully ``` +En una distribución GNU/Linux, **una petición de contraseña no muestra las entradas de teclado**. + > [!primary] > > Evite ejecutar el comando `passwd` sin argumentos: este comando modifica la contraseña de la cuenta actual (que suele ser **root** después de ejecutar `chroot`). -> Siempre indique `passwd `. +> Indiquez systématiquement `passwd `. Recuerde utilizar el modo de arranque **normal** del servidor al reiniciarlo desde el [área de cliente de OVHcloud](/links/manager). Consulte la [guía del modo de rescate](#step1) si es necesario. -Ya puede acceder al servidor con su nueva contraseña. +La cuenta de usuario modificada ahora tiene acceso al servidor con la nueva contraseña. ## Más información diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.fr-ca.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.fr-ca.md index 0631b3c69d1..3936c875b11 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.fr-ca.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.fr-ca.md @@ -1,7 +1,7 @@ --- title: "Comment récupérer l'accès au serveur en cas de perte du mot de passe de l'utilisateur" excerpt: "Découvrez comment configurer un nouveau mot de passe pour un compte utilisateur sur un système d'exploitation GNU/Linux avec le mode rescue OVHcloud" -updated: 2025-09-24 +updated: 2025-10-02 --- ## Objectif @@ -75,15 +75,39 @@ Si besoin, avant de modifier un mot de passe, **identifiez les comptes existants cat /etc/passwd ``` -Pour changer le mot de passe d’un compte précis (par exemple : **user1**), spécifiez toujours le nom d’utilisateur : +Exemple de résultat (raccourci) : + +```console +daemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin +bin:x:2:2:bin:/bin:/usr/sbin/nologin +sys:x:3:3:sys:/dev:/usr/sbin/nologin +. +nobody:x:65534:65534:nobody:/nonexistent:/usr/sbin/nologin +systemd-network:x:998:998:systemd Network Management:/:/usr/sbin/nologin +syslog:x:102:102::/nonexistent:/usr/sbin/nologin +sshd:x:105:65534::/run/sshd:/usr/sbin/nologin +. +user1:x:1000:1000:Ubuntu:/home/ubuntu:/bin/bash +``` + +Retrouvez le nom de l'utilisateur dans la liste des comptes. + +Pour changer le mot de passe d’un compte précis (par exemple : **user1**), utilisez cette commande : ```bash passwd user1 +``` + +Renseignez deux fois le nouveau mot de passe : + +```console # New password: # Retype new password: # passwd: password updated successfully ``` +Sur une distribution GNU/Linux, **une invite de mot de passe n'affiche pas vos entrées clavier**. + > [!primary] > > Évitez d'exécuter la commande `passwd` sans argument : cette commande modifie le mot de passe du compte courant (qui est souvent **root** après l'exécution d'un `chroot`). @@ -93,7 +117,7 @@ Pensez à utiliser le mode de démarrage **normal** de votre serveur lorsque vou Consultez le [guide du mode rescue](#step1) si nécessaire. -Vous avez maintenant accès au serveur avec votre nouveau mot de passe. +Le compte utilisateur modifié a désormais accès au serveur avec le nouveau mot de passe. ## Aller plus loin diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.fr-fr.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.fr-fr.md index a66a375a8a8..3936c875b11 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.fr-fr.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.fr-fr.md @@ -1,7 +1,7 @@ --- title: "Comment récupérer l'accès au serveur en cas de perte du mot de passe de l'utilisateur" excerpt: "Découvrez comment configurer un nouveau mot de passe pour un compte utilisateur sur un système d'exploitation GNU/Linux avec le mode rescue OVHcloud" -updated: 2025-09-29 +updated: 2025-10-02 --- ## Objectif @@ -75,15 +75,39 @@ Si besoin, avant de modifier un mot de passe, **identifiez les comptes existants cat /etc/passwd ``` -Pour changer le mot de passe d’un compte précis (par exemple : **user1**), spécifiez toujours le nom d’utilisateur : +Exemple de résultat (raccourci) : + +```console +daemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin +bin:x:2:2:bin:/bin:/usr/sbin/nologin +sys:x:3:3:sys:/dev:/usr/sbin/nologin +. +nobody:x:65534:65534:nobody:/nonexistent:/usr/sbin/nologin +systemd-network:x:998:998:systemd Network Management:/:/usr/sbin/nologin +syslog:x:102:102::/nonexistent:/usr/sbin/nologin +sshd:x:105:65534::/run/sshd:/usr/sbin/nologin +. +user1:x:1000:1000:Ubuntu:/home/ubuntu:/bin/bash +``` + +Retrouvez le nom de l'utilisateur dans la liste des comptes. + +Pour changer le mot de passe d’un compte précis (par exemple : **user1**), utilisez cette commande : ```bash passwd user1 +``` + +Renseignez deux fois le nouveau mot de passe : + +```console # New password: # Retype new password: # passwd: password updated successfully ``` +Sur une distribution GNU/Linux, **une invite de mot de passe n'affiche pas vos entrées clavier**. + > [!primary] > > Évitez d'exécuter la commande `passwd` sans argument : cette commande modifie le mot de passe du compte courant (qui est souvent **root** après l'exécution d'un `chroot`). @@ -93,7 +117,7 @@ Pensez à utiliser le mode de démarrage **normal** de votre serveur lorsque vou Consultez le [guide du mode rescue](#step1) si nécessaire. -Vous avez maintenant accès au serveur avec votre nouveau mot de passe. +Le compte utilisateur modifié a désormais accès au serveur avec le nouveau mot de passe. ## Aller plus loin diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.it-it.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.it-it.md index 2ce33817c41..dd4d86ca8eb 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.it-it.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.it-it.md @@ -1,7 +1,7 @@ --- title: "Come recuperare l'accesso al server in caso di perdita della password dell'utente" excerpt: "Scopri come configurare una nuova password per un account utente su un sistema operativo GNU/Linux in modalità Rescue OVHcloud" -updated: 2024-02-19 +updated: 2025-10-02 --- ## Obiettivo @@ -65,25 +65,49 @@ Il comando esatto dipende dal punto di montaggio utilizzato. Ad esempio, se la p chroot /mnt/ ``` -### Passo 2 - Identificare l'account utente e reimpostare la password +### Step 2 - Identificare gli account utente e reimpostare la password -Dopo aver montato la partizione ed eseguito `chroot /mnt` (o l'equivalente), disponi dei privilegi root sul sistema montato. +Dopo aver montato la partizione ed eseguito `chroot /mnt` (o l’equivalente), disporrai dei privilegi **root** sul sistema montato. -Se necessario, prima di modificare una password, **identifica gli account esistenti** con il comando seguente: +Se necessario, prima di modificare una password, **identifica gli account esistenti** utilizzando questo comando: ```bash cat /etc/passwd ``` -Per modificare la password di un account specifico (ad esempio: **user1**), specifica sempre il nome utente: +Esempio di risultato (collegamento): + +```console +daemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin +bin:x:2:2:bin:/bin:/usr/sbin/nologin +sys:x:3:3:sys:/dev:/usr/sbin/nologin +. +nobody:x:65534:65534:nobody:/nonexistent:/usr/sbin/nologin +systemd-network:x:998:998:systemd Network Management:/:/usr/sbin/nologin +syslog:x:102:102::/nonexistent:/usr/sbin/nologin +sshd:x:105:65534::/run/sshd:/usr/sbin/nologin +. +user1:x:1000:1000:Ubuntu:/home/ubuntu:/bin/bash +``` + +Il nome dell'utente è disponibile nell'elenco degli account. + +Per modificare la password di un account specifico (ad esempio: **user1**), utilizza questo comando: ```bash passwd user1 +``` + +Inserisci due volte la nuova password: + +```console # New password: # Retype new password: # passwd: password updated successfully ``` +In una distribuzione GNU/Linux, **il prompt della password non visualizza le voci della tastiera**. + > [!primary] > > Evita di eseguire il comando `passwd` senza argomenti: questo comando modifica la password dell'account corrente (che è spesso **root** dopo l'esecuzione di `chroot`). @@ -93,7 +117,7 @@ Utilizza la modalità di avvio **normal** del tuo server quando lo riavvii dallo Se necessario, consulta la [guida del Rescue mode](#step1). -A questo punto, sarà possibile accedere al server con la nuova password. +L'account utente modificato ora ha accesso al server con la nuova password. ## Per saperne di più diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.pl-pl.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.pl-pl.md index 4155772aacb..459ec8c3fde 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.pl-pl.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.pl-pl.md @@ -1,7 +1,7 @@ --- title: "Jak odzyskać dostęp do serwera w przypadku utraty hasła użytkownika" excerpt: "Dowiedz się, jak skonfigurować nowe hasło dla konta użytkownika w systemie operacyjnym GNU/Linux w trybie rescue OVHcloud" -updated: 2024-02-19 +updated: 2025-10-02 --- ## Wprowadzenie @@ -65,25 +65,49 @@ Dokładne sterowanie zależy od użytego punktu montowania. Na przykład, jeśli chroot /mnt/ ``` -### Etap 2 - Zidentyfikowanie kont użytkownika i zresetowanie hasła +### Etap 2 - Identyfikacja konta użytkownika (kont użytkowników) i resetowanie hasła -Po zamontowaniu partycji i uruchomieniu `chroot /mnt` (lub odpowiednika), masz uprawnienia root do zamontowanego systemu. +Po zamontowaniu partycji i uruchomieniu `chroot /mnt` (lub odpowiednika), masz uprawnienia **root** w zainstalowanym systemie. -Jeśli to konieczne, przed zmianą hasła **zidentyfikuj istniejące konta** za pomocą poniższego polecenia: +Jeśli to konieczne, przed zmianą hasła **zidentyfikuj istniejące konta** za pomocą następującego polecenia: ```bash cat /etc/passwd ``` -Aby zmienić hasło dla konkretnego konta (np. **user1**), zawsze podaj nazwę użytkownika: +Przykład wyniku (skrócony): + +```console +daemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin +bin:x:2:2:bin:/bin:/usr/sbin/nologin +sys:x:3:3:sys:/dev:/usr/sbin/nologin +. +nobody:x:65534:65534:nobody:/nonexistent:/usr/sbin/nologin +systemd-network:x:998:998:systemd Network Management:/:/usr/sbin/nologin +syslog:x:102:102::/nonexistent:/usr/sbin/nologin +sshd:x:105:65534::/run/sshd:/usr/sbin/nologin +. +user1:x:1000:1000:Ubuntu:/home/ubuntu:/bin/bash +``` + +Znajdź Twoją nazwę użytkownika (lub nazwy użytkowników) na liście kont. + +Aby zmienić hasło dla wybranego konta (na przykład: **user1**), wpisz poniższe polecenie: ```bash passwd user1 +``` + +Dwukrotnie wpisz nowe hasło i potwierdź: + +```console # New password: # Retype new password: # passwd: password updated successfully ``` +W dystrybucji GNU/Linux **monit o hasło nie wyświetla danych wejściowych z klawiatury**. + > [!primary] > > Unikaj uruchamiania polecenia `passwd` bez argumentów: to polecenie zmienia hasło dla konta bieżącego (które często jest **root** po uruchomieniu `chroot`). @@ -93,7 +117,7 @@ Pamiętaj, aby podczas restartu serwera z poziomu [Panelu klienta OVHcloud](/lin W razie potrzeby sprawdź przewodnik [Tryb ratunkowy](#step1). -Teraz masz dostęp do serwera za pomocą nowego hasła. +Zmodyfikowane konto użytkownika ma teraz dostęp do serwera z nowym hasłem. ## Sprawdź również diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.pt-pt.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.pt-pt.md index 41938c100c0..429e389311f 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.pt-pt.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.pt-pt.md @@ -1,7 +1,7 @@ --- title: "Como recuperar o acesso ao servidor em caso de perda da palavra-passe do utilizador" excerpt: "Saiba como configurar uma nova palavra-passe para uma conta de utilizador num sistema operativo GNU/Linux com o modo rescue OVHcloud" -updated: 2024-02-19 +updated: 2025-10-02 --- ## Objetivo @@ -67,7 +67,7 @@ chroot /mnt/ ### Etapa 2 - Identificar a(s) conta(s) de usuário e redefinir a senha -Após montar a partição e executar `chroot /mnt` (ou o equivalente), você terá privilégios root no sistema montado. +Depois de montar a partição e executar `chroot /mnt` (ou equivalente), dispõe dos privilégios **root** no sistema montado. Se necessário, antes de alterar uma senha, **identifique as contas existentes** com o seguinte comando: @@ -75,15 +75,39 @@ Se necessário, antes de alterar uma senha, **identifique as contas existentes** cat /etc/passwd ``` -Para alterar a senha de uma conta específica (por exemplo: **user1**), sempre especifique o nome do usuário: +Exemplo de resultado (atalho): + +```console +daemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin +bin:x:2:2:bin:/bin:/usr/sbin/nologin +sys:x:3:3:sys:/dev:/usr/sbin/nologin +. +nobody:x:65534:65534:nobody:/nonexistent:/usr/sbin/nologin +systemd-network:x:998:998:systemd Network Management:/:/usr/sbin/nologin +syslog:x:102:102::/nonexistent:/usr/sbin/nologin +sshd:x:105:65534::/run/sshd:/usr/sbin/nologin +. +user1:x:1000:1000:Ubuntu:/home/ubuntu:/bin/bash +``` + +Encontre o nome do utilizador na lista das contas. + +Para alterar a palavra-passe de uma conta específica (por exemplo: **user1**), utilize este comando: ```bash passwd user1 +``` + +Introduza a nova palavra-passe duas vezes: + +```console # New password: # Retype new password: # passwd: password updated successfully ``` +Numa distribuição GNU/Linux, **uma indicação de palavra-passe não apresenta as suas entradas de teclado**. + > [!primary] > > Evite executar o comando `passwd` sem argumentos: este comando modifica a senha da conta atual (que é frequentemente **root** após a execução de `chroot`). @@ -93,7 +117,7 @@ Lembre-se de utilizar o modo de arranque **normal** do seu servidor quando o rei Consulte [manual do modo rescue](#step1) se necessário. -Agora já tem acesso ao servidor com a sua nova palavra-passe. +A conta de utilizador modificada terá acesso ao servidor com a nova palavra-passe. ## Quer saber mais? From 65597e276d6839e609af65742287d2954c7d05bd Mon Sep 17 00:00:00 2001 From: tcpdumpfbacke <63296875+tcpdumpfbacke@users.noreply.github.com> Date: Thu, 2 Oct 2025 15:07:46 +0200 Subject: [PATCH 12/12] DE proof --- .../replacing-user-password/guide.de-de.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.de-de.md b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.de-de.md index 6c2e84a6857..5cae471b956 100644 --- a/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.de-de.md +++ b/pages/bare_metal_cloud/dedicated_servers/replacing-user-password/guide.de-de.md @@ -24,7 +24,7 @@ In diesem Fall können Sie sich über den OVHcloud Rescue-Modus mit Ihrem Server > [!primary] > -> Diese Anleitung gilt nicht für Installationen von **Windows** Server. Folgen Sie stattdessen unserer Anleitung zum [Ändern des Administratorpassworts auf einem Windows Dedicated Server](/pages/bare_metal_cloud/dedicated_servers/rcw-changing-admin-password-on-windows) oder [Ändern des Administrator-Passworts auf einem Windows VPS](/pages/bare_metal_cloud/virtual_private_servers/resetting_a_windows_password). +> Diese Anleitung gilt nicht für Installationen von **Windows** Server. Folgen Sie stattdessen unserer Anleitung zum [Ändern des Administrator-Passworts auf einem Windows Dedicated Server](/pages/bare_metal_cloud/dedicated_servers/rcw-changing-admin-password-on-windows) oder [Ändern des Administrator-Passworts auf einem Windows VPS](/pages/bare_metal_cloud/virtual_private_servers/resetting_a_windows_password). > ## In der praktischen Anwendung @@ -65,11 +65,11 @@ Der exakte Befehl hängt vom verwendeten Mountpunkt ab. Wenn Sie Ihre Partition chroot /mnt/ ``` -### Schritt 2 - Identifizieren der Benutzerkonten und Zurücksetzen des Kennworts +### Schritt 2 - Identifizieren der Benutzer-Accounts und Zurücksetzen des Passworts Nachdem Sie die Partition gemountet und `chroot /mnt` (oder den entsprechenden Befehl) ausgeführt haben, verfügen Sie über **root**-Berechtigungen auf dem System. -Ermitteln Sie ggf. vorhandene Konten mithilfe des folgenden Befehls, bevor Sie ein Kennwort ändern: +Ermitteln Sie ggf. alle relevanten Benutzer-Accounts mithilfe des folgenden Befehls: ```bash cat /etc/passwd @@ -90,9 +90,9 @@ sshd:x:105:65534::/run/sshd:/usr/sbin/nologin user1:x:1000:1000:Ubuntu:/home/ubuntu:/bin/bash ``` -Suchen Sie Ihre(n) Benutzernamen in der Liste der Konten. +Finden Sie Ihre(n) zu bearbeitenden Benutzernamen in der Liste der Accounts. -Geben Sie folgenden Befehl ein, um das Kennwort für ein bestimmtes Konto zu ändern (z. B. **user1**): +Geben Sie folgenden Befehl ein, um das Kennwort für einen bestimmten Account zu ändern (z. B. **user1**): ```bash passwd user1 @@ -106,18 +106,18 @@ Geben Sie das neue Kennwort zweimal ein und bestätigen Sie: # passwd: password updated successfully ``` -Bei einer GNU/Linux-Distribution zeigt **die Eingabeaufforderung für das Passwort Ihre Tastatureingabe nicht an**. +Bei einer GNU/Linux-Distribution zeigt **die Eingabeaufforderung für Passwörter Ihre Tastatureingabe nicht an**. > [!primary] > > Vermeiden Sie es, den Befehl `passwd` ohne Argumente auszuführen: Dieser Befehl ändert das Passwort des aktuellen Kontos (**root** nach der Ausführung von `chroot` ist). > Verwenden Sie deshalb `passwd `. -Denken Sie daran, den regulären Startmodus zu verwenden, bevor Sie Ihren Server im [OVHcloud Kundencenter](/links/manager) neu starten. +Denken Sie daran, den regulären Startmodus zu aktivieren, bevor Sie Ihren Server im [OVHcloud Kundencenter](/links/manager) neu starten. Folgen Sie bei Bedarf der passenden [Anleitung zum Rescue-Modus](#step1). -Das geänderte Benutzerkonto hat nun Zugriff auf den Server mit dem neuen Kennwort. +Der bearbeitete Benutzer-Account hat nun Zugriff auf den Server mit dem neuen Passwort. ## Weiterführende Informationen @@ -129,4 +129,4 @@ Das geänderte Benutzerkonto hat nun Zugriff auf den Server mit dem neuen Kennwo [Konfigurieren von Benutzer-Accounts und Root-Zugriff auf einem Server](/pages/bare_metal_cloud/dedicated_servers/changing_root_password_linux_ds) -Für den Austausch mit unserer User Community gehen Sie auf . \ No newline at end of file +Für den Austausch mit unserer User Community gehen Sie auf .