Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

34
votes
10answers
6k views

Open Source: Why not release into Public Domain?

I have recently been wondering why so little code is ever released as 'Public Domain'. MIT and BSD licenses are becoming extremely popular and practically only have the restriction of license ...
24
votes
2answers
4k 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 ...
19
votes
6answers
705 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.
14
votes
11answers
1k 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
12answers
2k views

How do you choose a Linux/Unix/BSD distribution? [closed]

I am attempting to choose a Linux, Unix, and/or BSD distribution for development purposes. I want to be able to do things like write shell scripts, develop C, C++, Java, Ruby, Python, etc. apps in a ...
12
votes
4answers
6k 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. Its more curiosity than anything. Is there some kind of Mac OS X or BSD specific tool to do this? This ...
12
votes
5answers
3k views

AT&T vs Intel Syntax and Limitations?

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
1answer
305 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 ...
10
votes
6answers
1k 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: ...
9
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 ...
9
votes
5answers
2k 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 ...
8
votes
11answers
3k views

Are there any small Unix or BSD distributions?

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.
7
votes
3answers
695 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 ...
7
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 ...
6
votes
4answers
3k 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. ...
6
votes
3answers
2k 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 ...
5
votes
5answers
3k 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 ...
5
votes
3answers
328 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?
4
votes
1answer
138 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
370 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 ...
4
votes
4answers
516 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 ? ...
4
votes
5answers
489 views

Can an MIT-licensed program be relicensed as GPL?

Can I, without permission of anybody, relicense some software from MIT/BSD license to GPL license legally? For example, may I take the Google Chrome web browser and re-release it under the GPL (under ...
4
votes
5answers
221 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
254 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
2answers
2k 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 ...
4
votes
5answers
3k 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 ...
3
votes
1answer
260 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 ...
3
votes
1answer
119 views

Raw Sockets on BSD Operating Systems

I've been writing some sockets code in C. I need modify packet headers and control how they're sent out, so I took the raw sockets approach. However, the code I wrote will not compile on BSD systems ...
3
votes
4answers
768 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 ...
3
votes
1answer
93 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 ...
3
votes
4answers
264 views

How long does GPL Copyright last?

How long from when the code is 1st written or distributed, until GPL Copyrighted material falls into public domain, in the United States? I'm guessing 120 years, but I'm not a lawyer. Also how has ...
3
votes
4answers
201 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.
3
votes
4answers
791 views

Difference between MIT/BSD and CC-BY licenses

MIT/BSD licenses basically say: Hey, use the stuff, but don't claim it's yours. CC-By license (without nc and the such, just the plain cc-by) says: Hey, use the stuff, but don't claim it's yours. ...
3
votes
3answers
651 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

dTrace scripts and tools

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 ...
3
votes
4answers
884 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 ...
2
votes
4answers
124 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
1answer
70 views

Git Install in Home Directory as User: Errors?

I am trying to install git within my home directory on a unix server where I have a shell account as a user but do not have root privileges. I am following the instructions in on these sources: How ...
2
votes
1answer
164 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 ...
2
votes
4answers
64 views

Packets Are Stacked When Sent at Regular Intervals

I am trying to send a message over a TCP socket at a regular interval (every second). Sometimes the full message will not be sent or two-four messages will be stacked and sent at once. I have if ...
2
votes
5answers
135 views

How to test for GNU or BSD version of rm?

The GNU version of rm has a cool -I flag. From the manpage: -I prompt once before removing more than three files, or when removing recursively. Less intrusive than -i, while still ...
2
votes
2answers
249 views

Using select() for non-blocking sockets

I am trying to use the select function to have non-blocking i/o between a server and 1 client (no more) where the communication flows nicely (can send at any time and the other will receive without ...
2
votes
4answers
370 views

BSD Sockets - How to use non-blocking sockets?

I am trying to use non-blocking TCP sockets. The problem is that they are still blocking. The code is below - server code - struct sockaddr name; char buf[80]; void set_nonblock(int socket) { ...
2
votes
2answers
83 views

Do i have to open source a website code for example if I used some gpl2 jquery plugin?

Alright - I realize that most of you are like "what a dumb question". But really - can someone clear the situation for those of us who aren't lawyers? I wan to use some jquery plugin for my website. ...
2
votes
1answer
298 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 = ...
2
votes
4answers
288 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 ...
2
votes
1answer
187 views

C++ - stl_alloc.h missing on GCC4.4.4 on Fedora 12?

I am in the process of porting an application from a BSD platform onto a Linux box. When compiling, I have found that some of the header files call for <bits/stl_alloc.h>, which is missing from ...
2
votes
1answer
190 views

Use kqueue to determine hangup on the other side of the socket or exceptional state of the socket

I've read man 2 kqueue but have not found out how I can get notified about a socket hangup or exceptional condition of the socket without registering it with EVFILT_READ or EVFILT_WRITE. Apart from ...
2
votes
1answer
41 views

IEEE 1003.1 licenses compared

Software or real people can technically copy a BSD software, install it and sell it. What are technical and licence advantages and disadvantages compared to taking Linux or other 1003.1 and delivering ...
2
votes
2answers
141 views

Are certain open-source licenses more suitable than others for career growth? [closed]

As a software engineer/programmer myself, I love the possibility to download the code and learn from it. However building software is what brings food to my table. I have doubts regarding the type of ...

1 2 3