O'Reilly books - official link


 
Thread Tools Search this Thread
Top Forums UNIX for Beginners Questions & Answers Answers to Frequently Asked Questions New to Unix. Which books should I read? O'Reilly books - official link
# 1  
Old 07-26-2007
O'Reilly books - official link

Yesterday I saw a closed post by xramm which gave a link to O'Reilly online books. Vino closed it because of copyright issues.

However, O'Reilly has a section on their website where you can read online copies of their own books - obviously not a copyright problem. Most are fairly old editions, but maybe some people would find them useful.

Here's the link:
O'Reilly Open Books Project
 
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. What is on Your Mind?

O'Reilly Site Lists 165 Things Every Programmer Should Know

Hi. Interesting set of brief essays ... cheers, drl Slashdot 10% sample: Code Is Design by Ryan Brush Continuous Learning by Clint Shank Do Lots of Deliberate Practice by Jon Jagger Don't Touch that Code! by Cal Evans Floating-point Numbers Aren't Real by Chuck Allison Install Me... (1 Reply)
Discussion started by: drl
1 Replies

2. Solaris

/var/adm/messages (insterface turned off/restored) and link up & link down message.

Hi All I am facing an issue with our new solaris machine. in /var/adm/messages Apr 22 16:43:05 Prod-App1 in.routed: interface net0 to 172.16.101.1 turned off Apr 22 16:43:33 Prod-App1 mac: NOTICE: nxge0 link up, 1000 Mbps, full duplex Apr 22 16:43:34 Prod-App1 mac: NOTICE: nxge0 link... (2 Replies)
Discussion started by: javeedkaleem
2 Replies

3. Solaris

/var/adm/messages (interface turned off/restored) and link up & link down message.

Hi All I am facing an issue with our new solaris machine. in /var/adm/messages root@Prod-App1:/var/tmp# root@Prod-App1:/var/tmp# root@Prod-App1:/var/tmp# cat /var/adm//messages Apr 20 03:10:01 Prod-App1 syslogd: line 25: WARNING: loghost could not be resolved Apr 20 08:24:18 Prod-App1... (0 Replies)
Discussion started by: javeedkaleem
0 Replies

4. Red Hat

I need Rhce materials official

I want the pdfs of course official red hat Rhce. Thanks. (1 Reply)
Discussion started by: Ultralord
1 Replies

5. UNIX for Dummies Questions & Answers

[Solved] Symbolic link not allowed or link target not accessible

Hi everybody, I read about treads realted to this issue but they did not resovle issue given below. Please help me resolve issue given below I have html file under /srv/www/htdocs/actual_folder ls actual_folder/ test.html and following link works... (0 Replies)
Discussion started by: newbielgn
0 Replies

6. Programming

g++ fails to link to static library when compilation and link in single command

Hello All, I've encountered a strange behaviour from g++ that doesn't make sense to me. Maybe you can shed some light on it: I have a bunch of source files and want to compile them and link them with a static library liba.a located in /usr/local/lib64 into an executable Approach 1 works... (0 Replies)
Discussion started by: magelord
0 Replies

7. SuSE

Official Security anouncements

Hello, I'm looking for an official Mailing List/Rss Feed or what else regarding SLES security Anoucements. Does anybody know? (1 Reply)
Discussion started by: demwz
1 Replies

8. News, Links, Events and Announcements

WIPO Official Decision

At Last Official Decision of UNIX.com Domain dispute by WIPO is available to review. http://arbiter.wipo.int/domains/decisions/html/2002/d2002-0294.html (Status: unix.com > Complaint denied) (1 Reply)
Discussion started by: killerserv
1 Replies
Login or Register to Ask a Question
GETOSRELDATE(3) 					   BSD Library Functions Manual 					   GETOSRELDATE(3)

NAME
getosreldate -- get the value of __FreeBSD_version LIBRARY
Standard C Library (libc, -lc) SYNOPSIS
#include <unistd.h> int getosreldate(void); DESCRIPTION
The getosreldate() function returns an integer showing the version of the currently running FreeBSD kernel. Definitions of the values can be found in The Porter's Handbook which is usually installed at /usr/share/doc/en_US.ISO8859-1/books/porters-handbook/. RETURN VALUES
Upon successful completion, getosreldate() returns the value requested; otherwise the value -1 is returned and the global variable errno is set to indicate the error. ENVIRONMENT
OSVERSION If the environment variable OSVERSION is set, it will override the getosreldate() return value. EXAMPLES
An example can be found in /usr/share/examples/FreeBSD_version. ERRORS
The getosreldate() function may fail and set errno for any of the errors specified for the library function sysctl(3). SEE ALSO
The Porter's Handbook, /usr/share/doc/en_US.ISO8859-1/books/porters-handbook/. HISTORY
The getosreldate() function appeared in FreeBSD 2.0. BSD
September 30, 2008 BSD