VPS@ovh.comを購入し、ルートパスワードを変更しましたが、今は覚えていません。フォーラムの手順に従ったが何も機能しないようで、構造上パスワードモードだけが変更されました。
私が試したいくつかのことは次のとおりです。
mount -o rw /dev/sda1 /mnt
chroot /mnt
passwd
reboot server to normal mode
&
mount /dev/sda1 /mnt
chroot /mnt
nano /etc/shadow //changed the password with another one generated with openssl
reboot server
答え1
あなたの姿を見ながらcat /proc/mounts
出力、リカバリシステムが開いていることが確認され、リカバリ/dev/sda1
システムのパスワードを変更しています(このパスワードは無視され、再起動後に画像が削除されます)。システムがにインストールされています/mnt/sdb1
。
「VPSの再起動」ボタンがこれを行うことを保証できないため、ファイルシステムが完全にアンマウントされていることを確認するのも良い習慣です。
chroot /mnt/sdb1
passwd
exit # get out of chroot
umount /mnt/sdb1 # unmount the filesystem
sync # just for paranoia
その後、再起動できます。