Crest

Results 32 comments of Crest

Is anyone working on this now that official PkgBase repositories for FreeBSD 14.0 are available? The ability to address different parts of the base system and all base packages vs...

The `zpool history` output can be truncated. The pool will always preserve the first few commands (because they probably contain most important initial setup) and a ring buffer of the...

Does pkg (1.20+) try to take advantage of HTTP pipelining when fetching multiple packages to avoid having to establish and ramp up a connection per packet? How would using multiple...

I "solved" the problem for my usecase with a Varnish caching server, because it's flexible enough to override caching hostile official package mirror HTTP headers and still validate each cache...

I encountered this too. You can work around this for now by copying the fingerprints directory into the jail like this: `mkdir -vp "${jail_path}/usr/share/keys/pkg/trusted" && cp -av /usr/share/keys/pkg/trusted/ "$jail_path/usr/share/keys/pkg/trusted"` before...

Did you go through with install the packages using both commands and compared the `pkg info` output? Do the packages once installed (registered) show up with the names and origins...

Install using `pkg install fscd`. Enable fscd service e.g. `service fscd enable`, Add one service per line to `/usr/local/etc/fscd.conf` e.g. `echo sshd >>/usr/local/etc/fscd.conf`, finally start fscd `service fscd start`.

I understand the temptation to have "nicer" output by default, but **please** resist. This **will** break untold numbers of scripts that parse the `ifconfig` output. This output line has been...

The problem is that there're so many ad-hoc parsers for ifconfig's output in the wild because it's the least bad way to get this information unless you're prepared to deal...

According to https://github.com/opencontainers/image-spec/blob/main/layer.md#distributable-format layer changesets encoded as tar archives "**MUST NOT** include duplicate entries for file paths in the resulting [tar archive](https://en.wikipedia.org/wiki/Tar_(computing))".