CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    Feb 2002
    Posts
    5,757

    UNIX (Linux, BSD, etc) Programming :: UNIX

    Hello.

    I am a Win32 platform C++ programmer. One of my interest now is programming in the UNIX platform. I have several questions.

    First off, I am not interested in scripting, per se, but rather real-world software design and implementation.

    In UNIX, what tools including libraries, IDE, and compilers, are used when developing client/server application running both as a service and GUI?

    What books do you recommend for developing client/server applications in UNIX using C++ that go over subjects such as multithreading, sychronization, multiple processes, services, and GUI?

    Thanks,

    Kuphryn

  2. #2
    Join Date
    Nov 2003
    Location
    Vienna, Austria
    Posts
    212
    The most common compiler in UNIX is the Gnu Compiler Collection, gcc. There are two popular IDEs I know of, Anjuta and KDevelop. Then there are the advanced text editors, which are also often used: vi and emacs.

    There are many GUI libraries, but the two most popular are GTK+ (or GTKmm for C++) and Qt.
    All the buzzt
    CornedBee

  3. #3
    Join Date
    Sep 2002
    Location
    Belarus - Tirol, Austria
    Posts
    647

    Re: UNIX (Linux, BSD, etc) Programming :: UNIX

    Originally posted by kuphryn
    What books do you recommend for developing client/server applications in UNIX using C++ that go over subjects such as multithreading, sychronization, multiple processes, services, and GUI?

    Thanks,

    Kuphryn
    I'd suggest U the books by R. Stevens:
    http://www.kohala.com/start/#books

    Another one is worth to srart with is:
    http://www.amazon.com/exec/obidos/tg...57412?v=glance

    There are lots of free e-books and documentation via the web. Just search.
    "UNIX is simple; it just takes a genius to understand its simplicity!"

  4. #4
    Join Date
    Feb 2002
    Posts
    5,757
    Okay. Thanks.

    Kuphryn

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured