General :: Any Recommended Books For A Beginner

Jun 14, 2010

I'm new to linux hence would like to know if there are any books that can be helpful in understanding linux from the scratch. Any suggestions would be greatful.

View 13 Replies


ADVERTISEMENT

General :: Hardware Server Beginner Query

Nov 4, 2010

i have a server which was handover me, it has redhat 4 u3.but i cant find the machine model no, it is hp g4 server, so this info from linux where can i see
2nd if i want to know what is the bios version and date how can i see from linux.
3rd if any hardware failing like network card, ram memory, hard disk how we come to know hardware.

View 5 Replies View Related

General :: Distro For Newbies - Recommend For A Beginner To Start Hands On With?

Dec 28, 2010

wondering which of the Linux Distro you would recommend for a beginner to start hands on with? Also, can you provide links where I can download Linux ISOs.

View 5 Replies View Related

General :: Books Or Websites In English

Apr 17, 2011

Please recommend me the best book in English Language and the best website in English Language that teach me Linux step by step.The PDFs of the books are better!!I just want to learn LinuxOS as deeper as I can!!!

View 9 Replies View Related

Ubuntu :: Beginner And Compiling Prgrams

Mar 25, 2010

I am a beginner and would like to know how do you compile a program in ubuntu 9.10. I would like to compile freeorion but don't know where to start in compiling any sort of program. Any instructions would be most welcome.

View 3 Replies View Related

Red Hat :: Sendmail Beginner With Sasl And Multiple Domains

May 5, 2010

I have sendmail setup with sasl and multiple domains.I'm sure there is an easy fix for this but I can send emails to anyuser@<anyofmyvirtualdomains.dom> and it will be accepted. I'm just trying to cut down on any confusion that may occur later. Is it possible "restrict" or classify a user into a particular domain? I've setup virtusertable and aliases but no luck in accomplishing my goal.I've searched to find no particular information on this.

View 1 Replies View Related

General :: Dont Use LVM Is Better Or LVM Not Recommended?

Feb 26, 2011

i have simple question where or when you dont recommend to use LVM? where or when we dont use LVM is better or LVM not recommended

View 9 Replies View Related

Networking :: Broadcast Packets Failed To Receive - Socket Beginner

Feb 24, 2011

I am working on uClinux/almost same as Linux. I am new to socket programming. I have two micro controllers running on same code. Simple run with arguments mean send merged string.
run 1st micro controller (Send): ./Name "anystring"
run 2st micro controller (Recive):/Name

My code is:
int receive() {
// Create socket
int sock_fd;
struct sockaddr_in addr;
char buffer[kBufferSize];
int bytes_received=0;
int addr_len = sizeof(addr);
printf("receive start ");
sock_fd = socket(AF_INET, SOCK_DGRAM, 0);
if ( sock_fd == -1 ) {
printf("receive Create ");
// Error occurred return 0; }
printf("Res Create sucee ");
// Create address from which we want to receive, and bind it
memset(&addr, 0, sizeof(addr));
addr.sin_family = AF_INET;
addr.sin_addr.s_addr = INADDR_ANY;
addr.sin_port = htons(kPortNumber);
if ( bind(sock_fd, (struct sockaddr*)&addr, sizeof(addr)) < 0 ) {
printf("receive bind "); // Error occurred return 0; }
printf("Bind Succeful sucee ");
while ( 1 ) {
// Receive a message, waiting if there's nothing there yet
bytes_received = recvfrom(sock_fd, buffer, kBufferSize-0, 0,
(struct sockaddr*)&addr, &addr_len);
if ( bytes_received < 0 ) { // Error occurred
printf("receive bytes "); return 0; }
printf(" bytes_received succeful ");
printf("Ressocketstring : %s ",buffer);
memset(Ressocketstring,0x00 , sizeof(Ressocketstring));
strcpy(buffer,Ressocketstring); printf("Ressocketstring : %s
",Ressocketstring); printf(" ");
printf("Hello Receive finished");
// Now we have bytes_received bytes of data in buffer. Print it!
fwrite(buffer, sizeof(char), bytes_received, stdout); } }
int transmit(char * data, int length) {
int sock_fds[kMaxSockets];
// Obtain list of all network interfaces
/* struct ifaddrs *addrs;
if ( getifaddrs(&addrs) < 0 ) {
// Error occurred return 0; } */
// Loop through interfaces, selecting those AF_INET devices that support broadcast, but aren't loopback or point-to-point
struct sockaddr_in addr; int number_sockets = 0; struct hostent *he;
/* const struct ifaddrs *cursor = addrs;
while ( cursor != NULL && number_sockets < kMaxSockets ) {
if ( cursor->ifa_addr->sa_family == AF_INET
&& !(cursor->ifa_flags & IFF_LOOPBACK)
&& !(cursor->ifa_flags & IFF_POINTOPOINT)
&& (cursor->ifa_flags & IFF_BROADCAST) ) {
// Create socket*/
sock_fds[number_sockets] = socket(AF_INET, SOCK_DGRAM, 0);
if ( sock_fds[number_sockets] == -1 ) // Error occurred {
printf("Error Create "); return 0; }
he = gethostbyname((char *)BCASTADDRESS) ;
if (he==NULL ) {printf("Error gethostbyname ");
herror("gethostbyname"); printf("Error host "); exit(1);
} printf("Res He ");
// Create address from which we want to send, and bind it
memset(&addr, 0, sizeof(addr)); addr.sin_family = AF_INET;
addr.sin_addr = *((struct in_addr *)he->h_addr);//((struct sockaddr_in *)cursor->ifa_addr)->sin_addr; addr.sin_port = htons(kPortNumber);
if ( bind(sock_fds[number_sockets], (struct sockaddr*)&addr, sizeof(addr)) < 0 )
{ // Error occurred printf("Error bind "); return 0; }
// Enable broadcast int flag = 1;
if ( setsockopt(sock_fds[number_sockets], SOL_SOCKET, SO_BROADCAST, &flag, sizeof(flag)) != 0 ) // Err occur { printf("Error Enable "); return 0; }
number_sockets =1; printf("Succes 1 "); printf("transmit Create ");
// Initialise broadcast address memset(&addr, 0, sizeof(addr));
addr.sin_family = AF_INET; addr.sin_addr.s_addr = INADDR_BROADCAST;
addr.sin_port = htons(kPortNumber);
// Send through each interface int i;
for ( i=0; i<number_sockets; i++ ) {
if ( sendto(sock_fds[i], data, length, 0, (struct sockaddr*)&addr, sizeof(addr)) < 0 )
{ printf("Error Send "); // Error occurred return 0;
} printf("Succes 2 "); } return 1; } void MergeMessage( ) {
memset(socketstring,0x00,sizeof(socketstring));
sprintf(socketstring,"%s@%s@%s@%s@%s@%s@%s@%s@%s@%s@%s
",Tmeg.s1,Tmeg.s2,Tmeg.s3,Tmeg.s4,Tmeg.s5,Tm eg.s6,Tmeg.s7,Tmeg.s8,Tmeg.s9,Tmeg.s10,Tmeg.s11);
printf(" MergeSocketMessage : %s ",socketstring); }
int main (int argc, char** argv) {
int fd=0,bdc=0; struct ifreq ifr; printf("Tsarting man ");
fd = socket(AF_INET, SOCK_DGRAM, 0);
strncpy(ifr.ifr_name, "eth0", IFNAMSIZ-1);
ioctl(fd, SIOCGIFADDR, &ifr); close(fd);
memset(MYIP,'-',sizeof(MYIP));
memset(BCASTADDRESS,'-',sizeof(BCASTADDRESS));
strcpy(MYIP, inet_ntoa(((struct sockaddr_in *)&ifr.ifr_addr)->sin_addr));
printf("Etho: %s ,len:%d ", MYIP,strlen(MYIP));
for(bdc=strlen(MYIP);MYIP[bdc-1]!='.';bdc--) {}
strncpy(BCASTADDRESS,MYIP,bdc-1); strcat(BCASTADDRESS,".255");
printf("BCASTADDRESS: %s ,len:%d
", BCASTADDRESS,strlen(BCASTADDRESS));
printf("Initial Broad Cast message "); {
/*s0"0" (id=76)
s1"500" (id=77)s2"100" (id=78)s3"100" (id=78)s4"startVD" (id=79)
s5"lighting" (id=80)s6"reading" (id=81)s7"Anna" (id=82)s8"0" (id=76)
s9"";s10"" (id=64)s11"" (id=64)*/
strcpy(Tmeg.s0,"0"); strcpy(Tmeg.s1,"500");strcpy(Tmeg.s2,"100");strcpy(Tmeg.s3,"100");
strcpy(Tmeg.s4,"startvd");strcpy(Tmeg.s5,"lighting");strcpy(Tmeg.s6,"reading");
strcpy(Tmeg.s7,"anna");strcpy(Tmeg.s8,"0"); }
MergeMessage (Tmeg); if( strlen(argv[1]) ) {
//strcpy(socketstring,Tmeg,sizeof(Tmeg));
if(transmit(socketstring, strlen(socketstring) ) ) {
printf(""%s" transmitted. ", socketstring); } else {
printf("Error occurred: %s ", strerror(errno)); return 1; } }
else { for( ; ; ) {
if ( argc < 2 ) // No argument: Just listen {
printf("Listening... "); if ( !receive() ) {
printf("Error occurred: %s ", strerror(errno)); return 1;
} return 0; } } } printf("Finished "); return 0;
} //////////////// .h file is /////////////
//#define WIN32_LEAN_AND_MEAN// Exclude rarely-used stuff from Windows headers
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <net/if.h>
#include <fcntl.h>
#include <netdb.h>
#include <signal.h>
#include <sys/wait.h>
#include <sys/ioctl.h>
#define SubLen50
//#include <ifaddrs.h>
#include <errno.h>
char MYIP[20];
char BCASTADDRESS[20];
typedef struct {
char s0[SubLen];
char s1[SubLen];
char s2[SubLen];
char s3[SubLen];
char s4[SubLen];
char s5[SubLen];
char s6[SubLen];
char s7[SubLen];
char s8[SubLen];
char s9[SubLen];
char s10[SubLen];
char s11[SubLen];
}msg_struct;
msg_struct Sendmsg;
msg_struct Tmeg; //Recivemsg;
Boolean pri[6];
char socketstring[SubLen*12];
char Ressocketstring[SubLen*12];
int kBufferSize = (SubLen*12);

View 2 Replies View Related

General :: Recommended Install Of Fedora 12 From Scratch?

Feb 21, 2010

I have only a CD Drive and the system is stand alone. Do I use the 5 CD set or Do I use the "Live" CD Thing?

View 2 Replies View Related

Programming :: Perl Beginner - Can't Get PerlMagick To Read Filename From Array Element?

Aug 21, 2010

it's been a while since I logged on here! I've been trying my hand at a little perl and have hit a brick wall.I'm using the Imagemagick module to manipulate some images. I can get the following to work without issue:

Code:
$teampath = "/var/www/team1";
$player=Image::Magick->new;

[code]...

View 1 Replies View Related

General :: Recommended Distro For HP Omnibook XE3 (PIII 1GHz)?

Oct 25, 2010

I have an old HP Omnibook XE3 that I want to use for P2P, Sopcast, viewing videos etc. I wanted to set up Ubuntu og Kubuntu but was not sure if the laptop could handle it. What do you guys think? Which distro would suit me best?

View 9 Replies View Related

General :: Recommended For Acer 5630zg And Where Found The Drivers

Oct 27, 2010

My PC is a Acer 5630 extensa 5630 zg: 15,4 WXGA Cristal Brite Intel Pentium Dual Core DC 3200 - 2,00 GHz Graphics card nVidia 9300 com 256 MB de mem�ria dedicada 6 GB (4GB RAM+2GB MMC Turbo Boost) 320 GB Disco DVD recorde webcam 0,3 MPIX, Wi-Fi What is the versions that it suporte and where i can found the drivers?

View 4 Replies View Related

General :: Recommended OS To Install As Dual Boot With Kubuntu 11.04?

Apr 19, 2011

this is my first thread. Just installed Desktop Kubuntu Natty 11.04 x86_64 and have been amazed by its possibilities. I would like though to install a second OS which is free-ware and unlike Kubuntu but as powerful and userfriendly. Would anyone recommend the followinf?

FreeBSD?
Fedora?
Mandriva?

View 5 Replies View Related

General :: Recommended Directory Structure For Application System Development?

Apr 27, 2010

I have to set up my development environment under OEL 5.4. The internal directory structure is more or less fixed, the question is where to put the whole application tree in standard FHS for the development phase.For production, the system will be deployed on a server where data is kept with an Oracle 11g database. Development goes with JDeveloper which has its own internal application/project directory structure; however, I whould like to be independent from this. Unfortunately, by carefully studying the web for FHS, if I will adhere to it I only find ready-made packages to put under /opt, for example. No development aspects are mentioned. make some proposal, possibly with respect to best practices.

View 4 Replies View Related

General :: Apache Access Log File Recommended Size Limit

Jan 17, 2011

Based on some web reference, apache access log file size increased more than 2Gb. It will effect apache performances. Is this correct?

View 4 Replies View Related

General :: Failed To Install The Ubuntu Recommended Driver Many Times?

Aug 9, 2010

I have failed to install the Ubuntu recommended driver many times. It's been pointed out that i have a build error in my make.log, (See att) but i don't know what the implications are?

View 13 Replies View Related

General :: Puppy System Requirements (recommended) For Runescape On A Live USB?

May 20, 2010

I am wondering if you can play Runescape on Puppy Linux(Slackware) with Java, Flash, and the plug-ins are all installed, and i use a Live Usb. Is this possible? Recommended Requirements(and please don't write the bare minimum)

View 3 Replies View Related

Security :: Use Of Iptables And Books For Indepth?

Jan 30, 2010

proper use of iptables and tell me good books for indepth study

View 6 Replies View Related

Ubuntu :: Loading Cd Books On Tapes And Movies?

Mar 10, 2010

I am trying to play a book that is on cds. How would I play it on the computer so I can listen to it. I could find only a music player and that did not seem to work.

Also I am trying to play a movie. The movie player came up when I loaded the movie cd but I could not seem to get the movie to play?

What am I missing on mounting these disks.

View 1 Replies View Related

Ubuntu :: Exporting ALL Evolution Address Books?

Mar 26, 2010

Exporting the default evolution address book to a cvs file is relatively simple:"There is an obscure utility called evolution-addressbook-export that does the job. To find it use the locate command on your system as it isn't in your normal path. Mine was located :

/usr/libexec/evolution/2.6/evolution-addressbook-export
to use is simple :
/usr/libexec/evolution/2.6/evolution-addressbook-export --format=csv >contacts.csv"[URL]..

But this ONLY exports contacts from the default address book (Personal address book), not other address books one may have created in evolution. SO HOW SHOULD THE COMMAND BE MODIFIED TO EXPORT ADDITIONAL ADDRESS BOOKS THAT ONE HAS CREATED?Cannot find an answer to this anywhere - most frustrating.

View 3 Replies View Related

Ubuntu :: 11.04 Evolution 2.32.2 - Multiple Address Books

May 18, 2011

I'm having an issue in Evolution after upgrading to 11.04 in which upon autocompletion when typing emailaddresses in the To/CC fields, is slower than molasses.

I'm trying to troubleshoot this issue, but in my Evolution the Personal addressbook (from Contacts) is displayed 7 times. That is I have one CouchDB, one entry for the Exchange 2003 server, and 7 "On This Computer/Personal" addressbooks.

Any contact I add in one of these end up in every single of the others, even though none of these addressbooks are in use. But I can give every addressbook an individual name, so it appears to individual addressbooks.

I have searched the home folder and /usr for where I can find these and remove them, but they simply are nowhere to be found.

Does anyone know in which file I need to edit in order to fix this, and does anyone else have the slow autocompletion problem after upgrading to 11.04?

View 1 Replies View Related

Ubuntu :: Can't Open Evolution Address Books

Jul 2, 2011

Suddenly I can't open some of my evolution address books. I get this error message :

Unable to open address book

This address book cannot be opened. This either means that an incorrect URI was entered, or the server is unreachable.

Detailed error message: Invalid source

This doesn't happens with 3 out of 5 address books. All the books in question are on my computer. My ubuntuone and google address books work fine. I've looked around for answers, but most of the issues seem to be related to the ubuntuone book, which is working fine for me.

View 4 Replies View Related

Software :: Audio Books Storing With Categorization

Apr 8, 2010

I'm starting to take advantage of a lot of the software packages that come with Ubuntu, and I am finding an abundance of software for just about everything. So far, the best application for my needs is the Calibre E-Book Reader, and I am wondering if a similar program exists for audio books. Something which would store them altogether, and categorise them by title, date, genre, author etc.

View 1 Replies View Related

Software :: Want Media Player For Audio-Books

Jul 9, 2010

Which linux media player is good for listening audio books,
I need something with good bookmark support, something to at least remember where I left last time.

View 1 Replies View Related

Ubuntu :: Thumbnailing Of Comic Books Fails In Lucid

Apr 19, 2010

There is a following convention: tar/zip/rar archive renamed to cbt/cbr/cbz is recognized by some application as a comic book file, so file managers can open it using corresponding viewers, which treat sequence of images inside as pages of a book. And nautilus used to recognize cbt files, making thumbnails from the first image in such renamed archive back in karmic. It still recognizes such file as "Comic Book Archive" after upgrade to lucid but fails to thumbnail it now. It tries to do that though, showing icon with the clock for a moment, but almost instantly fails, printing "Error loading document: File type Tar archive (application/x-tar) is not supported" to the console. When I am trying to open cbt file in evince (which is responsible for making document thumbs in gnome afaik) it displays exactly the same error message. Cbt files itself are completely valid and can be opened easily with Comix for example. Thumbs created in karmic are still displaying fine as well.

View 3 Replies View Related

Ubuntu :: Can Gtkpod Handle Audio Books Like An IPod

Jan 4, 2011

I noted in another post that gtkpod was suggested for audio book use. I had a look at the documentation but it did not give any clear indication of this.

Using iTunes it is possible to link all the tracks on 1 CD which makes for uninterupted listening and will also offer the facility to stop and re-start the book from where I left off. Is this available using gtkpod?

My laptop is purely a Linux setup. I am told that I would have to change the BIOS settings which is well beyond my capabilities. As I particularly wish to keep my system pure I need to find the best possible way to work with audio books rather than to capitulate to Microsoft or Apple.

View 9 Replies View Related

Ubuntu :: Evolution - Display Birthday Dates From Other Address Books Than Personal

May 21, 2010

Basically it's all in the title. Birthday and anniversary dates from address books other than Personal - whether these are local or remote - do not display in the calendar. I have so far found no settings whatsoever that would trigger the expected behaviour. It would in fact be good enough if the display could be switched to other than Personal address book at all...

View 4 Replies View Related

Ubuntu Networking :: Can I Use Free 3g Service That Is Generally Restricted To Buying Books

Jul 15, 2010

Is this possible? Can I use the free 3g service that is generally restricted to buying books and Wikipedia, and use it to browse the web and check my email?

View 3 Replies View Related

General :: Video Resolution Out Of Range Change Setting To Recommended Resolution 1280x1024

Oct 14, 2010

When I boot my computer I get this message: Warning Pc video resolution is out of range Change setting to recommended resolution 1280x1024 @60mh So I hit ctrl alt f1 I typed in Sudo dpkg-reconfigure xserver-xorg Nothing happens. It's been very frustrating because with everything that I've looked up it says that it's suppose to guide me through something. I desperately need my computer for school.

View 8 Replies View Related

Software :: Text Books And Tutorials Online Regarding Web Page Creation Software?

Jun 4, 2010

I am interetsed in web page creation software, getting that is easy, now, I am looking at text books, classes or online tutorials. Are there any to mention?

View 4 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved