615 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
2
votes
1
answer
87
views
How to change the structure of a flutter Linux package (.deb or .rpm)?
I want to build Linux packages (.deb & .rpm) for my flutter application, and observed that flutter follows a certain structure while building Linux applications (inside build/linux/x64/release/...
0
votes
0
answers
73
views
flutter can't build deb file, control directory has bad permissions 777
I was trying to build deb file github project chatmcp. I run this command :-
flutter_distributor release --name=dev --jobs=linux-deb
Here full logs what i got in error :-
$ mkdir -p dist/0.0.62/...
0
votes
0
answers
41
views
Generating deb files for ros packages locally produces error in importing installed library
I have several ros2 packages in a workspace that I build using colcon build. Some packages have binaries, some have libraries, some have cmake functions....
Now I want to generate deb files for each ...
1
vote
0
answers
48
views
Using the XDG standard to refer to files in an installed Debian package
Here is an MWE to create a simple test package with 2 files.
$ cat hello.sh
#!/usr/bin/sh
cat mydatafolder/data.txt
$ cat mydatafolder/data.txt
Hello World!
hello-world-1.0 $ tree -L 1
.
├── ...
0
votes
1
answer
81
views
How to enable remote debug in java app wrapped to deb package?
I have java application started remotely(spring boot).
We have gitlab pipeline which generates deb package and starts it on Ubuntu OS.
I can do some things with that environment. For example restart:
...
0
votes
0
answers
54
views
problems in build chroot environment when install util-linux
I was trying building deb packages with OpenSuse Build Service(OBS), In the early stage of building process, OBS will try to create a (ubuntu like)chroot env, I met an error while it tries to install ...
0
votes
1
answer
216
views
Qt 6.5: Deploying to Linux with CMake - QML runtime missing
I'm developing a Qt/QML application on Ubuntu 22.04 with the official Qt SDK 6.5.3 and I'm referring to these instructions:
https://www.qt.io/blog/deploying-to-linux-with-cmake
This worked otherwise ...
0
votes
0
answers
97
views
How to add a .deb package to a custom Debian Bookworm mirror?
I have created a custom Debian Bookworm mirror using apt-mirror hosted at 80.66.64.236/debian/, and I want to add my own .deb packages to this mirror. I have successfully mirrored the official ...
0
votes
1
answer
86
views
How to create a deb package with Process .NET?
I would like to create a deb package programmatically inside a c# method.
I did a method to create a zip package using 7z.
You just have to install 7z and setup a ENV variable.
private string ...
0
votes
1
answer
49
views
Location to place programming examples in DEB package in Linux
I'm creating a DEB package for my application but I don't have much experience in Linux.
I've checked the Linux Filesystem Hierarchy guide and I've figured out that:
binary files should go in /usr/...
0
votes
1
answer
368
views
How to use CMake / CPack to add a conffile to a deb package? With CPACK_DEBIAN_PACKAGE_CONTROL_EXTRA?
I am developing a C/C++ package, built using CMake, and I want to package it for Debian. So I thought I'd use CPack to build a Debian package. I managed to do so, but my project should also contain ...
0
votes
0
answers
64
views
Linux directories for App (create package)
I'm creating a Linux version of a Windows program and among other tasks, I need to create a package to allow users to install the software easily.
In Windows, the program has some files in the ...
1
vote
1
answer
1k
views
Build Dpkg from bitbucket pipeline gives "dpkg-deb: error: control directory has bad permissions 777 (must be >=0755 and <=0775)"
I'm trying to build .deb package from the bitbucket pipeline but end up with this error msg.
dpkg-deb: error: control directory has bad permissions 777 (must be >=0755 and <=0775)
tried to ...
2
votes
1
answer
65
views
packaging Open3D as debian
I'm using Ubuntu 20.04, CUDA 11.4, and I want to create a debian of Open3D 0.18.0, to do so I cloned the repo and tried:
mkdir build && cd build
cmake -DBUILD_CUDA_MODULE=ON -...
1
vote
0
answers
644
views
How do I download a specific version of build-essentials and dependencies that is not in my native machine
I have Jammy and the version of build-essential I want was the one released for Buster
Here is what I attempted to do:
I went to https://gist.github.com/ishad0w/6ce1eb569c734880200c47923577426a and ...