|
What are some of the major pro/con of FreeBSD vs GNU Linux vs OpenSolaris?
Which is the best operating system to program/develop against?
Started by Timk on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Are available for both..
Languages, toolkits, IDEs, etc.
When you ask, at least for FreeBSD - GNU/Linux.
On the downside, less consumer hardware support compared to GNU/Linux.
More stable.
|
|
What GNU/Linux command-line tool would I use for performing a search and replace on a file?
Can the search text, and replacement, be specified in a regex format?
Started by Ben Lever on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
You can keep a backup with something like this:
perl -pi.bak -e 's/foo/bar/g;' *.txt
Or pipeline:
cat file.txt | perl -ne 's/foo/bar/g;' | less... .
Perl was invented for this:
perl -pi -e 's/foo/bar/g;' *.txt
Any normal s/// pattern in those single quotes .
|
|
On Sun, 22 Jul 2007 09:39:20 -0400, "Lic. Orestes leal" <orestesleal13022@cha.jovenclub.cu> wrote:
Hi, my respects to all members.
I'm searching for a book about OpenGL programming
that i'ts focused only in linux, can anyone comment me
or ...
Answer Snippets (Read the full thread at omgili):
>
> I'm searching for a book ....
Orestes leal wrote:
>
> Hi, my respects to all members .
On Sun, 22 Jul 2007 11:55:38 -0400, Gregory Seidman <gsslist+debian@anthropohedron.net> wrote:
On Sun, Jul 22, 2007 at 09:39:20AM -0400, Lic .
|
Ask your Facebook Friends
|
Hi,
Is there free a portable (Windows, GNU/Linux & MacOSX) library providing a lock-free atomic swap function ?
If not, how would it be implemented for each of these platforms? (x86 with VC++ or g++)
Thanks
Started by moala on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
If you are looking for a library, have a look at... .
In assembler for x86 you might be able to get a "nearly" atomic xor swap, otherwise I'd go with some solution that uses locking, which will differ on Win32/{Linux,Darwin} .
Depends what you want to swap.
|
|
I’m looking for tools for interactively inspecting HTTP servers by manually constructing requests (and viewing responses), under GNU/Linux. Something that would let me quickly specify standard header fields, make a form request body, etc. (netcat doesn...
Started by Vasiliy Faronov on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
If all you are looking to do....
A tutorial can be found here.
Of course you have access to all the request/response fields too .
You can manipulate headers at will.
Maybe simply cURL is what you need?
A Python script with urllib2 would seem appropriate .
|
|
Has anyone been able to get syntax highlighting, autocomplete and bracket matching functionality on GNU/Linux for MXML files?
We are using Eclipse with Flex Builder for Linux (version alpha 5), but we can't edit MXML files on design view, and the text...
Started by Fernando on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I hope this situation.
The Design view for MXML doesn't work for GNU/Linux yet, afaik.
Patches.
|
|
What is the best general GNU/Linux book? I've been occasionally using Linux for a few years, but I could still benefit from a good complete manual that isn't tied too closely to a specific distribution. Is there one that stands above the rest? I am fine...
Answer Snippets (Read the full thread at stackoverflow):
I found it much more enlightening than reading any....
You may want to give a try to Linux From Scratch:
http://www.linuxfromscratch.org/
It's a step-by-step tutorial on how to build your own linux system from source packages .
Beginning Linux Programming.
|
|
I'm trying to setup a firewall for one of GNU/Linux systems. AFAIK, iptables and its ilk cannot make use of FQDNs in their configuration, since they're expected to be operational before the network interface is setup and before access to DNSs are available...
Started by Neil Santos on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
The other option is to change from firewall blocking....
Put the FQDN within your /etc/hosts file.
If your hosts line is
hosts: files dns
Then it will check your /etc/hosts file first before DNS .
In your /etc/nsswitch.conf determine the order of host resolution.
|
|
I am wondering, do you need a specific device driver to read a usb device in Linux, or should it just be able to be read. If I connect my cell phone or iPod touch to my linux box, it is not found is /proc/partitions and thus is not a mountable device ...
Started by Recursion on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
In short, you always need a device driver for accessing... .
Unfortunately there is no simple concept of "just read it" for USB devices (I am assuming that you are not referring to reading and writing the data on the USB bus that make up the USB protocol) .
|
|
How do I launch a process so that it would have a specific identifier in ps command?
UPD : I have a couple of servers running on one box. Most of them are in deployment mode. However one is in development. All servers are Pythonic and the disease is that...
Started by Alex on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
Don't have....
If you really want to change the name, the best way is to use a simple wrapper that sets argv and then execs the process you want to run .
You might get away just using a symlink to the binary .
You could rename the binary you're going to run.
|