'source'에 해당되는 글 2건

  1. 2009.09.04 EU probes Oracle-Sun deal, cites open-source issue by CEOinIRVINE
  2. 2009.03.12 Snort Installation by CEOinIRVINE

EU probes Oracle-Sun deal, cites open-source issue

By AOIFE WHITE , 09.03.09, 10:50 AM EDT

BRUSSELS --

European Union regulators Thursday launched an antitrust probe into U.S. software maker Oracle Corp.'s takeover of Sun Microsystems Inc., saying they wanted to make sure Oracle wouldn't hinder Sun's rival open-source database software.

EU approval is the main stumbling block for the $7.4 billion deal, which Oracle had hoped to close this summer and has already been cleared in the U.S. by the Department of Justice.

The European Commission now has until Jan. 19 before it makes a final decision to clear the deal or block it. In some cases, such as with Intel Corp., the EU has been a stricter antitrust regulator than the U.S., and often presses companies to make changes that eliminate antitrust worries, such as selling off parts of their business.

EU Competition Commissioner Neelie Kroes said regulators needed to examine whether customers could have less choice or see higher prices "when the world's biggest proprietary database company proposes to take over the world's leading open-source database company."

Sun bought open-source database provider MySQL last year for $1 billion as a way to find more customers for its computer hardware. Because MySQL (pronounced "my sequel") is open-source, its underlying coding is given away for free, and Sun doesn't sell the software itself. In contrast, Oracle is a leading vendor of database software that gets sold to businesses.

Database software forms the underpinnings of most things people do in business or on the Web. It helps companies manage and retrieve data they've stored, such as payroll or sales information. Typing in a search term, for example, forces a Web site to scour a database and spit out an answer.

The EU officials claim that MySQL, already popular among Web-based companies, will increasingly threaten Oracle's database software as it adds features and attracts more customers. The regulators questioned "Oracle's incentive to further develop MySQL as an open source database."

"In the current economic context, all companies are looking for cost-effective (information-technology) solutions, and systems based on open-source software are increasingly emerging as viable alternatives to proprietary solutions," Kroes said. "The commission has to ensure that such alternatives would continue to be available."

Sun and Oracle had no immediate comment Thursday.

EU spokesman Jonathan Todd said the EU was merely matching the U.S. in launching an in-depth investigation into the takeover. Todd stressed that the EU will use the coming weeks to weigh "serious doubts" about the deal - but that it could pass EU scrutiny unhindered.

The alternative - if the EU finds that its worries are justified - would be for the companies to offer remedies to soothe those concerns, such as selling off MySQL or making binding commitments so that rival developers could still base software on MySQL code.

Whatever the Europeans decide, the holdup represents a surprising setback for a deal that was originally expected to sail through antitrust scrutiny and close this summer. A key reason the deal got done in the first place was because Oracle was seen as a safer suitor than IBM Corp., which also bid for Sun. IBM was viewed as a bigger antitrust risk because of the companies' overlaps in the server and data-storage markets.

The EU described the database market as "highly concentrated," with the three main proprietary software companies - Oracle, IBM and Microsoft - controlling some 85 percent of the market by revenue.

Peter Alexiadis, a partner at the Brussels office of law firm Gibson, Dunn & Crutcher LLP, said he was surprised that the EU was taking a different tack from the U.S. on the deal.

"If ever there was a case for the U.S. and the EU seeing eye to eye, I would have imagined that this was an appropriate one," he said, saying he was "hard pressed" to see how the deal would strengthen Oracle's position in a global and very varied database market.

"If the commission goes down the path of defining narrow database markets, they might be going down a path they may regret," he said.

Sun shares fell 17 cents, or 1.8 percent, to $9.15 in morning trading Thursday, as investors tried to gauge the risk that Oracle won't be able to complete the deal. Oracle would pay $9.50 per share if the deal is completed.

Oracle shares fell 41 cents, 1.9 percent, to $21.36.

Oracle's bid for Sun marks new territory for the company, turning it into more of a one-stop technology shop, like IBM Corp. and Hewlett-Packard Co. Sun is the world's No. 4 maker of computer servers, which power Web sites and corporate back offices. In many cases those servers run database software such as mySQL or Oracle products.

AP Technology Writer Jordan Robertson contributed to this report from San Francisco.

Copyright 2009 Associated Press. All rights reserved. This material may not be published broadcast, rewritten, or redistributed

'IT' 카테고리의 다른 글

Learn C++  (0) 2009.10.06
New jobless claims dip less than expected to 570K  (0) 2009.09.04
Happy Birthday 'INTERNET'  (0) 2009.09.04
Payment Engine & PG & Billing ?  (0) 2009.08.19
Baby Tech  (0) 2009.05.05
Posted by CEOinIRVINE
l

Snort Installation

IT 2009. 3. 12. 04:45

To install from source, download it from the Snort web site (http://www.snort.org). Uncompress, unpack, compile, and install by using the following commands:

tar xzf snort-2.2.0.tar.gz
cd snort-2.2.0
./configure
make

And then as root:

make install

Discussion

Installing from source is nearly as easy as installing from precompiled packages, and it works across all Unix platforms. There is also a lot more flexibility in the options you can choose. First of all, you need to download the latest source tar file from snort.org. At this point, if possible, you should ensure that the source has not been meddled with; you can do this by verifying the checksum given using the MD5 utilities.

[simon@frodo downloads]$ md5sum snort-2.2.x.tar.gz
6194278217e4e3f733b046256a31f0e6 *snort-2.2.x.tar.gz

The source is a tarred gzip file; to extract it, enter the following at a command prompt:

[simon@frodo downloads]$ gunzip snort-2.2.x.tar.gz
[simon@frodo downloads]$ tar -xvf snort-2.2.x.tar

You'll then see the entire list of filenames scroll past as they are decompressed and extracted. This creates a directory structure under the current directory. In this case, with the base directory ./snort-2.2.0/. Change into this directory. At this point, if you wish to perform an ordinary installation, type the following:

[simon@frodo snort-2.2.x]$ ./configure

This will create the make file optimized for your architecture. There are a number of options that you can specify to configure. These are listed in Table 1-1. They include options for specifying switches for the compliers as well as turning on support for certain features.

 
Switch Action
--enable-debug

Turn on the debugging options.
--with-snmp

Enable SNMP alerting code.
--enable-smbalerts

Enable SMB alerting code.
--enable-flexresp

Enable the "Flexible Response" code.
--with-mysql=DIR

Turn on support for MySQL.
--with-odbc=DIR

Turn on support for ODBC databases.
--with-postgresql=DIR

Turn on support for PostgreSQL.
--with-oracle=DIR

Turn on support for Oracle.
--with-openssl=DIR

Turn on support for OpenSSL.
--with-libpq-includes=DIR

Set the support directories for PostgreSQL.
--with-libpq-libraries=DIR

Set the library directories for PostgreSQL.
--with-libpcap-include=DIR

Point the configure script in the right direction for the libpcap include files.
--with-libpcap-libraries=DIR

Point the configure script in the right direction for the libpcap library files.
--prefix=PATH

Set the install directory to PATH rather than /usr/local.
--exec-prefix=PATH

Set the install directory for the executables and libraries to PATH; install all other files in the usual place.
--help

Print out all the available options.


For further information on these switches, you should read through the INSTALL file included in the /doc directory. Also in this file are some of the known issues and fixes for compilation on different Unix operating systems. The configure script may warn you of missing dependencies (other applications or utilities that are required by Snort). Download and install the required files from their respective web sites and rerun the configure command. In the many installations we've done, we can only recall coming across two missing prerequisites. These were libpcap, the library for performing packet capture on Linux systems, available for download from http://www.tcpdump.org, and Perl Compatible Regular Expressions (PCRE), available for download from http://www.pcre.org/.

Then you need to compile it using the make command:

[simon@frodo snort-2.2.0]$ make

Now go and get the hot beverage of your choice. This can take some time, even on a pretty fast machine. There are no test cases to run, so at this point, you need to run the install as root:

[root@frodo snort-2.2.0]# make install

Provided at this point you see no error messages, your installation is complete.

Also ensure that the directory to which Snort writes logfiles exists and is writable by the user that Snort runs as. If Snort can't write its logfiles, it will fail during any attempt to run it.

The INSTALL document in the /doc directory of Snort

http://www.tcpdump.org

http://www.pcre.org/


'IT' 카테고리의 다른 글

iPhone OS Preview  (0) 2009.03.14
Running Snort as a Linux Daemon  (0) 2009.03.12
New iPod speaks names of artists and songs  (0) 2009.03.12
Palm Confident About Pre Phone  (0) 2009.03.11
Apple's Next Blockbuster  (0) 2009.03.10
Posted by CEOinIRVINE
l