18 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
1
answer
363
views
Buildroot error compiling host-fakeroot on Alpine
Buildroot compilation fails when it's trying to compile host-fakeroot:
(...)
make[3]: Entering directory '/Builds/dev-tests/buildroot/output/build/host-fakeroot-1.36'
/usr/bin/gcc -DHAVE_CONFIG_H -I. ...
0
votes
1
answer
368
views
Chroot/Jail ? Problem after update to Debian 12 Bookworm
After Upgrade of Bullseye to Bookworm, i cannot use chroot/jail in three cases.
I cannot build debian packages using fakeroot tool. The build ends with: "fakeroot debian/rules clean subprocess ...
0
votes
1
answer
1k
views
How do I install applications inside a Singularity sandbox container?
I am trying to install Miniconda (but could be any application that requires to for example /usr/local) in a Singularity sandbox container.
I try the following:
singularity build --fakeroot --sandbox ...
3
votes
1
answer
609
views
How to find fakeroot package to lauch jpackage
I've created a .jar with eclipse on ubuntu, java14 and javafx.
I wanted to create an application with jpackage.
So, I typed in a terminal jpackage --name Test --input . --main-jar Test.jar.
I have had ...
0
votes
0
answers
273
views
Cannot use sudo in jenkins' `execute shell` build step
I'm trying to use electron-installer-debian in Jenkins (version 2.346.2) dashboard. But it has a fakeroot dependency. Trying to install fakeroot using apt-get install fakeroot and error says '...
1
vote
0
answers
286
views
Building Mendel Linux error for Coral Dev Board
I'm trying to build Mendel Linux for Google Coral Dev Board on Ubuntu 20.04.
I followed the instructions step by step described in the https://coral.googlesource.com/docs/+/refs/heads/master/...
1
vote
0
answers
245
views
Problems packaging on buster
I'm trying to build some packages from source, and I'm facing trouble that I don't understand despite lots of googling. This happens with some packages, while others compile and get packed normally. ...
0
votes
1
answer
749
views
Fakeroot on OSX Monterey
How can I install fakeroot on OSX Monterey
Using brew install fakeroot:
Warning: fakeroot has been deprecated because it does not build!
Error: fakeroot: no bottle available!
You can try to install ...
1
vote
0
answers
781
views
after git pull: error: RPC failed; curl 56 GnuTLS recv error (-110)
I use Ubuntu 18.04 on WSL on my laptop and it works well with git. pushing and pulling has not been a problem. no i pushed from a different repository to my remote repository a huge directory. and as ...
0
votes
0
answers
335
views
Tweak make package failed: libfakeroot.dylib: mach-o, but wrong architecture
I was trying to make my first tweak for ios using Theos.
And I just used a default tweak template(nic.pl), didnt change anything, I got this error when I tried to run make package:
dyld: could not ...
-1
votes
2
answers
216
views
busybox tar ignores fakeroot on Ubuntu but it works on OS X [closed]
On my mac machine this just works as expected:
#!/bin/sh -euf
touch test.sh
chown 888:888 test.sh
busybox tar -czvf out.tar.gz test.sh
Invocation:
$ fakeroot -- ./generateArchive.sh
$ busybox tar -...
3
votes
0
answers
857
views
fakeroot/proot hangs during rootfs generation
I am trying to build a Debian Stretch-based armhf filesystem using multistrap, fakeroot and proot. I can create the rootfs using multistrap:
fakeroot /usr/sbin/multistrap -f multistrap.conf
Then I ...
0
votes
1
answer
3k
views
How to build Debian package with dh-virtualenv? rules file not working with fakeroot
i'm trying to build a deb package with Spotify's dh-virtualenv debian package helper.
Error Message I Get:
while running dpkg-buildpackage -us -uc:
(venv) $ dpkg-buildpackage -us -uc
dpkg-...
2
votes
0
answers
917
views
deb/rules: No such file or directory
I was trying to build vmlinux image for my 2.6.32 kernel in ubuntu-10.04 referencing this tutorial. These are the steps I followed.
1. Installed build tools with
sudo apt-get build-dep linux-image-$(...
3
votes
2
answers
2k
views
How to know if user is root or fakeroot?
I would like to know if user is root, without minding if that user is using a fakeroot-like tool or not.
I tried the functions getuid(), geteuid() and getlogin(), but when I launch fakeroot command ...