官方推荐使用mount来进行恢复
Mounting allows you to map a content in Kopia repository into a directory in local filesystem and examine it using regular file commands or browser. This is currently the recommended way of restoring files from snapshots.
https://kopia.io/docs/mounting/
当使用mount进行恢复时,遇到如下错误:
一、ERROR mount error: mounting error: exec: "/bin/fusermount": stat /bin/fusermount: no such file or directory
解决:yum install fuse
[root@localhost ~]# kopia mount k844bd2d8db8550b4b8ab81d6ba14a37b test/
ERROR mount error: mounting error: exec: "/bin/fusermount": stat /bin/fusermount: no such file or directory
[root@localhost ~]#yum install fuse
......
[root@localhost ~]# whereis fusermount
fusermount: /usr/bin/fusermount /usr/share/man/man1/fusermount.1.gz
[root@localhost ~]#
[root@localhost ~]# modprobe fuse
[root@localhost ~]#
二、modprobe: Error: could not insert 'fuse': Cannot allocate memory
[root@localhost ~]# kopia mount k844bd2d8db8550b4b8ab81d6ba14a37b test/
/usr/bin/fusermount: fuse device not found, try 'modprobe fuse' first
ERROR mount error: mounting error: fusermount exited with code 256
[root@localhost ~]# modprobe fuse
modprobe: Error: could not insert 'fuse': Cannot allocate memory
网友评论