Turkey's Pardus distro is easy to use

 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News Turkey's Pardus distro is easy to use
# 1  
Old 12-13-2007
Turkey's Pardus distro is easy to use

Thu, 13 Dec 2007 09:00:00 GMT
Pardus developers describe the Linux distribution as advanced yet easy to install and use. Let's see how well it lives up to the hype.


Source...
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Linux

Help choosing distro

Hi, I just ordered an Skylake NUC and will run Linux on it. My distro of choice has been Ubuntu but I am fed up with the release cycle and would like more of a rolling release. I would say I am an intermediate level Linux user. It's going to be a HTPC, I want to have the latest kernels... (0 Replies)
Discussion started by: rthorntn
0 Replies

2. Linux

Best Linux Distro

Hello, I have a Compaq Presario v3000 5 year old laptop, with 1 GB RAM and currently running the (slow and stupid) Windows 7 32 bit, thus I would like to dual boot it with an appropriate distro of Linux that 1) Doesnt consume too much resources (1 GB RAM is not a lot of space) and it ll be... (4 Replies)
Discussion started by: ajayram
4 Replies

3. Linux

Choosing the best distro.

Hi all Help me find the best distro for the following configurations: Intel pentium IV 1.6 Ghz 128 MB RAM :( 40 GB Hardisk with one very big partition more than 35 gb n another 2 gb partition. windows xp is already installed but has enough free space (26gb). Which linux will be... (0 Replies)
Discussion started by: bbala
0 Replies

4. UNIX for Dummies Questions & Answers

Need help on installing an EASY to use and easy to install command line text editor

Hi again. Sorry if it seems like I'm spamming the boards a bit, but I figured I might as well ask all the questions I need answers to at once, and hopefully at least get some. I have installed Solaris 10 on a server. The default text editors are there (vi, ex, ed, maybe others, I know emacs is... (4 Replies)
Discussion started by: EugeneG
4 Replies

5. What is on Your Mind?

Happy turkey day!

Hello all, Happy turkey day! I have no questions at this time. (1 Reply)
Discussion started by: mskcc
1 Replies

6. UNIX for Dummies Questions & Answers

Looking for right distro...

Hello all! I am searching for a *nix distro for a project I am about to undertake. I have a laptop (p3 500mhz, 128MB ram, 10GB hard drive) that I would like to use as a server for VPN & possibly hosting a small personal web site. Now, here is where it gets a bit tricky. There is no optical... (2 Replies)
Discussion started by: DISK
2 Replies

7. Debian

which distro?

Hi all, I know, it's a highly subjective and speculative question, but can anyone advise a Linux-newbie (haven't even started yet) on what distribution might be right in my case? - I have for all intents and purposes NO Linux experience. - I do have some previous IT experience. -- A... (9 Replies)
Discussion started by: ropers
9 Replies

8. UNIX for Dummies Questions & Answers

Which distro best for me?

Im goin to build a server soon, im planning to use it for a dedicated server for my favorite game counterstrike. I also want to use it as a file server for my lan, should i also make this server my internet gateway and dhcp server or should i just continue using my linksys router for those tasks? ... (5 Replies)
Discussion started by: stealthdestroyr
5 Replies
Login or Register to Ask a Question
libcurl(3)						      libcurl easy interface							libcurl(3)

NAME
libcurl-easy - easy interface overview DESCRIPTION
When using libcurl's "easy" interface you init your session and get a handle (often referred to as an "easy handle"), which you use as input to the easy interface functions you use. Use curl_easy_init(3) to get the handle. You continue by setting all the options you want in the upcoming transfer, the most important among them is the URL itself (you can't transfer anything without a specified URL as you may have figured out yourself). You might want to set some callbacks as well that will be called from the library when data is available etc. curl_easy_setopt(3) is used for all this. When all is setup, you tell libcurl to perform the transfer using curl_easy_perform(3). It will then do the entire operation and won't return until it is done (successfully or not). After the transfer has been made, you can set new options and make another transfer, or if you're done, cleanup the session by calling curl_easy_cleanup(3). If you want persistent connections, you don't cleanup immediately, but instead run ahead and perform other transfers using the same easy handle. libcurl 7.10.7 12 Aug 2003 libcurl(3)