2019-02-28 21:09:55 +03:00
Glossary
========
.. glossary ::
2019-03-02 12:31:32 +03:00
`Virtual machine`_
2020-04-14 18:12:47 +03:00
A virtual machine is a program that can execute an entire
operating system inside an emulated hardware environment.
2019-03-02 12:31:32 +03:00
`Container`_
2020-04-14 18:12:47 +03:00
A container is an isolated user space. Programs run directly on
2021-10-27 17:19:27 +03:00
the host's kernel, but with limited access to the host's resources.
2019-03-02 12:31:32 +03:00
2019-11-13 15:10:56 +03:00
Datastore
2020-04-14 18:12:47 +03:00
A place to store backups. A directory which contains the backup data.
2020-07-21 14:01:21 +03:00
The current implementation is file-system based.
2019-11-13 15:10:56 +03:00
2019-03-02 12:31:32 +03:00
`Rust`_
Rust is a new, fast and memory-efficient system programming
2020-04-14 18:12:47 +03:00
language. It has no runtime or garbage collector. Rust’ s rich type
2019-03-02 12:31:32 +03:00
system and ownership model guarantee memory-safety and
2021-10-27 17:19:27 +03:00
thread-safety. This can eliminate many classes of bugs
2019-03-02 12:31:32 +03:00
at compile-time.
2019-02-28 21:23:48 +03:00
`Sphinx`_
2019-02-28 21:09:55 +03:00
2021-10-27 17:19:27 +03:00
Is a tool that makes it easy to create intelligent and nicely formatted
documentation. It was originally created for the documentation of the
Python programming language. It has excellent facilities for the
2019-02-28 21:23:48 +03:00
documentation of software projects in a range of languages.
`reStructuredText`_
2021-10-27 17:19:27 +03:00
Is an easy-to-read, what-you-see-is-what-you-get, plaintext
2019-02-28 21:23:48 +03:00
markup syntax and parser system.
2020-01-30 16:19:08 +03:00
2020-02-28 13:55:25 +03:00
`FUSE`
2020-01-30 16:19:08 +03:00
2020-02-28 13:55:25 +03:00
Filesystem in Userspace (`FUSE <https://en.wikipedia.org/wiki/Filesystem_in_Userspace> `_ )
2020-04-14 18:12:47 +03:00
defines an interface which makes it possible to implement a filesystem in
2020-02-28 13:55:25 +03:00
userspace as opposed to implementing it in the kernel. The fuse
2020-04-14 18:12:47 +03:00
kernel driver handles filesystem requests and sends them to a
userspace application.
2020-01-30 16:19:08 +03:00
2020-07-09 15:59:14 +03:00
Remote
A remote Proxmox Backup Server installation and credentials for a user on it.
You can pull datastores from a remote to a local datastore in order to
have redundant backups.