After digging into rpm's git log, I found following commit:
```
commit 9c96c5d4ca376b998be9919e70f74d0995c4df2e
Author: Panu Matilainen <pmati...@redhat.com>
Date: Fri Sep 15 14:38:35 2023 +0300
Axe the experimental non-privileged chroot support from b4c832ca
While the chroot call itself works nicely for a regular user with this,
user/group mapping does not and cannot be made to work, because that
requires a fork and we cannot very well fork the process from deep down
here.
Better to put the irrepairable thing out of its misery, users are far
better of wrapping rpm with the unshare command instead.
```
The log shows that I can achieve the same goal by wrapping rpm command with
`unshare`
After experimenting, I found solution:
Use following command:
`unshare --mount --user --map-root-user rpm --root $(mktemp -d) -ivh
your_rpm_name.rpm`
You may also want to add `--noplugins` when running `rpm` in `unshare`
environment.
--
Reply to this email directly or view it on GitHub:
https://github.com/rpm-software-management/rpm/issues/3441#issuecomment-2470620344
You are receiving this because you are subscribed to this thread.
Message ID: <rpm-software-management/rpm/issues/3441/2470620...@github.com>
_______________________________________________
Rpm-maint mailing list
Rpm-maint@lists.rpm.org
http://lists.rpm.org/mailman/listinfo/rpm-maint