Mateusz Kwiatkowski

Results 49 comments of Mateusz Kwiatkowski

Could you please paste output of `fdisk -l` on the guest?

So the disk inside the guest is also 3.5 GiB. I'm assuming that's the original size of Ubuntu's cloud image. Let's check how it looks like on hypervisor. If your...

So it seems that initially file is created with proper size using `truncate -s ` command (in [core::create](https://github.com/churchers/vm-bhyve/blob/master/lib/vm-core#L240)): ``` kwiat@utgard:~ $ du -hs testfile.img 512B testfile.img kwiat@utgard:~ $ qemu-img info...

@duncan-bayne I prepared PR with a fix: https://github.com/churchers/vm-bhyve/pull/536 Could you please test it on your machine? Thanks!

Yeah, that's even better idea. Updating title to reflec that.

This is also makes porting to FreeBSD harder - FreeBSD ports install files with `PREFIX = /usr/local` and skopeo can't find configuration without manual intervention or setting ldflags.

@rhatdan the issue here is that `containers/image` doesn't respect `$PREFIX` - it uses hardcoded value of `/etc/containers`. My proposition is to either look for config in both paths (`/usr/local/etc/`, `/etc`)...

Hi @rhatdan and @mtrmac, I addressed my problem in PR https://github.com/containers/skopeo/pull/1298. Please take a look if it's good to be merged. Thanks!