".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)'); } }) })
[美国主机](https://www.idcspy.com/)商Vultr近年来发展比较不错,它旗下的VPS支持按小时计费,拥有多操作系统选项,随买随用非常方便。AlmaLinux是作为CentOS的替代品而创建的开源企业级Linux 发行版,目前您可在Vultr VPS配置信息中选择它作为操作系统。
为了安全起见,我们在[Vultr](/#)部署AlmaLinux 实例时,通常会先创建一个具有sudo权限的非root用户来管理服务器。下面一起来看下在AlmaLinux上创建Sudo用户的操作步骤。
**1、添加新用户帐户**
使用adduser命令创建一个新的Vultr帐户。
> \# adduser example\_user
运行下面命令创建一个强密码,创建完毕后记得保存好该密码哦,以便后续登录使用。
> \# passwd example\_user
Changing password for user example\_user.
New password:
Retype new password:
passwd: all authentication tokens updated successfully.
**2、将用户添加到轮组**
使用usermod命令将新用户添加到轮组。
> \# usermod -aG wheel example\_user
3、编辑Sudoers文件
检查sudoers文件visudo。
> \# visudo
寻找轮组。如果该行被禁用,请删除注释。当您准备好保存文件时,它应该如下所示。
> \## Allows people in group wheel to run all commands
>
> %wheel ALL=(ALL) ALL
保存并退出 vi。键入ESC,然后:WQ,然后ENTER。
注意: visudo 实用程序在将您的编辑提交到文件之前执行语法检查。格式错误的 sudoers 文件可能会破坏您的系统。切勿直接编辑 /etc/sudoers。例如,如果出现错误,您会在退出 visudo 时看到如下信息。
visudo: >>> /etc/sudoers: syntax error near line 64 <<
验证您是的新用户whoami,然后测试 sudo 访问sudo whoami,它应该返回root。
> $ whoami
example\_user
> $ sudo whoami
\[sudo\] password for example\_user:
root"
松果号 作者:松果号原创文章,如若转载,请注明出处:https://www.6480i.com/archives/105478.html