Linux 2.6.28 (2.6 branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Linux 2.6.28 (2.6 branch)
# 1  
Old 12-25-2008
Linux 2.6.28 (2.6 branch)

Linux is a clone of the Unix kernel, written from scratch by Linus Torvalds with assistance from a loosely-knit team of hackers across the Net. It aims towards POSIX and Single UNIX Specification compliance. It has all the features you would expect in a modern fully-fledged Unix kernel, including true multitasking, virtual memory, shared libraries, demand loading, shared copy-on-write executables, proper memory management, and TCP/IP networking. License: GNU General Public License (GPL)Changes:
This version adds support for the Ext4 filesystem, Ultra Wide Band (Wireless USB, UWB-IP), memory performance improvements, a boot tracer, disk shock protection, the phonet network protocol, support for SSD discard requests, transparent proxy support, several new network drivers, controllable IO CPU affinity, high-resolution poll()/select(), support of a minimal "dummy" policy in SELinux, tracing improvements, x86 x2APIC support, a fb driver for VIA UniChrome devices, Mitac Mio A701 ARM-based smartphone support, some new drivers, and many small improvements and fixes.Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
Net::LDAPI(3)						User Contributed Perl Documentation					     Net::LDAPI(3)

NAME
Net::LDAPI - use LDAP over a UNIX domain socket SYNOPSIS
use Net::LDAPI; $ldapi = Net::LDAPI->new('/var/run/ldapi'); # alternate way use Net::LDAP; $ldapi = Net::LDAP->new('ldapi://'); DESCRIPTION
Communicate using the LDAP protocol to a directory server using a UNIX domain socket. This mechanism is non-standard, UNIX-specific and not widely supported. All the normal "Net::LDAP" methods can be used with a "Net::LDAPI" object; see Net::LDAP for details. CONSTRUCTOR
new ( [SOCKPATH] ) Create a new connection. SOCKPATH can optionally be specified, to specify the location of the UNIX domain socket to connect to. If SOCKPATH is not given, the environment variable "LDAPI_SOCK" is evaluated, and if that does not exist, the value "/var/run/ldapi" is used. See "new" in Net::LDAP for further details. SEE ALSO
Net::LDAP, IO::Socket::UNIX BUGS
None yet. AUTHOR
Derrik Pates <dpates@dsdk12.net> COPYRIGHT
Copyright (c) 2003-2004, Derrik Pates and Graham Barr. All rights reserved. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.18.2 2013-07-21 Net::LDAPI(3)