Sponsored Content
Operating Systems SCO How install curl in openserver 5.0.7? Post 302942372 by jgt on Tuesday 28th of April 2015 09:40:54 AM
Old 04-28-2015
Install Maintenance Pack 1. Better yet install Maintenance Pack 5.
Where can I obtain cURL for OpenServer 5.0.7?
This User Gave Thanks to jgt For This Post:
 

10 More Discussions You Might Find Interesting

1. Filesystems, Disks and Memory

SCO openserver 5 install problem

Hello all, I'm trying to install SCO openserver 5 on a 2.5 Gig hard drive, and I tried fdisk and a low-level format of the drive. When I insert the boot diskette all seems fine, and it asks me to set the cd-rom and it sees it and reads from it. Well, I'm thinking all is well until right after I... (1 Reply)
Discussion started by: immulett
1 Replies

2. UNIX for Dummies Questions & Answers

How to install and configure Apache on SCO openserver 5

I have just been made responsible for setting up Apache on our office SCO box. I have searched the internet, but haven't found any details that I can make sense of. I'm unfamiliar with Unix and would appreciate any help members of the forum have to offer. (1 Reply)
Discussion started by: cstovall
1 Replies

3. SCO

How to install openserver 6 on X3650

hardware:IBM X3650 7979-I01 This machine has no floppy disk. How to load the HBA driver when install openserver 6? (5 Replies)
Discussion started by: sdccf
5 Replies

4. SCO

Openserver 6.0 Install Issue

I am having issues with installing Openserver 6.0 on newer servers, such as most of the newer Dell Poweredge servers (ie R210, T310, etc..), where the USB keyboard will not function through the install process. I can put an already-installed drive in the system from a compatible system, and the... (2 Replies)
Discussion started by: MrN2itiv
2 Replies

5. SCO

Install SCO Openserver 5.0.7 as a trial

hi Howto install SCO Openserver 5.0.7 as a trial or howto get a trial license number? (0 Replies)
Discussion started by: ccc
0 Replies

6. SCO

Install NIC on SCO openserver 5.0.2

Hi I am trying to install NIC FastNic 10/100 PCI Ethernet driver into PCI# 3 of the GA-SIML Rev 1.0 Motherboard on 1GB Hard-disk driveI have following the instruction on the CD-Disk and when I added NIC by netconfig and I do not know what is the following question: PCI BUS# DEVICE#... (3 Replies)
Discussion started by: TinhNhi
3 Replies

7. SCO

Help to install foxpro 2.5 on openserver 6.0.0.

Can anyone help me to install foxpro 2.5 for unix openserver 6.0.0. I recently updtae my server from 5.0.7 to 6.0.0. to get an usb tape working, but can't install or run foxpro 2.5, all the programs run on it, need help. thanks or if anyone had a version tested of foxpro on openserver 6.0.0.... (3 Replies)
Discussion started by: jactroo
3 Replies

8. SCO

Need help to install sco openserver 5

Hi, Im installing sco openserver 5 (OpenServer-5.0.7Hw-10Jun05_1800.iso) on a vmware server 1.0.4. Installation is ok but on when x server is loading i just can login, mouse does not move and most of keyboard cases do not respond. I choose usb mouse + french keyboard while installating, should i... (1 Reply)
Discussion started by: sup69
1 Replies

9. SCO

install iperf on SCO OpenServer 5.0.7

hi Howto install iperf on SCO OpenServer 5.0.7? (0 Replies)
Discussion started by: ccc
0 Replies

10. SCO

Install Hang OpenServer 6 - SATA CDROM

Hi all Can anybody offer any help with installing Openserver 6 on a Supermicro server? I am familiar with installing OS5, but this is my first time with v6. The PC is fitted with Supermicro X8DTL-I Dual Xeon motherboard and 2 Xeon E5620 processors, and 16Gb Ram, LSI MegaRaid SAS8708 8 port... (11 Replies)
Discussion started by: millosman
11 Replies
CURLOPT_NOPROGRESS(3)					     curl_easy_setopt options					     CURLOPT_NOPROGRESS(3)

NAME
CURLOPT_NOPROGRESS - switch off the progress meter SYNOPSIS
#include <curl/curl.h> CURLcode curl_easy_setopt(CURL *handle, CURLOPT_NOPROGRESS, long onoff); DESCRIPTION
If onoff is to 1, it tells the library to shut off the progress meter completely for requests done with this handle. It will also prevent the CURLOPT_PROGRESSFUNCTION(3) from getting called. Future versions of libcurl are likely to not have any built-in progress meter at all. DEFAULT
1, meaning it normally runs without a progress meter. PROTOCOLS
All EXAMPLE
CURL *curl = curl_easy_init(); if(curl) { curl_easy_setopt(curl, CURLOPT_URL, "http://example.com"); /* enable progress meter */ curl_easy_setopt(curl, CURLOPT_NOPROGRESS, 0L); /* Perform the request */ curl_easy_perform(curl); } AVAILABILITY
Always RETURN VALUE
Returns CURLE_OK. SEE ALSO
CURLOPT_PROGRESSFUNCTION(3), libcurl 7.54.0 March 06, 2016 CURLOPT_NOPROGRESS(3)
All times are GMT -4. The time now is 03:04 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy