GEOM_UNCOMPRESS(4) BSD Kernel Interfaces Manual GEOM_UNCOMPRESS(4)NAME
geom_uncompress -- GEOM based compressed disk images
SYNOPSIS
To compile this driver into the kernel, place the following line in your kernel configuration file:
options GEOM_UNCOMPRESS
Alternatively, to load the driver as a module at boot time, place the following line in loader.conf(5):
geom_uncompress_load="YES"
DESCRIPTION
The geom_uncompress framework provides support for compressed read only disk images. This allows significant storage savings at the expense
of a little CPU time on each read. Data written in the GEOM label area allows geom_uncompress to detect compressed images which have been
created with mkulzma(8) or mkuzip(8) and presented to the kernel as a logical disk device via md(4). geom_uncompress creates a unique
md#.uncompress device for each image.
The geom_uncompress device is subsequently used by the FreeBSD kernel to access the disk images. The geom_uncompress driver does not allow
write operations to the underlying disk image. To check which md(4) devices match a given geom_uncompress device:
# geom uncompress list
Geom name: md0.uncompress
Providers:
1. Name: md0.uncompress
Mediasize: 52428800 (50M)
Sectorsize: 512
Mode: r1w0e0
Consumers:
1. Name: md0
Mediasize: 20864000 (20M)
Sectorsize: 512
Mode: r1w0e0
SEE ALSO GEOM(4), md(4), geom(8), mkulzma(8), mkuzip(8)AUTHORS
The geom_uncompress driver was written by Maxim Sobolev <sobomax@FreeBSD.org> and Aleksandr Rybalko <ray@FreeBSD.org>. This manual page was
written by Luiz Otavio O Souza <loos@FreeBSD.org>.
BSD January 9, 2014 BSD
Check Out this Related Man Page
GMOUNTVER(8) BSD System Manager's Manual GMOUNTVER(8)NAME
gmountver -- control utility for disk mount verification GEOM class
SYNOPSIS
gmountver create [-v] dev ...
gmountver destroy [-fv] prov ...
gmountver list
gmountver status [-s name]
gmountver load [-v]
gmountver unload [-v]
DESCRIPTION
The gmountver utility is used to control the mount verification GEOM class. When configured, it passes all the I/O requests to the underly-
ing provider. When the underlying provider disappears - for example because the disk device got disconnected - it queues all the I/O
requests and waits for the provider to reappear. When that happens, it attaches to it and sends the queued requests.
The first argument to gmountver indicates an action to be performed:
create Cache the given devices with specified name. The kernel module geom_mountver.ko will be loaded if it is not loaded already.
destroy Destroy name.
list See geom(8).
status See geom(8).
load See geom(8).
unload See geom(8).
Additional options:
-f Force the removal of the specified mountver device.
-v Be more verbose.
SYSCTL VARIABLES
The following sysctl(8) variables can be used to control the behavior of the MOUNTVER GEOM class. The default value is shown next to each
variable.
kern.geom.mountver.debug: 0
Debug level of the MOUNTVER GEOM class. This can be set to a number between 0 and 3 inclusive. If set to 0 minimal debug informa-
tion is printed, and if set to 3 the maximum amount of debug information is printed.
kern.geom.mountver.check_ident: 1
This can be set to 0 or 1. If set to 0, gmountver will reattach to the device even if the device reports a different disk ID.
EXIT STATUS
Exit status is 0 on success, and 1 if the command fails.
SEE ALSO geom(4), geom(8)HISTORY
The gmountver utility appeared in FreeBSD 9.0.
AUTHORS
Edward Tomasz Napierala <trasz@FreeBSD.org>
BSD January 27, 2015 BSD
I get a compressed file for linux and I want to uncompress it in Unix. Is that possible?
I try with te command uncompress but it didnīt work.
T.hanks (3 Replies)
hi everybody
i'm now downloading FreeBSD using anonymous ftp...the problem i'll encounter is that it seems to be a huge archive....
I want just install it over a 8 G disk....how can i manage this?
thanks
regards (3 Replies)
When i am trying to
$uncompress tress.dmp.Z
I am getting tress.dmp.Z permission denied.
What action i have to perform to unzip or uncompress
It has rw-r--r-- permissions
When i am trying to change the permissions chmod 744 it says.
chmod: Warning: can't change tress.dmp.Z
Just... (1 Reply)
Hi all,
I have compressed a file in windows platform using 7zip into tar.z format. I try to uncompress in Unix using uncompress command. It doesn't work. Can anyone tell me wether there is any tools I can use in windows to generate a Tar.Z file which can be uncompress in unix.
From
Icestone (1 Reply)
I am trying to import compressed files using a pipe on a server, IBM AIX UNIX 3.4, with very little disk space
The command is:
nohup cat xaa xab xac xad xae xaf xag | uncompress - > imp_pip &
Then the imp_pip file is used in the import statement, files=imp_pip
Does this statement... (0 Replies)
Hi All,
is it possible to uncompress on another directory ? At the moment I have my file to uncompress on /u07 that has 5GB free. When uncompressed it would be more then 6G , I want to send uncompressed file on another directory where I have more free space. is it possible ? How ?
Many thanks... (3 Replies)