Sponsored Content
Full Discussion: Books needed.
Top Forums UNIX for Dummies Questions & Answers Books needed. Post 30241 by Kelam_Magnus on Friday 18th of October 2002 10:26:48 AM
Old 10-18-2002
Here is a link that has some good resources.

https://www.unix.com/unix-for-dummies-questions-and-answers/8072-learning-unix-linux-post28242.html?s=


First, I would suggest any books that are sold by the Vendor of your OS. Like Sun and HPUX both have books for OS Specific topics.

Also, some good books are:

"UNIX in a Nutshell" by O'Reilly.
"Sed & Awk" by O'Reilly
"The AWK Programming Language" by Aho, Kernigan, Weinberger
"TCP/IP Network Administration" by O'Reilly

****************
For a beginner this next book is a MUST HAVE!!!!!!!!!
Another AWESOME book, sometimes referred to as "The Red Book". I think it is now a 3rd edition for around $65, but I just found a 2nd ed for $6! at a used book store. Shouldn't be much difference.

"Unix System Adminstration Handbook" by Nemeth, Snyder, Seebass, Hein

That should keep you busy for a few years!!!

Smilie
 

9 More Discussions You Might Find Interesting

1. News, Links, Events and Announcements

FreeBSD Books

Any good books out there that you could recommend to a noob? (2 Replies)
Discussion started by: ignacio
2 Replies

2. UNIX for Dummies Questions & Answers

Books and such!

Hi guyes and girls. I am totaly new to this, so i need some advice on books and such. What book should i read if im going to get good in Unix? And if im going to read that book, what OS do i need for my first experience? And where do i get it? Some other things you folks can post is... (4 Replies)
Discussion started by: Seyedx
4 Replies

3. UNIX for Dummies Questions & Answers

PERL Books

Not sure if this question is for out here or not - I know very little about PERL. Most of the scripts on the system I am working on now are in PERL, I'm confused with where this fits into Unix scripting - can anyone suggest a good book or resource for learning this. I am to decipher some of the... (3 Replies)
Discussion started by: Barb
3 Replies

4. Programming

Recommend Books

Can anybody recommend a good (& maybe cheap :D ) book for c-prg in HP-UX. I a little rusty & most of expr is in PC world. (1 Reply)
Discussion started by: vslewis
1 Replies

5. Programming

books for pro c,c++

Hi i have to work with pro c,c++ , can any body help me or that which are the best books for that,and some web address where i can get suitable information, :( (4 Replies)
Discussion started by: kapilnagda
4 Replies

6. Solaris

Solaris books

I am interested in books with good coverage of Solaris 8 or 9, maybe 10 (is 10 widely deployed in production yet) I've been doing unix admin for a while but on other platforms. I've noticed that most if not all of Solaris books in the bookstore assume you need to know the basic stuff, ksh,... (1 Reply)
Discussion started by: etc
1 Replies

7. Fedora

Books on Linux

Not totally new to Linux. Have done distro installs before. At this point, I'm looking for a way out of the MS lock down I've been in. Looking for a good beginner/intermediate book. One that will cover things such as server installs as well as things like X-Windows/SAMBA installs from CLI. What I... (2 Replies)
Discussion started by: jcayo11
2 Replies

8. Programming

Books for advanced C

Simple question , what good book is next step in learning C. I finished with K&R and I want to go to the next step , so if someone has a good book please share title :D I looked for Advanced C programming by example but it is too expansive 400$ on Amazon :( So please tell me (7 Replies)
Discussion started by: solaris_user
7 Replies

9. Red Hat

Looking for RH4xx v6 books

Hi folks, I just passed RH401 exam, and now looking for RH423, RH436, RH442, RHS333 RHEL6 workbooks materials. Does anybody have it ? I am ready to provide compensation for that, please pm if interested. (5 Replies)
Discussion started by: versd
5 Replies
DOM_IMPORT_SIMPLEXML(3) 						 1						   DOM_IMPORT_SIMPLEXML(3)

dom_import_simplexml - Gets aDOMElementobject from aSimpleXMLElementobject

SYNOPSIS
DOMElement dom_import_simplexml (SimpleXMLElement $node) DESCRIPTION
This function takes the node $node of class SimpleXML and makes it into a DOMElement node. This new object can then be used as a native DOMElement node. PARAMETERS
o $node - The SimpleXMLElement node. RETURN VALUES
The DOMElement node added or FALSE if any errors occur. EXAMPLES
Example #1 Import SimpleXML into DOM with dom_import_simplexml(3) <?php $sxe = simplexml_load_string('<books><book><title>blah</title></book></books>'); if ($sxe === false) { echo 'Error while parsing the document'; exit; } $dom_sxe = dom_import_simplexml($sxe); if (!$dom_sxe) { echo 'Error while converting XML'; exit; } $dom = new DOMDocument('1.0'); $dom_sxe = $dom->importNode($dom_sxe, true); $dom_sxe = $dom->appendChild($dom_sxe); echo $dom->saveXML(); ?> SEE ALSO
simplexml_import_dom(3). PHP Documentation Group DOM_IMPORT_SIMPLEXML(3)
All times are GMT -4. The time now is 02:52 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy