Sponsored Content
Full Discussion: Unix OS Installer
Operating Systems Linux Gentoo Unix OS Installer Post 302102282 by DCrystal on Tuesday 9th of January 2007 11:57:07 AM
Old 01-09-2007
use gentoo =)
maybe it's not so friendlist, but if you really want to know linux, try it Smilie
as for Mandriva, i think ubuntu/kubuntu is better. so, it's just my opinion
This User Gave Thanks to DCrystal For This Post:
 

8 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Create an installer

I have a software bundle for which I want to create an installer. One of the things I am also looking at, is to be able to install this straight from a CD or any external storage device. How do I go about creating one? This is for Linux. Any advice is welcome !! -- garric (3 Replies)
Discussion started by: garric
3 Replies

2. UNIX for Dummies Questions & Answers

UNIX installer??

hi i wanna ask that is there a software available for unix to install different files... e.g. when we install a file in windows the installation wizard runs and guides us through the process... if so plz tell... and guide thnx! (5 Replies)
Discussion started by: umarbangash
5 Replies

3. Fedora

wubi installer for windows

hello.i need a soft like (wubi support ubuntu) to boot fedora or centos or freebsd.any answer ? Thank You. (2 Replies)
Discussion started by: d4rkm4nx99
2 Replies

4. Solaris

solaris installer

what is the name of the solaris installer? (for both x86 and sparc architecture) In linux it is "anaconda". (7 Replies)
Discussion started by: kingston
7 Replies

5. Solaris

OpenSolaris Installer error

Hi, Whenever i try to install OpenSolaris, I am getting the error "There was an error launching the application. Detail: Failed to fork child process (Not enough space)" I am using the image 2009.06. I have 512 mb ram and 100 gb hard drive with Red Hat and Windows Xp installed. Please... (1 Reply)
Discussion started by: krabu
1 Replies

6. Shell Programming and Scripting

Xfce installer script

Xfce desktop installer script on Ubuntu for home, office or server computers. This script installs Xfce desktop and a set of programs according to user needs starting from an Ubuntu Server base system. It's valid for netbooks, notebooks, desktop computers and servers. For more information... (1 Reply)
Discussion started by: cesar-rgon
1 Replies

7. Shell Programming and Scripting

Yet another simple script installer

Heyas Just recently i tried to apply the GNU Autotools to my project, while it was possible, it took forever to know where to create which files and what to place in each of them. Dare you making a space rather than a tab! Inspired by GNU Autotools, and overhelmed by its functionality and... (0 Replies)
Discussion started by: sea
0 Replies

8. OS X (Apple)

Installer issue

Hi, I have a little problem with an Installer. In my script I have a section that place a keyboard shortcut: #!/usr/bin/perl ################################################################################ # # Create Desktop shortcut for Swedish Menu Commands Document #... (1 Reply)
Discussion started by: peli
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 05:05 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy