Questions tagged [deployment]
The deployment tag has no summary.
57 questions
8 votes
2 answers
2k views
Unreal Engine games supporting Linux
Unreal Engine and other engines support making games for multiple platforms like iOS, Android, Windows, MacOS and Linux. The games are distributed as pre-compiled executables and they all need ...
1 vote
2 answers
113 views
Django backend died when deploying a new version: Address already in use
I have a Django app running on a Debian server, with a simple deploy script that is automatically invoked via a GitHub webhook: #!/bin/sh git pull /home/criticalnotes/.local/bin/poetry install --with ...
0 votes
1 answer
662 views
Bash script to restart java application after Jenkins compiling
I'm noob in linux! I have my server and installed jenkins. I need to create bash script, which should run application(or will restart if it has already been started) after jenkins compile it. I tried ...
0 votes
0 answers
22 views
How to name a newer version of command, which is not fully compatible with old version
I have two versions of the same command. The newer version is not fully backward compatible with the old version. Should I add version number to the command name in this case like so /usr/bin/foo /usr/...
1 vote
1 answer
3k views
How to install apt packages into mounted system image (img file)
I need to edit/prepare debian-based Raspbian system image for multiple Raspberry Pi devices. Until now, my modifications consisted in adding or changing existing config files. I wrote script like this ...
3 votes
1 answer
2k views
printf -v is an illegal option, in Bitbucket pipeline. And a question about << [closed]
Hello I'm brand new to shell scripting, so sorry if this is trivial. How do you use printf command with the -v option? In our deployment.sh file we have this line printf -v BITBUCKET_COMMIT_str %q &...
1 vote
1 answer
75 views
What set of system-wide configuration settings can conflict when installing different applications on a unix-based OS?
Reading this report on containerization the authors mention that: A problem caused by Unix’s shared global filesystem is the lack of configuration isolation. Multiple applications can have ...
0 votes
2 answers
62 views
Deployment systems for Linux
My project is based on a Raspberry Pi distro - Raspbian. But I made changes to it. There are a lot of them: changes in config.txt, adding system services, installing new packages, change the image of ...