Sponsored Content
Full Discussion: after update package...
Operating Systems BSD after update package... Post 302326027 by adamkong on Wednesday 17th of June 2009 12:29:36 AM
Old 06-17-2009
after update package...

Hi all^^
after upgrade joomla (1.5.7-1.5.11) this package , and then
portaudit -Fda
fetch: http://www.FreeBsd.org/ports/auditfile.tbz: No address record
Couldn't fetch database.
Old database restored.
portaudit: Download failed
what wrong???
 

9 More Discussions You Might Find Interesting

1. Ubuntu

Can't update or use package manager -- gpg error

W: GPG error: http://archive.canonical.com karmic Release: Unknown error executing gpgv W: GPG error: http://us.archive.ubuntu.com karmic Release: Unknown error executing gpgv W: GPG error: http://us.archive.ubuntu.com karmic-updates Release: Unknown error executing gpgv W: GPG error:... (17 Replies)
Discussion started by: CRGreathouse
17 Replies

2. UNIX for Advanced & Expert Users

How to find dependancies of .dstream package (Solaris) & .rpm package( linux)

Friends, Please let meknow, How we can find the dependancies of .dstream package & .rpm package before installation ? For AIX, We can use the inutoc . command to create the .toc file for the bff package, What about Solaris & Linux ? (0 Replies)
Discussion started by: yb4779
0 Replies

3. SuSE

update package/software questions

Hi, In SUSE linux, it looks like that I can update the package using YAST or install the package from source. So, which way works better? Also, if i install the package of new version. Do i need to remove/delete the old version package, or I just need to change my environments and keep the old... (0 Replies)
Discussion started by: jianma
0 Replies

4. UNIX for Dummies Questions & Answers

Can't install rpm package with --prefix in new path.Error: package is not relocatable

Hello, i have downloaded an rpm package "hadoop-0.20.205.0-1.amd64.rpm" in /usr/local/ directory. I'm trying to install the rpm package in a new path/location (/usr/local/hadoop-0.20.205), but i can't. I did: 1st try: Didn't work sudo rpm -i --prefix=/usr/local/hadoop-0.20.205... (1 Reply)
Discussion started by: g_p
1 Replies

5. Emergency UNIX and Linux Support

Problem when trying to remove a package using rpm command - error: package is not installed

Hello, i have installed a package by using the command sudo rpm -i filepackage.rpm package filepackage is already installed when i try to remove it, i get an error saying "is not installed": sudo rpm -e filepackage.rpm error: package filepackage is not installed How can... (4 Replies)
Discussion started by: g_p
4 Replies

6. Red Hat

How to update rpm database regarding removed file of a package?

For Suppose, I have installed a package having files file1, file2 and file3. After installation, I removed the file "file3". But "rpm -qf file3" is giving the package name, even file3 was not there. And also "rpm -ql package" is also displaying all 3 files. How can i update rpm database about... (6 Replies)
Discussion started by: snreddy_gopu
6 Replies

7. UNIX for Advanced & Expert Users

Centos - prevent yum update from breaking package configurations

i recently run on a centos server and this replaced the current config files with a new one. this happened with but i think it can happen with other packages as well. please advise how such issues can be prevented from happening again. (4 Replies)
Discussion started by: coolatt
4 Replies

8. Solaris

Package update help

Hi, I have a sun solaris 10 server. I have been asked to see what is currently installed ldap package and check if we can update it or not. I have found the installed package but i am not sure how to look i can update it or not on current OS version thanks (1 Reply)
Discussion started by: aiqbal
1 Replies

9. Linux

Unable to update package.

I am trying to update an openssl package on my node. # yum update openssl-1.0.1e-60.el7.x86_64 Loaded plugins: product-id, rhnplugin, subscription-manager This system is receiving updates from RHN Classic or Red Hat Satellite. baseline_prd_channel ... (0 Replies)
Discussion started by: Junaid Subhani
0 Replies
ost::SharedFile(3)					     Library Functions Manual						ost::SharedFile(3)

NAME
ost::SharedFile - This class defines a database I/O file service that can be shared by multiple processes. SYNOPSIS
#include <file.h> Inherits ost::RandomFile. Public Member Functions SharedFile (const char *path) Open or create a new database file. SharedFile (const SharedFile &file) Create a shared file as a duplicate of an existing shared file. virtual ~SharedFile () Close and finish a database file. Error restart (void) Restart an existing database; close and re-open. Error fetch (caddr_t address=NULL, ccxx_size_t length=0, off_t position=-1) Lock and Fetch a portion of the file into physical memory. Error update (caddr_t address=NULL, ccxx_size_t length=0, off_t position=-1) Update a portion of a file from physical memory. Error clear (ccxx_size_t length=0, off_t pos=-1) Clear a lock held from a previous fetch operation without updating. Error append (caddr_t address=NULL, ccxx_size_t length=0) Add new data to the end of the file. off_t getPosition (void) Fetch the current file position marker for this thread. bool operator++ (void) bool operator-- (void) Additional Inherited Members Detailed Description This class defines a database I/O file service that can be shared by multiple processes. Each thread should access a dup of the database object, and mutex locks can be used to preserve transaction integrety if multiple threads are used. SharedFile is used when a database may be shared between multiple processes. SharedFile automatically applies low level byte-range 'file locks', and provides an interface to fetch and release byte-range locked portions of a file. Author: David Sugar dyfet@ostel.com This class defines a database I/O file service that can be shared by multiple processes. Constructor &; Destructor Documentation ost::SharedFile::SharedFile (const char *path) Open or create a new database file. You should also use Initial. Parameters: path pathname of database to open. ost::SharedFile::SharedFile (const SharedFile &file) Create a shared file as a duplicate of an existing shared file. Parameters: file original file. virtual ost::SharedFile::~SharedFile () [virtual] Close and finish a database file. Member Function Documentation Error ost::SharedFile::append (caddr_taddress = NULL, ccxx_size_tlength = 0) Add new data to the end of the file. Locks file during append. @param address address to use, or NULL if same as last I/O. @param length length to use, or 0 if same as last I/O. Error ost::SharedFile::clear (ccxx_size_tlength = 0, off_tpos = -1) Clear a lock held from a previous fetch operation without updating. Returns: errSuccess on success. Parameters: length length to use, or 0 if same as last I/O. pos file position to use or -1 if same as last I/O. Error ost::SharedFile::fetch (caddr_taddress = NULL, ccxx_size_tlength = 0, off_tposition = -1) Lock and Fetch a portion of the file into physical memory. This can use state information to fetch the current record multiple times. Returns: errSuccess on success. Parameters: address address to use, or NULL if same as last I/O. length length to use, or 0 if same as last I/O. position file position to use -1 if same as last I/O. off_t ost::SharedFile::getPosition (void) Fetch the current file position marker for this thread. Returns: file position offset. bool ost::SharedFile::operator++ (void) bool ost::SharedFile::operator-- (void) Error ost::SharedFile::restart (void) [inline], [virtual] Restart an existing database; close and re-open. Returns: errSuccess if successful. Reimplemented from ost::RandomFile. Error ost::SharedFile::update (caddr_taddress = NULL, ccxx_size_tlength = 0, off_tposition = -1) Update a portion of a file from physical memory. This can use state information to commit the last read record. The current lock is also cleared. Returns: errSuccess on success. Parameters: address address to use, or NULL if same as last I/O. length length to use, or 0 if same as last I/O. position file position to use or -1 if same as last I/O. Author Generated automatically by Doxygen for GNU CommonC++ from the source code. GNU CommonC++ Sat Jun 23 2012 ost::SharedFile(3)
All times are GMT -4. The time now is 03:08 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy