".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](/#) VPS后,为了安全考虑,通常会先创建一个具有sudo权限的非根用户来管理服务器。Vultr VPS提供有多种Linux发行版选项,那么如何在CentOS上创建sudo权限用户?下面一起来看下主要步骤介绍。
![](https://www.idcspy.com/wp-content/uploads/2021/11/1-41.jpg)
Vultr主机商目前提供有“充多少送多少”超值优惠活动,新用户首充最高赠送100美元,有效期12个月,还是非常划算的。有需要的朋友,可以参考:《[Vultr优惠码使用教程和优惠解读](/#)》
步骤1、首先使用SSH工具登录到Vultr VPS服务器上,登录信息一般可以在欢迎邮件中获得。成功登录服务器后,在命令行界面运行以下命令添加一个新用户example\_user,并为其设置强密码。
> \# adduser example\_user
>
> \# passwd example\_user
>
> Changing password for user example\_user.
>
> New password:
>
> Retype new password:
>
> passwd: all authentication tokens updated successfully.
步骤2、将新创建的用户example\_user添加到Wheel Group中
> \# usermod -aG wheel example\_user
步骤3、修改sudoers文件
执行visudo命令查看sudoers配置文件。
> \# visudo
查看group wheel,如果该行被禁用,则删除注释,然后保存文件。
\## Allows people in group wheel to run all commands
%wheel ALL=(ALL) ALL
步骤4、切换到新用户
> \# su – example\_user
使用whoami命令查看是否显示新用户名,并利用sudo whoami检查访问权限,返回结果应为root。
> $ whoami
>
> example\_user
>
> $ sudo whoami
>
> \[sudo\] password for example\_user:
>
> root"
松果号 作者:松果号原创文章,如若转载,请注明出处:https://www.6480i.com/archives/104840.html