add mdconfig

This commit is contained in:
JMARyA 2024-03-01 13:16:36 +01:00
parent 21f5b76cd4
commit 808ec21d37
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263

View file

@ -4,7 +4,79 @@ obj: os
---
# FreeBSD
#wip #🐇 #notnow
#wip #🐇 #notnow #bsd
FreeBSD is an operating system used to power modern servers, desktops, and embedded platforms. A large community has continually developed it for more than thirty years. Its advanced networking, security, and storage features (using [ZFS](../linux/filesystems/ZFS.md) natively) have made FreeBSD the platform of choice for many of the busiest web sites and most pervasive embedded networking and storage devices.
# pkg
Pkg is the Package Manager on BSDs
## pkg
Pkg is the Package Manager on BSDs
#refactor -> add pkg usage
## mdconfig
`mdconfig` lets you create and control memory disks.
Usage: `mdconfig [OPTIONS]`
`mdconfig file` is provided for convenience as an abbreviation of `mdconfig -a -t vnode -f file`.
### Options
| Option | Description |
| --------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `-a` | Attach a memory disk. This will configure and attach a memory disk with the parameters specified and attach it to the system. If the `-u unit` option is not provided, the newly created device name will be printed to stdout |
| `-d` | Detach a memory disk from the system and release all resources |
| `-r` | Resize a memory disk |
| `-t type` | Select the type of the memory disk:<br>- `malloc`: Storage for this type of memory disk is allocated with malloc<br>- `vnode`: A file specified with `-f file` becomes the backing store for this memory disk<br>- `swap`: Storage for this type of memory disk is allocated from buffer memory. Pages get pushed out to swap when the system is under memory pressure. Using is generally preferred over `malloc`<br>- `null`: Bitsink, all writes do nothing, all reads return zero |
| `-f file` | Filename to use for the vnode type memory disk |
| `-l` | List configured devices. Use with `-u` or `-v` for more details |
| `-n` | When printing md device names, print only the unit number without the md prefix |
| `-s size` | Size of the memory disk |
| `-S sectorsize` | Sectorsize to use for the memory disk |
| `-L label` | Associate a label with the new memory disk |
| -o OPTION | **\[no]option**: Set or reset options. <br><br> **\[no]async**: For vnode backed devices: avoid `IO_SYNC` for increased performance but at the risk of deadlocking the entire kernel. <br><br> **\[no]cache**: For vnode backed devices: enable/disable caching of data in system caches. The default is to not cache. Accesses via the device are converted to accesses via the vnode. The caching policy for the vnode is used initially. This is normally to cache. This caching policy is retained if the cache option is used. Otherwise, caching is limited by releasing data from caches soon after each access. The release has the same semantics as the `POSIX_FADV_DONTNEED` feature of posix_fadvise. The result is that with normal (non-zfs) caching, buffers are released from the buffer cache soon after they are constructed, but their data is kept in the page cache at lower priority. The cache option tends to waste memory by giving unwanted double caching, but it saves time if there is memory to spare. <br><br> **\[no]reserve**: Allocate and reserve all needed storage from the start, rather than as needed. <br><br> **\[no]cluster**: Enable clustering on this disk. <br><br> **\[no]compress**: Enable/disable compression features to reduce memory usage. <br><br> **\[no]force**: Disable/enable extra sanity checks to prevent the user from doing something that might adversely affect the system. This can be used with the `-d` flag to forcibly destroy an md disk that is still in use. <br><br> **\[no]mustdealloc**: For vnode backed devices: detect whether hole-punching is supported by the underlying file system. If the file system supports hole-punching, then to handle a `BIO_DELETE` request, some or all of the request's operation range may be turned into a hole in the file used for backing store. Any parts which are not turned into holes are zero-filled in the file. If the file system does not support hole-punching, `BIO_DELETE` requests to the device are not handled and will fail with `EOPNOTSUPP`. When mustdealloc is not specified or \[no]mustdealloc is specified, for a `BIO_DELETE` request, if the file system supports hole-punching, some or all of the request's operation range may be turned into a hole in the file used for backing store. Any parts which are not turned into holes are zero-filled in the file. If the file system of the vnode type memory disk does not support hole-punching, the request's operation range is zero-filled in the file. <br><br> **\[no]readonly**: Enable/disable readonly mode. <br><br> **\[no]verify**: For vnode backed devices: enable/disable requesting verification of the file used for backing store. The type of verification depends on which security features are available. One example of verification is testing file integrity with checksums or cryptographic signatures. |
| -u unit | Request a specific unit number or device name for the md device instead of automatic allocation. If a device name is specified, it must start with "md" followed by the unit number. |
### Examples
Create a disk with `/tmp/boot.flp` as backing storage. The name of the allocated unit will be printed on stdout, such as "md0":
```shell
mdconfig /tmp/boot.flp
```
Create a 1 gigabyte swap backed memory disk named "md3":
```shell
mdconfig -s 1g -u md3
```
Detach and free all resources used by `/dev/md3`:
```shell
mdconfig -du md3
```
Show detailed information on current memory disks:
```shell
mdconfig -lv
```
Resize the "md3" memory disk to 2 gigabytes:
```shell
mdconfig -rs 2g -u md3
```
Create a 1 gigabyte swap backed disk, initialize an ffs file system on it, and mount it on `/tmp`:
```shell
mdconfig -s 1g -u md10
newfs -U /dev/md10
mount /dev/md10 /tmp
chmod 1777 /tmp
```
Create a memory disk out of an ISO 9660 CD image file, using the first available md device, and then mount it:
```shell
mount -t cd9660 /dev/`mdconfig -f cdimage.iso` /mnt
```
Create a file-backed device from a hard disk image that begins with 512K of raw header information. gnop is used to skip over the header information, positioning md1.nop to the start of the filesystem in the image.
```shell
mdconfig -u md1 -f diskimage.img
gnop create -o 512K md1
mount /dev/md1.nop /mnt
```