".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云服务器时,您可以在部署页面上设置服务器主机名。后期如果您想修改基于Arch Linux系统的Vultr服务器主机名,那么可参考以下步骤进行更改。
1、使用SSH工具登录到Arch Linux服务器上,本文以Vultr[美国VPS](/#)为例。然后在SSH命令行窗口运行下面命令,检查当前主机名。
> $ hostnamectl
检查主机文件:
> $ getent hosts
2、将主机名更改为newtricks
> $ sudo hostnamectl set-hostname newtricks
3、使用文本编辑器编辑/etc/hosts,将旧主机名的实例更改为新主机名。
> $ sudo vim /etc/hosts
旧主机文件示例:
127.0.0.1 idcspy
::1 idcspy
新主机文件示例:
127.0.0.1 newtricks newtricks.example.com
::1 newtricks newtricks.example.com
4、重新启动[Arch Linux](/#)服务器或注销并再次登录到您的用户会话。
5、最后,运行下面命令检查主机名更改是否生效。
> $ hostnamectl
如无意外,输出结果应为:
Static hostname: newtricks
运行下面命令检查主机文件。
> $ getent hosts
输出结果为:
127.0.0.1 localhost
127.0.0.1 localhost
127.0.1.1 newtricks.localdomain newtricks
以上是Arch Linux服务器更改主机名的方法步骤介绍,该方法可以在不删除服务器的情况下对主机名进行修改。
**拓展阅读:**《[Vultr教程:如何在Arch Linux上创建sudo权限用户](/#)》"
松果号 作者:松果号原创文章,如若转载,请注明出处:https://www.6480i.com/archives/103538.html