Sponsored Content
Operating Systems Linux Ubuntu Ubuntu software package compatibility Post 302967269 by hiten.r.chauhan on Monday 22nd of February 2016 05:03:27 AM
Old 02-22-2016
Ubuntu software package compatibility

I don't have internet connection in my Ubuntu server, so package download directly from internet is not possible.

So if I download package from Index of /ubuntu
How do I find which version of package is compatible with my Release of Ubuntu server ( 15.10 )

Code:
user01@ubuntu01:~$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 15.10
Release:        15.10
Codename:       wily

 

9 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

looking for SSL software package (AIX 5.1)

When i install SSH on AIX 5.1 I get the following message { A prerequisite package has not been installed. Open SSH requires Open SSL (Secure Sockets Layer). Please install Open SSL from the AIX Toolbox for Linux CD or Toolbox website: } I cannot find the AIX toolbox for linux CD, also on... (1 Reply)
Discussion started by: janr
1 Replies

2. Solaris

Solaris 10 Software Package Manager

Hi there, maybe one of you knows the software package tool during the installation of solaris 10. You are able to choose an installtion and customize it with pressing F4 .... a very nice list occurs where you can select packages like apache, ssh and so on ... Is it possible to start this... (0 Replies)
Discussion started by: drexler76
0 Replies

3. HP-UX

license of software package

Hi when i do a swlist on my HP-UX machine it displays the software packages ..How do i know whether those packages are licensed or freeware can any 1 help me best Regards vasanth (0 Replies)
Discussion started by: vasanthan
0 Replies

4. UNIX and Linux Applications

Mail Collaboration software compatibility questions

Hi, this is my first post :) I've actually gained alot of help from this forum without even needing to sign up so that's pretty cool :cool: Ok I have a complete dilema and no idea even where this post belongs but I'm guessing this is the right place! I am currently switching my user machines... (0 Replies)
Discussion started by: Johnny SSH
0 Replies

5. 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

6. UNIX for Dummies Questions & Answers

ubuntu 10.10 quilt package

Hello, i try to install quilt package on ubuntu 10.10 : apt-get install quilt but i have this error: Reading package lists... Done Building dependency tree Reading state information... Done Package quilt is not available, but is referred to by another package. This may mean... (1 Reply)
Discussion started by: chercheur857
1 Replies

7. Solaris

Liveupgrade. Exclude software package

Hello. Im about to upgrade 6 solaris 10u7 x86 servers with live upgrade. I have done this before succesfully, but this time i would prefer to keep the current java versions from the u7 release. Is there any way to block luupgrde from installing newer packages of java? I looked at the -P... (0 Replies)
Discussion started by: vettec3
0 Replies

8. Red Hat

How to Customize/install software package after?

Hi Team While installation of RHEL, By mistake I have selected "Customize Later". RHEL has installed with basic software. NOw I need to install the other package which is available in DVD, How Can I get the same package selection window to install the software ? (0 Replies)
Discussion started by: atul9806
0 Replies

9. Ubuntu

Upgrade a package on Ubuntu

Hi, I want to upgrade a package to a specified version on Ubuntu, can you please shed some light? I know we can do it with but jere i want to upgrade the package to a specified version. Can someone please assist? Thanks (1 Reply)
Discussion started by: prash358
1 Replies
GERMINATE-UPDATE-METAPACKAGE(1) 			  Ubuntu General Commands Manual			   GERMINATE-UPDATE-METAPACKAGE(1)

NAME
germinate-update-metapackage -- update a set of metapackages generated from seeds SYNOPSIS
germinate-update-metapackage [--bzr] [--output-directory dir] [dist] DESCRIPTION
germinate-update-metapackage assists with the construction and update of ``metapackages'' (packages consisting solely of a list of dependen- cies) from a list of seed packages. It updates binary package stanzas in debian/control to reflect the current contents of the seeds, and updates debian/changelog with a description of the changes it made. germinate-update-metapackage requires a configuration file, called update.cfg, in the current directory. The format is described below. If a non-option argument is given, it specifies the distribution for which metapackages should be generated (e.g. ``unstable''). OPTIONS
--nodch Don't modify debian/changelog. --bzr Check out seeds from the bzr branch defined in the configuration file rather than fetching them directly from the URL defined there. Requires bzr to be installed. -o, --output-directory dir Output the package lists in the specified directory. CONFIGURATION FILE
update.cfg uses Python's ConfigParser configuration file syntax, supporting interpolation as defined by SafeConfigParser. It should have a DEFAULT section with a dist key indicating the default distribution, and a dist section (corresponding to that distribution). It may also have a dist/bzr section which can override the seed_base and seed_dist values from the dist section if the --bzr option is given. The fol- lowing keys are recognised in distribution sections: seeds (mandatory) Pass these seeds to the germinator for processing. output_seeds (optional, deprecated) Generate metapackages for these seeds. If not specified, the value of seeds is used. This option is usually no longer necessary now that the value of seeds is automatically expanded for seed inheritance. architectures (mandatory) Generate metapackages for these architectures. archive_base/default (optional) Use this URL as the default base for fetching package indices from the archive; for examples of valid URLs, see deb lines in /etc/apt/sources.list, or the MIRROR argument to debootstrap(8). archive_base/arch (optional) Use this URL as the base for fetching package indices from the archive for the specified architecture. For each architecture being processed, at least one of archive_base/default and archive_base/arch must be present. To try multiple URLs, separate them with commas or spaces; the newest version of each package across all archives will win. Note that debootstrap(8) will only use the first archive. seed_base (mandatory) The base URL for fetching seeds. To try multiple URLs (for example if a seed branch includes another branch stored at a different location), separate them with commas or spaces. seed_dist (optional) The tail of the URL for fetching seeds. This will be appended to seed_base. You will often want to interpolate the value of dist into this value using ConfigParser's %(dist)s syntax. If not specified, the value of dist is used. components (mandatory) The archive components from which to fetch package indices. seed_map/seed (optional, deprecated) The seeds to be used as input for the metapackage corresponding to seed. If specified, this will typically be the list of seeds from which seed inherits, plus seed itself. This option is usually no longer necessary; use a Task-Seeds header in the seed file instead. metapackage_map/seed (optional, deprecated) The metapackage name to output for seed. If not specified, germinate-update-metapackage will look for the name of the source package in which it is being run, remove "meta" from the end, and append the seed name. This option is usually no longer necessary; use a Task-Metapackage header in the seed file instead. EXAMPLE
At the time of writing, the following configuration file is used to generate the kubuntu-meta source package in the Ubuntu archive: [DEFAULT] dist: precise [precise] seeds: desktop full architectures: i386 amd64 powerpc armel seed_base: http://people.canonical.com/~ubuntu-archive/seeds/ seed_dist: kubuntu.%(dist)s archive_base/default: http://archive.ubuntu.com/ubuntu/ archive_base/ports: http://ports.ubuntu.com/ubuntu-ports/ archive_base/powerpc: %(archive_base/ports)s archive_base/armel: %(archive_base/ports)s components: main restricted [precise/bzr] seed_base: bzr+ssh://bazaar.launchpad.net/~kubuntu-dev/ubuntu-seeds/ bzr+ssh://bazaar.launchpad.net/~ubuntu-core-dev/ubuntu-seeds/ seed_dist: kubuntu.%(dist)s AUTHORS
Gustavo Franco <stratus@debian.org> Colin Watson <cjwatson@canonical.com> germinate-update-metapackage is copyright (C) 2004, 2005, 2006, 2007, 2008 Canonical Ltd. and copyright (C) 2006 Gustavo Franco. See the GNU General Public License version 2 or later for copying conditions. A copy of the GNU General Public License is available in /usr/share/common-licenses/GPL. Ubuntu Jul 18, 2007 Ubuntu
All times are GMT -4. The time now is 07:27 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy