xbps-digest(1): new utility that replaces "xbps-uhelper digest".
See the manual page:
XBPS-DIGEST(1) General Commands Manual XBPS-DIGEST(1)
NAME
xbps-digest - XBPS utility to generate message digests
SYNOPSIS
xbps-digest [OPTIONS] [FILE] [FILE+N]
DESCRIPTION
The xbps-digest utility generates message digests for specified FILE or
stdin if unset.
OPTIONS
-m, --mode mode
Sets the message digest mode. Supported: sha256. If unset, defaults
to sha256.
-h, --help
Show the help message.
-V, --version
Show the version information.
SEE ALSO
xbps.d(5), xbps-checkvers(1), xbps-create(1), xbps-dgraph(1),
xbps-fbulk(1), xbps-install(1), xbps-pkgdb(1), xbps-query(1),
xbps-reconfigure(1), xbps-remove(1), xbps-rindex(1), xbps-uchroot(1),
xbps-uunshare(1)
AUTHORS
Juan Romero Pardines <xtraeme@gmail.com>
BUGS
Probably, but I try to make this not happen. Use it under your own
responsibility and enjoy your life.
Report bugs at https://github.com/void-linux/xbps/issues
June 12, 2019
Signed-off-by: Juan RP <xtraeme@gmail.com>
2019-06-12 14:34:58 +02:00
|
|
|
.Dd June 12, 2019
|
2015-05-16 09:45:35 +02:00
|
|
|
.Dt XBPS-UUNSHARE 1
|
2015-03-05 18:44:20 +01:00
|
|
|
.Sh NAME
|
|
|
|
.Nm xbps-uunshare
|
2015-10-30 01:45:26 -04:00
|
|
|
.Nd XBPS utility to chroot and bind mount with Linux user namespaces
|
|
|
|
.Sh SYNOPSIS
|
2015-03-05 18:44:20 +01:00
|
|
|
.Nm xbps-uunshare
|
|
|
|
.Op OPTIONS
|
|
|
|
.Ar CHROOTDIR
|
|
|
|
.Ar COMMAND
|
|
|
|
.Op ARGS
|
|
|
|
.Sh DESCRIPTION
|
|
|
|
The
|
|
|
|
.Nm
|
|
|
|
utility allows users to chroot and bind mount required pseudo-filesystems
|
|
|
|
(/dev, /proc and /sys) in the target
|
|
|
|
.Ar CHROOTDIR
|
|
|
|
to execute
|
|
|
|
.Ar COMMAND .
|
2015-05-06 11:40:19 +02:00
|
|
|
.Pp
|
2015-03-05 18:44:20 +01:00
|
|
|
The
|
|
|
|
.Nm
|
|
|
|
utility uses by default Linux namespaces to isolate IPC, PIDs and mounts to
|
|
|
|
the calling process. Thanks to
|
|
|
|
.Xr user_namespaces 7
|
|
|
|
the user does not need any privilege to create an isolated lightweight container.
|
|
|
|
.Sh OPTIONS
|
|
|
|
.Bl -tag -width -x
|
2015-05-06 11:40:19 +02:00
|
|
|
.It Fl b Ar src:dest
|
|
|
|
Bind mounts
|
|
|
|
.Ar src
|
|
|
|
into
|
|
|
|
.Ar CHROOTDIR/dest .
|
|
|
|
This option may be specified multiple times.
|
|
|
|
Please note that both
|
|
|
|
.Ar src
|
|
|
|
and
|
|
|
|
.Ar dest
|
|
|
|
must be absolute paths and must exist.
|
2019-11-05 22:30:39 +07:00
|
|
|
.It Fl -
|
|
|
|
Stop interpreting following arguments as options.
|
|
|
|
This option is useful if some of
|
|
|
|
.Ar ARGS
|
|
|
|
are options passed to
|
|
|
|
.Ar COMMAND .
|
2015-03-05 18:44:20 +01:00
|
|
|
.El
|
|
|
|
.Sh NOTES
|
|
|
|
The
|
|
|
|
.Nm
|
|
|
|
utility uses Linux specific features (namespaces) and it's not meant to be portable to
|
|
|
|
other Operating Systems. The following kernel options must be enabled:
|
|
|
|
.Pp
|
|
|
|
.Bl -tag -width CONFIG_NAMESPACES -compact -offset indent
|
|
|
|
.It Sy CONFIG_NAMESPACES
|
|
|
|
.It Sy CONFIG_IPC_NS
|
|
|
|
.It Sy CONFIG_USER_NS
|
2015-04-13 16:11:54 +02:00
|
|
|
.It Sy CONFIG_UTS_NS
|
2015-03-05 18:44:20 +01:00
|
|
|
.El
|
|
|
|
.Sh SEE ALSO
|
2015-05-16 09:45:35 +02:00
|
|
|
.Xr xbps-checkvers 1 ,
|
|
|
|
.Xr xbps-create 1 ,
|
|
|
|
.Xr xbps-dgraph 1 ,
|
xbps-digest(1): new utility that replaces "xbps-uhelper digest".
See the manual page:
XBPS-DIGEST(1) General Commands Manual XBPS-DIGEST(1)
NAME
xbps-digest - XBPS utility to generate message digests
SYNOPSIS
xbps-digest [OPTIONS] [FILE] [FILE+N]
DESCRIPTION
The xbps-digest utility generates message digests for specified FILE or
stdin if unset.
OPTIONS
-m, --mode mode
Sets the message digest mode. Supported: sha256. If unset, defaults
to sha256.
-h, --help
Show the help message.
-V, --version
Show the version information.
SEE ALSO
xbps.d(5), xbps-checkvers(1), xbps-create(1), xbps-dgraph(1),
xbps-fbulk(1), xbps-install(1), xbps-pkgdb(1), xbps-query(1),
xbps-reconfigure(1), xbps-remove(1), xbps-rindex(1), xbps-uchroot(1),
xbps-uunshare(1)
AUTHORS
Juan Romero Pardines <xtraeme@gmail.com>
BUGS
Probably, but I try to make this not happen. Use it under your own
responsibility and enjoy your life.
Report bugs at https://github.com/void-linux/xbps/issues
June 12, 2019
Signed-off-by: Juan RP <xtraeme@gmail.com>
2019-06-12 14:34:58 +02:00
|
|
|
.Xr xbps-digest 1 ,
|
2015-10-28 09:37:09 +01:00
|
|
|
.Xr xbps-fbulk 1 ,
|
2019-06-12 17:57:03 +02:00
|
|
|
.Xr xbps-fetch 1 ,
|
2015-05-16 09:45:35 +02:00
|
|
|
.Xr xbps-install 1 ,
|
|
|
|
.Xr xbps-pkgdb 1 ,
|
|
|
|
.Xr xbps-query 1 ,
|
|
|
|
.Xr xbps-reconfigure 1 ,
|
|
|
|
.Xr xbps-rindex 1 ,
|
|
|
|
.Xr xbps-uchroot 1 ,
|
|
|
|
.Xr xbps.d 5
|
2015-03-05 18:44:20 +01:00
|
|
|
.Sh AUTHORS
|
|
|
|
.An Juan Romero Pardines <xtraeme@gmail.com>
|
|
|
|
.Sh BUGS
|
|
|
|
Probably, but I try to make this not happen. Use it under your own
|
2015-10-28 10:03:41 +01:00
|
|
|
responsibility and enjoy your life.
|
2015-03-05 18:44:20 +01:00
|
|
|
.Pp
|
2018-09-23 17:51:07 +02:00
|
|
|
Report bugs at https://github.com/void-linux/xbps/issues
|