".extra-menu { background-color: #f3f3f3; padding: 20px; } .extra-menu .extra-menu-h { height: 36px; } .extra-menu .extra-menu-h h3 { display:inline-block; } .extra-menu ul a{ text-decoration: none; } .extra-menu .menu-child { text-indent: 4em; } .extra-menu .menu-child:before { left: 4em; } .extra-menu .extra-menu-h h3 { line-height: 36px; } .collapse-toggle { float: right; cursor: pointer; user-select: none; display: inline-flex; align-items: center; font-size: 14px; } .collapse-toggle img { width: 30%; transform: rotate(180deg); } .collapse-content { margin-bottom: 0px !important; margin-top: 20px !important; overflow: hidden; max-height: 0; transition: max-height 0.3s ease-out; } .collapse-content.expanded { max-height: 1000px; /\* 设置一个足够大的值,确保内容可以完全展开 \*/ } .ph-id { position: relative; top: -90px; } jQuery(document).ready(function( $ ) { $('.collapse-toggle').on('click',function(){ var content = document.querySelector('.collapse-content'); content.classList.toggle('expanded'); if (content.classList.contains('expanded')) { $(this).find('div').text('收起'); $(this).find('img').css('transform','rotate(180deg)'); } else { $(this).find('div').text('展开'); $(this).find('img').css('transform','rotate(0deg)'); } }) })
Vultr作为一家优秀的[国外主机](/#)商,多年来凭借高性能的云服务器产品及完善的售后服务,受到广大站长朋友的喜爱。新手朋友在初次使用Vultr VPS时,可能会遇到Vultr实例被锁定且无法访问root账户情况,这时需要启动到单用户模式并重置root密码。下面以Fedora系统为例来看下如何在Fedora上重置根密码。
1、首先访问[Vultr](/#)客户门户中的实例控制台。
![](https://www.idcspy.com/wp-content/uploads/2021/07/vultr-1.jpg)
2、单击Web 控制台右上角的“Send CtrlAltDel”按钮。
![](https://www.idcspy.com/wp-content/uploads/2021/07/vultr1.jpg)
您也可以单击服务器重新启动图标。
![](https://www.idcspy.com/wp-content/uploads/2021/07/vultr2.jpg)
3、在系统引导时,按 ESC键调出 GRUB 引导提示。提示发生在引导过程的早期。如果您错过了提示,则需要从Vultr控制面板重新启动服务器并重试。
4、在 GRUB 引导提示下,按E编辑第一个引导选项。
5、找到以Linux开头的内核行。
6、更改ro为rw init=/sysroot/bin/sh。
7、按CTRL+X或F10启动进入单用户模式。
8、使用以下命令访问Fedora系统:
> chroot /sysroot
9、Fedora系统重新启动后,您将看到 root 提示符,然后依次运行以下命令,进行根密码重置操作。
10、运行passwd以更改 root 密码。
11、运行touch /.autorelabel以强制重新标记文件系统。
12、运行exit。
13、运行logout。
14、运行reboot以重新启动Vultr服务器。"
松果号 作者:松果号原创文章,如若转载,请注明出处:https://www.6480i.com/archives/105591.html