Linux application upgrade ways

 
Thread Tools Search this Thread
Special Forums UNIX and Linux Applications Linux application upgrade ways
# 1  
Old 12-14-2011
Linux application upgrade ways

Hello. I need upgrade memcached. This software is installed throuth yum. In official repositories isn`t newest version of memcached, but this one is vulnerable. So looks like I need built it from source, but I dont really want to install c libraries un compilers on system.

1.) So can I compile memcached on similar Linux Centos 5 system and copy over only libs? Which libs, what are the main directories where to copy and how that could be performed?

2.) How you guys actually doing application upgrades on linux systems?
With package managers - apt, yum thats not possible to keep applications updated.
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Programming

Application behaving in 3 different ways on 3 different machines

Hello. During the holidays I've been developing an application on my desktop computer at home. I setup a repository on github, so when I got back to work I cloned the repo to my laptop. It wouldn't work. The app is comprised of a client and a server, strangely enough the server would segfault... (10 Replies)
Discussion started by: erupter
10 Replies

2. UNIX for Dummies Questions & Answers

Typical steps to be followed while applying an application patch upgrade on linux

what are the typical steps used by system adminstrators while applying an application patch upgrade (1 Reply)
Discussion started by: ramky79
1 Replies

3. UNIX for Dummies Questions & Answers

What are the two ways the hardware clock can be configured under Linux?

What are the two ways the hardware clock can be configured under Linux? Thanks (3 Replies)
Discussion started by: lemon_06
3 Replies

4. Red Hat

Linux - update/upgrade

Hi, I'm interesting do you have a some solution/good practice how upgrade/update OS with possibility to back previously release (something like Live upgrade in Solaris) ? thanks. (2 Replies)
Discussion started by: deivo
2 Replies

5. Linux

Slight Linux Upgrade

Hello Ya'all: I hope Zaxxon is still around. I read a posting about compiling/updating the kernel from source. I'm doing a very specific upgrade, and am wondering if there is anything different or if there's an easy way to do this: I am using kernel version 2.6.18-92, and have done some... (1 Reply)
Discussion started by: Statue
1 Replies

6. Shell Programming and Scripting

How to Upgrade Jdk After install in linux

hii... i want to upgrade my java version 1.4.2 to 1.6 in linux plateform after installing JDK. so what are the steps & commands in linux to upgrade it . Please Help me ... (1 Reply)
Discussion started by: rinkugarg
1 Replies

7. Red Hat

util-linux upgrade with interruption?

Hi All, I have util-linux upgrade that I need to do on redhat 4 ent. Does this going to interruption with the operation of the OS or application? Or this will be straight forward upgrade that will not make a harm or downtime of the OS. Thank you for any comments you may add. (3 Replies)
Discussion started by: itik
3 Replies

8. UNIX for Dummies Questions & Answers

Linux Kernel upgrade

Hi everyone, I am trying to have a second kernel in my Red hat 2.4.18. I downloaded the 2.4.9 version and did all the extract and stuff. when I run the command make bzImage I get the following error: devlist.h:6931: __devices_b1b3 causes a section type conflict > devlist.h:6934:... (1 Reply)
Discussion started by: bashirpopal
1 Replies
Login or Register to Ask a Question
MEMCACHED_LIB_VERSION(3)					   libmemcached 					  MEMCACHED_LIB_VERSION(3)

NAME
memcached_lib_version - libmemcached Documentation SYNOPSIS
#include <libmemcached/memcached.h> const char * memcached_lib_version(void) memcached_return_t memcached_version(memcached_st *ptr) Compile and link with -lmemcached DESCRIPTION
memcached_lib_version() is used to return a simple version string representing the libmemcached version (client library version, not server version) memcached_version() is used to set the major, minor, and micro versions of each memcached server being used by the memcached_st connection structure. It returns the memcached server return code. RETURN
memcached_lib_version() returns a string with the version of the libmemcached driver. A value of memcached_return_t is returned from :c:func:'memcached_version' On success that value will be MEMCACHED_SUCCESS. If called with the MEMCACHED_BEHAVIOR_USE_UDP() behavior set, the value MEMCACHED_NOT_SUPPORTED will be returned. Use memcached_strerror() to translate this value to a printable string. HOME
To find out more information please check: http://libmemcached.org/ SEE ALSO
memcached(1) libmemcached(3) memcached_strerror(3) AUTHOR
Brian Aker COPYRIGHT
2011, Brian Aker DataDifferential, http://datadifferential.com/ 1.0.8 May 22, 2012 MEMCACHED_LIB_VERSION(3)