]> git.proxmox.com Git - pve-docs.git/blame_incremental - pve-storage-dir.adoc
bump version to 5.0-5
[pve-docs.git] / pve-storage-dir.adoc
... / ...
CommitLineData
1Directory Backend
2-----------------
3ifdef::wiki[]
4:pve-toplevel:
5:title: Storage: Directory
6endif::wiki[]
7
8Storage pool type: `dir`
9
10{pve} can use local directories or locally mounted shares for
11storage. A directory is a file level storage, so you can store any
12content type like virtual disk images, containers, templates, ISO images
13or backup files.
14
15NOTE: You can mount additional storages via standard linux `/etc/fstab`,
16and then define a directory storage for that mount point. This way you
17can use any file system supported by Linux.
18
19This backend assumes that the underlying directory is POSIX
20compatible, but nothing else. This implies that you cannot create
21snapshots at the storage level. But there exists a workaround for VM
22images using the `qcow2` file format, because that format supports
23snapshots internally.
24
25TIP: Some storage types do not support `O_DIRECT`, so you can't use
26cache mode `none` with such storages. Simply use cache mode
27`writeback` instead.
28
29We use a predefined directory layout to store different content types
30into different sub-directories. This layout is used by all file level
31storage backends.
32
33.Directory layout
34[width="100%",cols="d,m",options="header"]
35|===========================================================
36|Content type |Subdir
37|VM images |`images/<VMID>/`
38|ISO images |`template/iso/`
39|Container templates |`template/cache/`
40|Backup files |`dump/`
41|===========================================================
42
43
44Configuration
45~~~~~~~~~~~~~
46
47This backend supports all common storage properties, and adds an
48additional property called `path` to specify the directory. This
49needs to be an absolute file system path.
50
51.Configuration Example (`/etc/pve/storage.cfg`)
52----
53dir: backup
54 path /mnt/backup
55 content backup
56 maxfiles 7
57----
58
59Above configuration defines a storage pool called `backup`. That pool
60can be used to store up to 7 backups (`maxfiles 7`) per VM. The real
61path for the backup files is `/mnt/backup/dump/...`.
62
63
64File naming conventions
65~~~~~~~~~~~~~~~~~~~~~~~
66
67This backend uses a well defined naming scheme for VM images:
68
69 vm-<VMID>-<NAME>.<FORMAT>
70
71`<VMID>`::
72
73This specifies the owner VM.
74
75`<NAME>`::
76
77This can be an arbitrary name (`ascii`) without white space. The
78backend uses `disk-[N]` as default, where `[N]` is replaced by an
79integer to make the name unique.
80
81`<FORMAT>`::
82
83Specifies the image format (`raw|qcow2|vmdk`).
84
85When you create a VM template, all VM images are renamed to indicate
86that they are now read-only, and can be used as a base image for clones:
87
88 base-<VMID>-<NAME>.<FORMAT>
89
90NOTE: Such base images are used to generate cloned images. So it is
91important that those files are read-only, and never get modified. The
92backend changes the access mode to `0444`, and sets the immutable flag
93(`chattr +i`) if the storage supports that.
94
95
96Storage Features
97~~~~~~~~~~~~~~~~
98
99As mentioned above, most file systems do not support snapshots out
100of the box. To workaround that problem, this backend is able to use
101`qcow2` internal snapshot capabilities.
102
103Same applies to clones. The backend uses the `qcow2` base image
104feature to create clones.
105
106.Storage features for backend `dir`
107[width="100%",cols="m,m,3*d",options="header"]
108|==============================================================================
109|Content types |Image formats |Shared |Snapshots |Clones
110|images rootdir vztempl iso backup |raw qcow2 vmdk subvol |no |qcow2 |qcow2
111|==============================================================================
112
113
114Examples
115~~~~~~~~
116
117Please use the following command to allocate a 4GB image on storage `local`:
118
119 # pvesm alloc local 100 vm-100-disk10.raw 4G
120 Formatting '/var/lib/vz/images/100/vm-100-disk10.raw', fmt=raw size=4294967296
121 successfully created 'local:100/vm-100-disk10.raw'
122
123NOTE: The image name must conform to above naming conventions.
124
125The real file system path is shown with:
126
127 # pvesm path local:100/vm-100-disk10.raw
128 /var/lib/vz/images/100/vm-100-disk10.raw
129
130And you can remove the image with:
131
132 # pvesm free local:100/vm-100-disk10.raw
133
134
135ifdef::wiki[]
136
137See Also
138~~~~~~~~
139
140* link:/wiki/Storage[Storage]
141
142endif::wiki[]
143
144