Tagged Questions
-1
votes
1answer
75 views
Is there any better way to generate guid in gcc
I had a requirement to generate guid in C,
How can generate guid(http://en.wikipedia.org/wiki/Globally_unique_identifier) in libc .
I need to generate guids randomly .
0
votes
1answer
155 views
where to find Linux version sys/queue.h header file?
sys/queue.h first appeared in 4.4BSD. Linux has included it in its distribution, but the version seems not up-to-date.
FreeBSD version implements singly-linked lists, singly-linked tail queues, lists ...
1
vote
1answer
84 views
respawn option for bsd rc.d
I run a small daemon and want it to be respawned when it is killed. I use "respawn" option in inittab on linux systems.(It is a small embedded platform.).
Now I am trying the same daemon on BSD. I ...
0
votes
1answer
97 views
Netmask/ip-address lookup on BSD/OS X
How do I do ip-address/netmask etc. lookup on OS X (or BSD) using the python standard library function. I'm in the middle of a process and can't make my script working on Mac. On the Linux machine, ...
5
votes
3answers
167 views
Non-blocking access to the file system
When writing a non-blocking program (handling multiple sockets) which at a certain point needs to open files using open(2), stat(2) files or open directories using opendir(2), how can I ensure that ...
1
vote
1answer
76 views
tcphdr field name change between OS/X and Linux
I've developed some network code on OS/X, and I'm getting bit by the renamed fields in struct tcphdr. I'm getting a bunch of errors of the form: "dpkt.c:597:36: error: ‘struct tcphdr’ has no member ...
0
votes
1answer
93 views
Good book on FileSystems [closed]
I am looking for a book (resource in general) which talks about LVM, VFS, buffer cache and one or more popular file systems (ext2, ext3, XFS etc.) i.e. a book which covers both the kernel and disk ...
-1
votes
1answer
49 views
Which shell provides built-in features for handling complex data structure and binary files?
As the title suggests: Which shell has built-in features to accomplish
Handling of complex data structures (for example, nested hashes or vector inside a hash)
Read from and write into binary file
...
0
votes
1answer
389 views
PCI/PCIe card with DMA capability for device driver training
I trying to learn DMA for device drivers with PCI/PCIe devices, and my platform is linux/bsd. I have found quite a few simple PCI boards for training (such as simple digital I/O boards), but none ...
1
vote
1answer
131 views
BSD atos available on Linux?
Is the atos binary for converting numberic addresses to symbols of binary images available on Linux, specifically Ubuntu? It seems to only be available on OS X.
0
votes
3answers
289 views
Getting number of cores (*not* HT threads)
I have tried sysconf(_SC_NPROCESSORS_ONLN) and sysconf(_SC_NPROCESSORS_CONF), but they both return total number of (as Intel calls it in their CPU documentation) Threads (as in: hyper-threading ...
0
votes
1answer
80 views
Disable snmpd log in BSD?
I can disable SNMP log using snmpd.options in RHEL or CentOS, but I can't find any solution in BSDs. Does anyone knows how to disable it or change the log location? The SNMP message is fillng up my ...
0
votes
1answer
86 views
SYSTEM: denied request 44 in Minix
I get "SYSTEM: denied request 44 from 109894" when trying to execute my own code in Minix 3.2. I typed over the code and the makefile so there could be some typos. The program compiles fine however.
...
4
votes
1answer
122 views
segfault on write() with ~8MB buffer (OSX, Linux)
I was curious what kind of buffer sizes write() and read() could handle on Linux/OSX/FreeBSD, so I started playing around with dumb programs like the following:
#include <unistd.h>
#include ...
2
votes
4answers
356 views
Determine OS during runtime
Neither ISO C nor POSIX offer functionality to determine the underlying OS during runtime. From a theoretical point of view, it doesn't matter since C offers wrappers for the most common system calls, ...
2
votes
2answers
530 views
Portable equivalent of OPEN_MAX
nftw wants a parameter for number of file handles to use, and doesn't seem to have a way to say 'as many as possible'. Specifying 255 seems to work on Linux, but fails on BSD. Apparently OPEN_MAX is ...
4
votes
1answer
4k views
How to use list from sys/queue.h?
Currently, I have implemented a singly linked list, like so:
struct PeerNode {
struct Peer* cargo;
struct PeerNode* next;
};
...and I have a struct that contains a couple of these linked ...
-1
votes
2answers
579 views
What is the difference between different Linux Distros. [closed]
There are plenty of Linux distributions. But I am little confused that what is the difference between them.
For e.g, They use the same linux kernel, grub to boot, Xorg for display, GNOME/KDE/XFCE for ...
10
votes
1answer
864 views
How much memory locked in a process
Using getrlimit(RLIMIT_MEMLOCK), one can get the allowed amount of locked memory a process can allocate (mlock() or mlockall()).
But how to retrieve the currently locked memory amount ?
For ...
2
votes
1answer
552 views
How to get the pid of the other side of pipe?
I want to know pid of the other side of the pipe. If Linux, I can match up the id of ls -l /proc/SELF_PID/fd/0 like these commands.
[root@host ~]# command1 | command2 &
I've known command2's PID = ...
5
votes
4answers
2k views
execve file not found when stracing the very same file!
someone i know encountered a problem when running 'lmutil' so i asked them to strace -f lmutil. Why is execve failing with "No such file"!!! It makes no sense, since I am straceing the very same ...
2
votes
1answer
175 views
MACOSX (BSD) equivalent for F_NOTIFY flag for fcntl() function
Does anybody know equivalent for F_NOTIFY flag for fcntl function in a BSD based system?
This flag allows you to receive notifications about file events
(for example file opened, file closed, bytes ...
0
votes
2answers
821 views
share directory with different users on a workstation on linux/bsd
I'm setting up a development workstation that used to have only one shared account to have an account for each developer that may be using it.
We commonly switch workstations. I would like to have ...
29
votes
6answers
7k views
find -exec a shell function?
Is there a way to get find to execute a function I just defined in a bash script?
dosomething () {
echo "doing something with $1"
}
find . -exec dosomething {} \;
find just tells me:
find: ...
4
votes
1answer
135 views
How do I get information on linux whether my program is swapping or not?
More specifically: I want to find this information from inside the program, preferably just before it starts swapping so I can react. So far I found:
Information inside /proc, which is not very ...
2
votes
4answers
527 views
Is there a good reason to write my own daemonize function instead of using daemon(3)?
There are a lot of example implementations of daemons on the net. Most that I saw do not use the daemon(3) function to run the program in the background. Is that just a matter of taste, ignorance, or ...
6
votes
4answers
814 views
Use OpenBSD's malloc, realloc and free in my program
I would like to use OpenBSD's implementation of malloc, realloc and free on my Debian lenny desktop rather than glibc's.
Are they simply drop in replacements: will they work on my Linux desktop ?
...
1
vote
3answers
466 views
How to turn a regular file into a symlink on Linux
I'm writing an (un)archiving tool and the way it is designed it first creates a regular file from the archive before it examines the special attributes and may decide that this item is a symlink, in ...
19
votes
6answers
1k views
Good collection of libraries for C?
I'm looking for a good collection of libraries for ANSI-C, stuff for handling vectors, hash maps, binary tress, string processing, etc.
20
votes
7answers
7k views
AT&T vs Intel Syntax and Limitations? [closed]
To me, Intel syntax is much easier to read. If I go traipsing through assembly forest concentrating only on Intel syntax, will I miss anything? Is there any reason I would want to switch to AT&T ...
10
votes
4answers
7k views
How can I use rsync to backup files changed within a recent period?
Is it possible to specify a time range so that rsync only operates on recently changed files.
I'm writing a script to backup recently added files over SSH and rsync seems like an efficient solution. ...
8
votes
5answers
5k views
How would you build a database filesystem (DBFS)?
A database file system is a file system that is a database instead of a hierarchy. Not too complex an idea initially but I thought I'd ask if anyone has thought about how they might do something like ...
4
votes
3answers
272 views
Adding Blue Screen of Death to Non-Windows OS
I am looking to get into operating system kernel development and figured and have been reading books on operating systems (Tannenbaum) as well as studying how BSD and Linux have tackled this challenge ...
8
votes
10answers
4k views
Are there any small Unix or BSD distributions? [closed]
I was wondering if there are any small BSD or unix releases. The smallest Linux release I've seen that looked good is partedmagic (around 70MB). Free BSD needs like 4 CDs, maybe more.
1
vote
3answers
1k views
Hardened BSD from Scratch
I am aware of the Hardened Linux from Scratch project which is a project that provides you with step-by-step instructions for building your own customized and hardened Linux system entirely from ...
2
votes
5answers
3k views
Operating System Scheduling Algorithms
What is the best algorithm to use for scheduling an application that will support 10K concurrent threads with heavy I/O but low CPU usage? Links to papers are appreciated.
5
votes
3answers
371 views
In which situations is it advisable to opt for BSD systems instead of Linux?
For an everyday-user with new hardware Linux seems for me the natural choice if somebody is looking for an alternative to Windows. But when does it make sense to give the BSD variants a try?
1
vote
1answer
319 views
How can you get script name in BSD process accounting file?
I'm trying to write a program to process the BSD-style process accounting file under Linux (/var/account/pacct).
When we start a script with either ./script_name or bash script_name, the process ...
0
votes
2answers
2k views
System Calls: UNIX, Linux, BSD and Solaris variations
Are there differences between the amount of syscalls in the major *NIX variants ?
Which syscalls would be supported universally ?
40
votes
3answers
7k views
What is the status of POSIX asynchronous I/O (AIO)?
There are pages scattered around the web that describe POSIX AIO facilities in varying amounts of detail. None of them are terribly recent. It's not clear what, exactly, they're describing. For ...
11
votes
5answers
4k views
Detecting a chroot jail from within
How can one detect being in a chroot jail without root privileges? Assume a standard BSD or Linux system. The best I came up with was to look at the inode value for "/" and to consider whether it is ...
2
votes
3answers
296 views
Developing drivers with no info
How does the open-source/free software community develop drivers for products that offer no documentation?
18
votes
12answers
2k views
What's the best way to get to know linux or BSD kernel internals?
I'd like to gain better knowledge of operating system internals. Process management, memory management, and stuff like that.
I was thinking of learning by getting to know either linux or BSD kernel.
...

