".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)'); } }) })
Restic是一个用Go语言编写的快速、安全、高效的备份程序,您可以在Linux服务器上安装并使用它进行备份数据。如果您租用的是Hostwinds[美国服务器](https://www.idcspy.com/)(Linux系统),那么可以参考以下步骤将Restic程序挂载到您的服务器上。
[Hostwinds](/#)美国服务器有CentOS、Ubuntu、Fedora、Debian四个Linux发行版系统可选,不同的Linux发行版安装命令有所不同,您可以按照所选的系统运行下面命令安装fuse。
①[CentOS](/#)
> yum install fuse
②Ubuntu
> apt-get install fuse
③Fedora
> yum install fuse
④Debian
> apt-get install fuse
fuse安装完成后,如果要挂载您的restic存储库,需先创建您选择的挂载点,本文使用的挂载目录是 /mnt/backups。
> \# mkdir /mnt/backups
>
> \# restic mount /mnt/backups
>
> password is correct
>
> Now serving the repository at /mnt/backups
>
> Don’t forget to umount after quitting!
运行此操作后,该进程将一直处于运行中,如果想要取消进程,可以使用ctrl+c快捷键。当您想要浏览备份文件,您需要打开另一个终端或FTP客户端进行访问。
使用本文示例的挂载点时,您的备份(快照)是位于/mnt/backups/snapshots。每个快照都标有日期和时间戳,您的最新备份位于标有最新的符号链接文件夹中。这些文件是只读的,这意味着您不能移动或编辑它们,但可以进行复制。
您可以在文件系统中找到您所要恢复的备份文件,然后在 Linux 中使用 copy 命令来复制要恢复的文件或文件夹。通过复制命令您可以将这些文件还原到其他位置,或者将它们还原到最初位置。
复制文件或文件夹的命令:
> cp filename filepath/filename
IE:
> cp testfile.txt /root/txtfile.txt
您可以通过以下命令复制多个文件或文件夹:
> cp -R myDirectory/ /root/mydirectory
文件复制完成后,您可以取消在原始终端窗口中运行的挂载命令。"
松果号 作者:松果号原创文章,如若转载,请注明出处:https://www.6480i.com/archives/105553.html