Questions tagged [linux-development]
The linux-development tag has no summary.
23 questions
1
vote
1
answer
996
views
Deciding between logic on the front-end or back-end
Before I begin, I want to say I am very new to this and I am a junior but also solo developer with no seniors to ask for guidance. Please feel free to explain to me that I am not approaching it ...
1
vote
2
answers
220
views
How does one reliably test core Linux software (like package managers, UNIX utils, desktop environments, kernel modules, etc.)?
If I'm not mistaken, a major part of testing software is deploying and using it on your platform of choice. For critical system software such as UNIX utils, package managers, desktop environments/...
0
votes
1
answer
161
views
Best software architecture approach for a single core system
Objective: Designing a data intensive application(myApp) C++ on Linux/RTOS which runs on a single core cpu, there are also 150 other applications share the same core with high priority than myApp.
How ...
0
votes
2
answers
282
views
What makes a program load so fast?
What makes programs like st, zathura, sxiv, and feh load instantly and what makes programs like VS Code and Google Chrome load so slowly in low-spec computers?
For example, I have a low-spec laptop ...
-5
votes
2
answers
162
views
Feasibility of adding drivers to linux kernel
I have question regarding Linux kernel , as far as I understand, to make Linux compatible with different machines and hardware , different device driver is added to the Linux .
I want to ask how much ...
8
votes
9
answers
897
views
Would we need Docker if applications were better behaved?
A well-written program will be configurable. It will have a configuration file or database which specifies where to look for files, which network ports to open etc.
An Operating System lets many ...
-4
votes
3
answers
2k
views
How to Write Pure Machine Code for Linux?
I'm writing a compiler, and I want it to compile to a native executable (just Linux, for now). I don't want it to be Assembly, it needs to be PURE machine code. Can anyone point me in the right ...
-4
votes
1
answer
165
views
How to Create an Application on Linux? [closed]
I want to create a program for the Linux OS in Haskell with multiple .hs files. I don't need help with the code or compiling it, what I don't know how to do is create an application that can be called ...
-2
votes
1
answer
74
views
Interested in contributing to ChromiumOS: What steps should I take to prepare? [closed]
I'm a hobbyist developer of 16 years and would like to start contributing to the ChromiumOS project. I have extensive experience in developing for mobile and embedded devices, so my skill set is ...
4
votes
4
answers
151
views
Developing for a wide variety of Linux Desktops
I haven't developed any production applications for the Linux OS. There are a couple of things that bother me:
As I understand different distros have different set of libraries
Debian vs RPM packages
...
4
votes
2
answers
3k
views
No TDD For Linux? [duplicate]
I'm a long-time Java developer who's trying to make up his own mind about TDD.
I've used JUnit since I first discovered it in 1998. I use it regularly, but I don't subscribe to "write the test first"...
25
votes
3
answers
3k
views
Why isn't there generic batching syscall in Linux/BSD?
Background:
System call overhead is much larger than function call overhead (estimates range from 20-100x) mostly due to context switching from user space to kernel space and back. It is common to ...
-8
votes
1
answer
384
views
Golang Testing Process [closed]
I am new to golang and RunC and now doing some research on it as a part of my intership. What kind of contents do the ' _test.go ' functions check during testing a program or a container with Golang (...
-1
votes
1
answer
406
views
Linux kernel development
I am trying to understand the linux kernel and there is one thing that is puzzling me for quite a while. As linux is used across variety of platforms (like smartphones,desktop,supercomputers etc) and ...
0
votes
1
answer
2k
views
What is the best way to deploy commercial programs on Linux? [closed]
Due to the diversity of Linux distributions, it is quite common for programs to be distributed in source format together with scripts in order to assist the configure, make, make install sequence.
...