Sponsored Content
Full Discussion: Uninstalling Vendor Software
Operating Systems Solaris Uninstalling Vendor Software Post 302142278 by joerg on Thursday 25th of October 2007 07:33:47 AM
Old 10-25-2007
Is there a make file ?
If yes send the content.
Best regards jerog
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Help Uninstalling Linux!

Hello, I have a laptop running Fedora Core 2, and I am trying to wipe it to put on Windows. Even though the CD is listed first in the boot order, it will not boot to the Solaris system disk. How else could I format this laptop? -skeet (4 Replies)
Discussion started by: skeet23
4 Replies

2. UNIX for Dummies Questions & Answers

Uninstalling packages (.tar.gz)

Hi, I still don't know if there's a standard way to do this. I'm hoping there's a *more or less* standard way to do this across linux platforms but the platform in question is Gentoo. Let's say I download a source tarball as tar.gz and I do the typical gunzip app_to_install.tar.gz tar xvf... (2 Replies)
Discussion started by: d11wtq
2 Replies

3. UNIX for Advanced & Expert Users

Perl Installing, Uninstalling

I have some problems with mysql, and maybe perl installation faults. I have installed perl by source. I followed default configuration (e.g. ./configure, make, make install). I have installed perl just because it was required for mysql's installation. But now I have some problems. If I will... (8 Replies)
Discussion started by: kisoun
8 Replies

4. Debian

Uninstalling programs?

How can I uninstall a program the most efficient way? So that I get rid of all the man pages etc. too? I'm running debian. /Richard (1 Reply)
Discussion started by: riwa
1 Replies

5. UNIX for Dummies Questions & Answers

Uninstalling Mysql 5.0.15 tar file

Hi Everyone, I want to uninstall mysql-standard-5.0.15-linux-i686.tar. The problem is i don't no how to uninstall tar file. I know how to uninstall it through rpm but we have a binary file. can we use make uninstall or remove comand to do so? Or there is some other way of unistalling tar files.... (1 Reply)
Discussion started by: atul.saxena
1 Replies

6. Shell Programming and Scripting

more intelligent way of uninstalling a RPM

Hi all, I'm writing an uninstaller for a bespoke piece of software that we deploy to our Linux terminals. One of the packages we install is the JDK (Java Development Kit). Now over the years we have quite a number of different versions installed with different package names. In my uninstaller... (0 Replies)
Discussion started by: _Spare_Ribs_
0 Replies

7. Cybersecurity

Uninstalling OpenSSH on Tru64

Hi Can anyone point me to any documentation or can provide instructions on uninstalling OpenSSH (4.7p1) on Tru64 UNIX 5.1a? Thanks (0 Replies)
Discussion started by: sgajraj
0 Replies

8. Linux

Uninstalling a broken software rpm in Linux

Hi, I have a installed a package(some X) on my linux machine. But now I want to unistall it but some of the file required for unistalltion are missing. Can someone tell me how to remove that rpm (package) from my machine. I am trying Install it again. But for it, i need to uninstall it... (1 Reply)
Discussion started by: eamani_sun
1 Replies

9. UNIX for Dummies Questions & Answers

Recompiling and uninstalling existing applications

Hi everyone, I'm new-ish to Unix outside of being a basic user in the past. So some background on my experience level when asking this question. My current laptop, running OS X 10.5, had Apache and PHP installed when I bought it. However I need to recompile these now to add features which... (0 Replies)
Discussion started by: werdenaz
0 Replies
Ns_ConnReturnOpen(3aolserver)				   AOLserver Library Procedures 			     Ns_ConnReturnOpen(3aolserver)

__________________________________________________________________________________________________________________________________________________

NAME
Ns_ConnReturnOpenChannel, Ns_ConnReturnOpenFd, Ns_ConnReturnFdEx, Ns_ConnReturnOpenFile - Routines to send open file content SYNOPSIS
#include "ns.h" int int Ns_ConnReturnOpenChannel(conn, status, type, chan, len) int Ns_ConnReturnOpenFd(conn, status, type, fd, len) int Ns_ConnReturnOpenFdex(conn, status, type, fd, off, len) int Ns_ConnReturnOpenFile(conn, status, type, fp, len) ARGUMENTS
Tcl_Channel chan (in) Pointer to Tcl_Channel open for read. Ns_Conn conn (in) Pointer to open connection. FILE *fp (in) Pointer to stdio FILE open for read. off_t off (in) Seek offset. int fd (int) File descriptor open for read. int status (in) HTTP status code. char *type (in) Pointer to mimetype string. _________________________________________________________________ DESCRIPTION
These routines are used to generate complete responses, including headers, status codes, content types, and the content copied from the given open file. They all return a status code which is NS_OK if the response was sent or NS_ERROR if an underlying call to sent the con- tent failed. The response will include the given HTTP status code, a content-type header with the given type, and a content-length header with the length specified by len. No character output encoding or gzip compression is performed on the content. For Ns_ConnReturnOpenFdEx, copying begins at the offset specified by the off argument Otherwise, these routines copy from the current read offset in the underlying open file. No attempt is made to serialize access to the underlying object so independent open file objects and/or mutex locking is necessary if the same file is being sent simultaneously to multiple clients. NOTES
Windows Support The Ns_ConnReturnOpenFdEx routine is not currently supported on Windows. When called on Windows, it will always return NS_ERROR. Truncated Result The server will construct a content-length header based on the given len argument. However, the server will send the content with an underlying call to a cooresponding Ns_ConnSend function, e.g., Ns_ConnSendFd for Ns_ConnReturnOpenFd. These functions will send the requested content or all remaining content in the open file if less bytes are avilable without reporting an error due to the trun- cated response. As the headers will have already been flushed before sending the content in this case, the content-length header will not be consistent with the actual bytes sent. If it is not possible to ensure the remaining bytes will be equal or greater to the requested bytes to send, it is possible to specify -1 for len to supress the content-length header entirely. Most browsers will accept this resonse and simply calculate the length from the bytes receieved up until the socket is closed. Performance Consideration As mentioned, these routines use underlying Ns_ConnSendFd style routines to copy and send the content from open files. This is not the approach used by the builtin file-serving code (aka the "fastpath"). The fastpath operates with filenames, not open file objects, and maintains a cached of pre-read or memory mapped regions to accelerate the common case of rapidly sending reasonably sized content to multiple, simultaneous clients. The Ns_ConnReturnFile routine utilizes the underlying fastpath and thus could be a faster means to send static files than directly opening files and calling these API's. SEE ALSO
Ns_ConnReturnFile(3), Ns_ConnFlush(3), Ns_ConnSendFd(3), Ns_ConnReturnData(3) KEYWORDS
connnection, response, file AOLserver 4.0 Ns_ConnReturnOpen(3aolserver)
All times are GMT -4. The time now is 04:19 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy