BSD is a family of Unix-like operating systems, including FreeBSD, NetBSD and OpenBSD.

learn more… | top users | synonyms

40
votes
3answers
8k 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 ...
38
votes
4answers
16k views

How do I determine the target architecture of static library (.a) on Mac OS X?

I'm interested in verifying if a given iPhone static library has been built for ARM or Intel. It's more curiosity than anything. Is there some kind of Mac OS X or BSD specific tool to do this? This ...
30
votes
6answers
8k 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: ...
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 ...
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.
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. ...
13
votes
4answers
4k views

using BSD-licensed libraries on iPhone

I would like to use the JSON-framework ObjC library, which is licensed under BSD license, in my iPhone application. The thing is, I'm not sure what does the BSD license require me to do. The text of ...
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 ...
10
votes
8answers
1k views

Kernel Scheduling for 1024 CPUs

Azul Systems has an appliance that supports thousands of cache coherent CPUs. I would love insight into what changes would need to occur to an operating system in order to schedule thousands of ...
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. ...
10
votes
1answer
912 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 ...
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.
8
votes
4answers
2k views

switching licence from GPL to BSD in later time

I wrote an software which I would like to release on BSD license. Unfortunately I am linking to library which is based on GPL. Right now I do not have time to rewrite that library. Can I release my ...
8
votes
3answers
2k views

Can I use LGPL library in BSD/X11 licensed project?

I am writing a small general purpose library, which i would like to use in my BSD/X11 licensed project. I want to include globalisation support in it, specifficaly, i would like to use Glib::ustring ...
8
votes
5answers
6k 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 ...
6
votes
4answers
832 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 ? ...
5
votes
5answers
4k views

Reading Other Process' Memory in OS X / BSD

I've been trying to understand how to read the memory of other processes on Mac OS X, but I'm not having much luck. I've seen many examples online using ptrace with PEEKDATA and such, however it ...
5
votes
3answers
372 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?
5
votes
4answers
2k views

dTrace scripts and tools [closed]

I've recently began using dTrace and have noticed just how awesome it is. Its the perfect tool for profiling without placing the burden on programmers to set up hundreds of probes in their ...
5
votes
2answers
4k views

What's the Solaris equivalent to the BSD's 'tail -n100'?

I've looked this up a thousand times, and I always forget it, so, here for eternity: Solaris has a bit of an awkward syntax for tail. How do I do the equivalent of BSD's tail -nN? What I want are ...
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 ...
5
votes
1answer
695 views

Using a BSD licence library, which uses a GPL library, for the iPhone

I'm getting rather confused when looking over the details of the various licenses and was wondering if someone could give me a hand. Basically, I'm looking at making a simple SSH client to release on ...
5
votes
3answers
206 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 ...
4
votes
5answers
286 views

Can I release an extension to a GPL'd library under a BSD-esque license?

Consider a Java library "A", which is available under GPL v2, and under a proprietary commercial license. My company has licensed library A under its commercial license, and I've developed an ...
4
votes
3answers
164 views

How can I determine my csh version?

I have some code which works for me, but when I gave it to some colleagues, it broke. They're using tcsh whereas, as far as I can figure, I'm using csh. I've tried: csh -v csh --version csh -V csh ...
4
votes
5answers
5k views

How to timestamp every ping result?

Ping returns this by default: 64 bytes from 203.173.50.132: icmp_seq=0 ttl=244 time=57.746 ms Is there some way I can get it to add the timestamp? eg: Mon 21 May 2012 15:15:37 EST | 64 bytes from ...
4
votes
4answers
2k views

Get real path of application from pid?

How can I get the process details like name of application & real path of application from process id? I am using Mac OS X.
4
votes
1answer
2k views

How do I use a new-line replacement in a BSD sed?

Greetings, how do I perform the following in BSD sed? sed 's/ /\n/g' From the man-page it states that \n will be treated literally within a replacement string, how do I avoid this behavior? 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 ...
4
votes
3answers
1k views

Propietary modules within GPL and BSD kernels

Since the Linux kernel is GPL and not LGPL I suppose that it is illegal to link proprietary code to it. How does the industry circumvents this? I would expect that the GPL license will force any ...
4
votes
1answer
296 views

Can I rewrite a piece of GPL code in another language and release it under BSD?

I have writing a BSD licence software in C#, and I hope to use some stable numerical code in C, which is under GPL. Can I rewrite the GPL C code in C# and release the C# code under the BSD license? ...
4
votes
1answer
131 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 ...
4
votes
4answers
540 views

Source code of the “halt” tool?

Can anyone link up the source of the halt tool? It is a binary usually located in /sbin which shuts down the system. I did some search and I couldn't find it anywhere.
4
votes
3answers
274 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 ...
4
votes
1answer
138 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 ...
4
votes
1answer
335 views

BSD licensing - what do I put in the organisation tag, if I'm the sole programmer?

Point three for example: Neither the name of the ORGANIZATION nor the names of its contributors may be used to endorse or promote products derived from this software without specific ...
4
votes
0answers
2k views

UDP broadcast using CFSocket on IOS

Have been doing some google search and some reading on this subject but cannot seem to get it right no matter how much time i spent searching. What i want to do is to receive broadcast message of ...
3
votes
3answers
600 views

May GCC only be used for GPL projects?

I was reading through the clang comparison page, when I found this sentence which shocked me: GCC is licensed under the GPL license. clang uses a BSD license, which allows it to be used by ...
3
votes
6answers
2k views

What exactly are the rules for using gpl, lgpl, bsd software interally in the enterprise?

Are there any restrictions of using lgpl, gpl, bsd licensed software in a commercial venture if the tools/software are only used as part of internal processes and not integrated or incorporated into ...
3
votes
3answers
362 views

Why would `killpg` return “not permitted” when ownership is correct?

I've got some code which fork()s, calls setsid() in the child, and starts some processing. If any of the children quit (waitpid(-1, 0)), I kill all the child process groups: child_pids = [] for ...
3
votes
1answer
705 views

OS requirements for arc4random_uniform()

How do I find out the minimum OS requirements for using arc4random_uniform()? Is it defined in BSD? If so, from what version? Does it run on any Mac OS X version? How about iOS versions? Is there any ...
3
votes
1answer
1k views

MIT license changed to non-commercial BSD

I run into unpleasant situation and I need your opinion. In one of my products I am using a jQuery plugin which was licensed under MIT license (until yesterday). When the creator of the script saw ...
3
votes
1answer
173 views

Can I distribute a software in BSD license when it is made using Eclipse Public License licensed technology? [closed]

I am working on an open source project using Clojure programming language which is licensed in Eclipse Public License. I would prefer to make my open source project to use BSD license rather than EPL ...
3
votes
1answer
992 views

formatted modified date/time on mac bash?

In my bash script on mac (snow leopard) I have a path and filename, and I need to get the modified date/time of that file. I found I could do: stat -f "%m" $MYFILE However, that returns what I ...
3
votes
1answer
374 views

C network programming?

What libraries are the best (in terms of performance) for network programming in C on windows and UNIX? I'm quite interested with respect to high frequency trading. I have heard about BSD and POSIX ...
3
votes
3answers
1k views

Using a BSD licensed library in a GPL application?

Say I'm writing a program I'm going to release under the GPL. I want to use NLog as the logging module, which is released under the BSD (I'm not just concerned specifically with NLog as there are ...
3
votes
4answers
1k views

Hooking into the TCP Stack in C

It's not just a capture I'm looking to do here. I want to first capture the packet, then in real time, check the payload for specific data, remove it, inject a signature and reinject the packet into ...
3
votes
1answer
95 views

${_+_} in a BSD Makefile

I've found ${_+_} in the FreeBSD Makefile. What is the meaning of ${_+_} in BSD Makefiles?
3
votes
1answer
401 views

LICENSE and AUTHORS Maintenance

I have started an open source project a few days ago, it's licensed under BSD 3 clause license and written in Python. I am not clear on when and how I need to maintain my LICENSE and AUTHORS files. ...
3
votes
2answers
2k views

BSD md5 vs GNU md5sum output format?

Any one knows why BSD md5 program produces hash output in this format ... MD5 (checksum.md5) = 9eb7a54d24dbf6a2eb9f7ce7a1853cd0 ... while GNU md5sum produces much more sensible format like this? ...

1 2 3 4 5