All Questions
Tagged with portability debian
3 questions
0
votes
1
answer
2k
views
How to remap network interfaces on boot time?
It turns out that I'm trying to create a portable distro while getting prepared for any kind of hardware failure.
I'm creating (or restoring) a Debian distro by multistrap (or from my backups) and ...
1
vote
1
answer
186
views
How reliable/portable are Nix built-ins/commands (echo, ps, sort, uniq) from Debian to other distros
I've coded a script and am wondering about it's reliability / portability.
#!/bin/bash
threadsPlease() {
ps -mo lwp,c -p $1 | sort -gk 2 | uniq -f 1
}
THREAD_LINE=$( threadsPlease $1 | grep -v - |...
7
votes
3
answers
7k
views
How to make a portable Linux app?
I'd like to make a "portable" version of Emacs 24.3. I am using some Debian 7 systems, where I don't have root access. Since Debian 7 is missing Emacs 24, I'd like to build a portable version of it, ...