Main > Free Download Search >

Free blueberry yum yum software for linux

blueberry yum yum

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 33
GNOME Interface for YUM 0.1.5

GNOME Interface for YUM 0.1.5


GNOME Interface for YUM is a graphical frame-program for easier use and setup the YUM install program. more>>
GNOME Interface for YUM is a graphical frame-program for easier use and setup the YUM install program.

Displays the accessible packages on the package service sites with filter. Manage the settings of package services.

Manage the cache used by YUM: free up disk space, manual install and transfer of downloaded packages. Displays detailed package information about the installed packages or package files. Displays the files in the packages with a program chosen by user.

<<less
Download (0.57MB)
Added: 2006-11-17 License: GPL (GNU General Public License) Price:
1076 downloads
GuYum 0.4.0

GuYum 0.4.0


Guyum is a simple search-and-install GUI for Yum, based on GTK+ and Glade. more>>
Guyum is a simple "search-and-install" GUI for Yum, based on GTK+ and Glade. Guyum is released under GPL.
Main features:
- multi-tabbed search
- selectable searching fields
- repositories can be disabled/enabled per search request
Guyum was tested with any available version of Yum under Fedora Core 4.
<<less
Download (0.10MB)
Added: 2007-08-22 License: GPL (GNU General Public License) Price:
796 downloads
Luke Macken Security LiveCD

Luke Macken Security LiveCD


Luke Macken Security LiveCD provides a fully functional livecd based on Fedora for use in security auditing, forensics research. more>>
Luke Macken Security LiveCD provides a fully functional livecd based on Fedora for use in security auditing, forensics research, and penetration testing.
Main features:
- All of the security features and tools Fedora has to offer
- Features from the FedoraLiveCD
- Ability to install directly to hard drive
Spinning your own
# yum install mercurial livecd-tools
$ hg clone http://hg.lewk.org/security-livecd
# livecd-creator --config security-livecd/fedora-security-livecd.ks --fslabel=Fedora-7-Security-LiveCD
Making changes to the LiveCD is as simple as modifying the fedora-security-livecd.ks configuration file.
<<less
Download (MB)
Added: 2007-08-09 License: GPL (GNU General Public License) Price:
813 downloads
YumKup 0.1

YumKup 0.1


Yum Update Notifier for KDE. more>>
Yum Update Notifier for KDE. YumKup calls in user configurable intervals "yum check-update" and signals with different icons whether new updates are available.

If updates are available it can show you the list of possible updates and can initiate a yum update.

To configure the interval (in minutes) simply edit the file and change the CHECK_INTERVAL value.

<<less
Download (0.002MB)
Added: 2006-04-28 License: GPL (GNU General Public License) Price:
1274 downloads
easyRPM 0.3

easyRPM 0.3


easyRPM is a package management tool for RPM-based linux distributions. more>>
easyRPM is a package management tool for RPM-based linux distributions. easyRPM helps you to explore packages that are installed on your computer, located on your hard disk, CD or in the web.

You can easily find packages by any criteria (name, size, feature, file, word in description). xml-based query language is supported. You may choose packages to install/remove and easyRPM will try to resolve all dependencies.

It will download required packages from the net. easyRPM can read header information from rpm files themselfs, yum xmls and hdlist files.

This tool is not yet full-featured, but already could be useful. If not, then give it a chance later.

<<less
Download (1.1MB)
Added: 2006-11-09 License: GPL (GNU General Public License) Price:
1082 downloads
URL::Grab 1.2

URL::Grab 1.2


URL::Grab is a Perl module that drastically simplifies the fetching of files. more>>
URL::Grab is a Perl module that drastically simplifies the fetching of files.

URL::Grab project is designed to be used in programs that need common (but not necessarily simple) URL fetching features.

It is extremely simple to drop into an existing program, and provides a clean interface to protocol-independent file access.

URL::Grab came into existence as the part of Config::YUM that downloads remote
yum-configs and header files, but it quickly became clear that this is a
general problem that many applications must deal with.

Yes, URL::Grab has been heavily inspired by the famous Python urlgrabber.

Installation:

To install this module type the following:

perl Makefile.PL
make
make test
make install

<<less
Download (0.003MB)
Added: 2006-01-31 License: Perl Artistic License Price:
1362 downloads
Config::YUM 1.8

Config::YUM 1.8


Config::YUM is a Perl extension for parsing yum.conf. more>>
Config::YUM is a Perl extension for parsing yum.conf.

SYNOPSIS

use Config::YUM;

my $yp = new Config::YUM;
my $yum_conf = $yp->parse();

foreach(keys %{$yum_conf}) {
print "Section: $_ is called " . $yum_conf->{$_}->{name} . "n";
}

$yum_conf will be a a hash, all INI sections are the primary hash keys.
include= will be automatically downloaded merged with the local yum.conf
mirrorlists will also be downloaded and saved as an array in $yum_conf->{somerepo}->{baseurls}
the first url in mirrorlists will be safed as $yum_conf->{somerepo}->{baseurl}.
exclude statements will be splited and safed to $yum_conf->{somerepo}->{exclude_hash}. Note that we
safe a perl regex string as keys here.

To say it with one sentence. Config::YUM automatically parses a yum.conf does the downloading and provides you
with a ready to use perl hash. :-)

You can define a few things @ new:

- use_cache: 0/1 (1 will enable, default: 0; Uses Cache::File)

- yum_conf: path to your yum.conf (default: /etc/yum.conf)

- yum_repos_d: path to your yum.repos.d (default: /etc/yum.repos.d)

- agent: You LWP::UserAgent agent string (default: Config::YUM/$VERSION)

- releasever: Define your RH/FC release version (rpm -qf --queryformat %{VERSION} /etc/redhat-release; Default: automatically queried)

- basearch: Define your basearch (uname -i; Default: automatically discovered)

- download_primary: Define if we should download/parse the primary.xml.gz

These arguments can be specified this way (dont forget the {!)
my $yp = new Config::YUM({
use_cache => 1,
yum_conf => /etc/yum.conf,
yum_repos_d => /etc/yum.repos.d,
agent => MyProgram/$VERSION,
relasever => 4,
basearch => i386,
download_primary => 1
});

This module provides you with a few functions,
parse() will return a hash containing the allready parsed local/remote yum.conf.

yumconf_local() will return a hash containing the allready parsed local yum.conf (Will run parse(), if you didnt yet)
yumconf_remote() will return a hash containing the allready parsed remote yum.conf (Will run parse(), if you didnt yet)

<<less
Download (0.007MB)
Added: 2007-04-12 License: Perl Artistic License Price:
926 downloads
Yum Extender 1.9.6

Yum Extender 1.9.6


Yum Extender (yumex) is a GUI for yum to the Fedora Core 4 Linux distribution. more>>
Yum Extender in short known as yumex is a GUI for yum to the Fedora Core 4 Linux distribution.
Main features:
- Select active repositories from GUI.
- Install, update and remove packages from GUI.
- Use Filters on packages view.
- Repository Editor.
- Repository Installer.
Enhancements:
- Added new about Dialog. (Help -> About)
- Fixed Excludes
- Make yumex work with the rhnplugin in RHEL5.
- Added Chinese(Simplified) Translation by Hao Song.
- minor fixes.
<<less
Download (0.68MB)
Added: 2007-04-26 License: GPL (GNU General Public License) Price:
933 downloads
YOURI 0.9

YOURI 0.9


YOURI stands for Youri Offers an Upload & Repository Infrastucture. more>>
YOURI stands for "Youri Offers an Upload & Repository Infrastucture". YOURI project aims to build tools making management of a coherent set of packages easier.
Running a package distribution project involves a lot of tasks:
- allow individual maintainers to upload packages in a central repository
- create packages index for packages managers such as urpmi or yum
- synchronise developement resources such as CVS or bugzilla
- advertise new packages
- sign packages numerically
- check individual packages consistency
- check global repository consistency
- etc...
The quickndirty approach of using a pile of dedicated shell scripts, with hardcoded distributer-specific policies, generally results quickly in a maintainance nightmare for admins and a discrepancy nightmare for users. YOURI aims to leverage those issues by providing a generic package management framework, focused on code reusability and modularity.
<<less
Download (0.046MB)
Added: 2006-05-05 License: Perl Artistic License Price:
1267 downloads
Yam 0.8.3

Yam 0.8.3


Yam is a tool that builds a local RPM repository from ISO files and RPM packages. more>>
Yam builds a local APT/Yum RPM repository from local ISO files, downloaded updates, and extra packages from 3rd party repositories. Yam project takes care of setting up the ISO files, downloading the RPMs, configuring HTTP access and providing PXE/TFTP resources for remote network installations.
Main features:
- Easy Yum-alike configuration
- Supports mirroring using FISH, FTP, HTTP, RSYNC and SFTP
- Supports Apt, Yum and up2date (as well as synaptic, yumgui and other derivatives)
- Can work directly from ISO images (so you dont need extra diskspace to store ISOs or copy RPMs)
- Supports Red Hat, Fedora Core, Red Hat Enterprise (TaoLinux, CentOS) and Yellow Dog Linux out of the box
- Will probably work with other RPM based distributions (feedback needed, please mail me)
- Allows for remote network installation (using a PXE-enabled NIC on target systems)
- Support for 3rd party repositories and vendor packages
- Allows to maintain your own customized (corporate) repository
- Allow for chaining Yam servers in large organisations with remote sites
- Can hardlink duplicate packages (to save precious diskspace)
Enhancements:
- This release reports changes to repositories (logging to yam.log, reporting on screen, mailing out).
- The RHN code has been mvoed to a separate rhnget tool.
- An alpha architecture has been added.
- There are fixes to make Yam classes reusable.
- disabled-directive has been added.
- There are several fixes.
<<less
Download (0.028MB)
Added: 2006-10-16 License: GPL (GNU General Public License) Price:
1108 downloads
nuu 1.4.2

nuu 1.4.2


NUU is a graphical user interface which allows a user to make modifications to the installed rpm packages on a system. more>>
NUU comes from Network Update Utility and is a graphical user interface which allows a user to make modifications to the installed rpm packages on a system.
Main features:
- Install new packages or update existing packages by downloading them from a yum repository
- Remove existing packages.
- Configure set of repositories from which to obtain new and updated packages.
- Examine installed packages or packages available for installation or update
- Install, update, or remove groups of packages
- Install or update suites of packages
<<less
Download (0.12MB)
Added: 2006-11-17 License: GPL (GNU General Public License) Price:
1071 downloads
PyRPM 0.69

PyRPM 0.69


PyRPM is an experimental project to look at rpm package management. more>>
PyRPM is an experimental project to look at rpm package management. It is a python module and a collection of scripts that provide similar functionality as rpm, yum and co. It is written from ground up and is implemented only in python. PyRPM project mainly deals with rpm packages, the rpm database rpmdb in /var/lib/rpm, comps.xml files and yum repositories (called repo data).
The reason for this project was to have a codebase with which we can test and verify rpm, rpmdb and yum itself and experiment with new features and implementations very quickly. Python is Red Hats in-house defacto standard, so using python to do rapid prototyping was only logical.
The code itself is still very small and modular. Were constantly looking to improve the code, make it more production ready and remove duplicate functionality. Results from this project back to rpm and co are very important for us to improve the current available Linux tools and not rush with only adding another project for this. Next to working on good algorithms and sane implementations, most code is backed up with verify and testing scripts.
Warning
The PyRPM project is by no means meant to be a full replacement of rpm or yum. In its current state we feel confident that in general it wont break anything, but the code isnt production quality yet.
The check scripts can be safely used as they wont modify anything on your system, so feel free to use them at your convenience.
We personally have been using the yum replacement very extensively and even used it to update our own systems, but thats not even remotely a guarantee that it will work on your machine. It has only been run by a few people until now.
Using it to set up buildroots on the other hand should be very safe as this all happens in a very contained environment (sandbox principle).
Please let us know of any problems you encounter, if possible with some reproducible test cases so we can figure out what might have happened.
Main features:
- Stable and reliable dependency resolver with efficient algorithms:
- Due to the easy nature of python being a rapid prototyping language and the modular design of pyrpm we were able to test and write several generations of dependency resolvers and over time optimize and improve the reliability of it to a point where we are very confident that the results are what a user would expect.
- Handling of multilib systems:
- This is connected to the previous feature. Multilib systems are generally a lot trickier to handle than single arch systems. The algorithms used in pyrpm try to make intelligent choices as to which packages should be installed resp. how packages should be updated.
- Ordering of all packages in a transaction:
- In order for a whole transaction to work reliable it is not enough to just order the installs and updates but also the erase operations properly. In pyrpm we are handling all operations and order them in a way that honors all requirements correctly, even for erases.
- Smart like package selection:
- In pyrpm we are able to make package selections similar to the SMART package manager by trying to downgrade packages or even remove them if dependencies cant be resolved at all. The semi automatic removal is of course optional and not enabled by default.
- Very easy to use scripts to setup changeroots:
- Using pyrpmkickstart you can easily use a typical anaconda kickstart file to do an automated install either on a disk, partition, diskimage or even simple changeroots.
<<less
Download (0.35MB)
Added: 2007-05-08 License: GPL (GNU General Public License) Price:
900 downloads
Tao Linux 4-update2

Tao Linux 4-update2


Tao Linux is one of several projects to build a free Linux distribution from the sources used in the Red Hat Enterprise. more>>
Tao Linux (pronounced dow Linux) is a project to build a free Linux distribution from the sources used in the Red Hat Enterprise Linux product line.
The target market is either experienced system administrators who would like freely available binaries of this code, or end users who are interested in experimenting with enterprise functionality.
Besides being mostly compatible with Red Hat Enterprise Linux 3, it also includes software packages such as Eclipse and clustering tools not found in the base RHEL products.
Main features:
- Includes gcj-compiled Eclipse IDE
- Includes clustering tools
- Yum with protectbase patch for safer use of 3rd-party repos
- Supports ACLs in ext3, nfs and Samba
- Many packages for Red Hat Enterprise Linux also run on Tao Linux
- Free as in speech and beer
- Security updates (in SRPM form, at least) available into 2008
<<less
Download (2033MB)
Added: 2005-10-27 License: GPL (GNU General Public License) Price:
1458 downloads
Fedora Frog 1.0-7.0.1

Fedora Frog 1.0-7.0.1


Fedora Frog application is GUI install script that jumps your Fedora Core 5 to life in no time... more>>
Fedora Frog application is a GUI install script that jumps your Fedora Core 5 to life in no time...
Main features:
- Install extra repositories [RPMForge]
- Note: Not all repositories are mutually compatible. See the Warning mixing repositories
- Install GUI frontend for yum [yumex]
- Install commonly needed multimedia codecs
- Install DVD playback capability
- Install Java JRE and its plugin for Firefox
- Note: You will have to accept Suns licence
- Install Macromedia Flash plugin for Firefox
- Note: You need to restart Firefox after installation
- Install extra fonts (including msttcorefonts)
- Install graphics drivers for nVidia and ATI cards
- Note: You should restart your computer after the installation
- Install Gnome Configuration Editor
- Install numlockx to turn on NumLock on startup
- Set up Gnome to open System Monitor every time you push Alt-Ctrl-Del
- Disable CD blocking in CD-ROM
- Set up Nautilus to open new folders in the same window
- Install rar archiver
- Install Adobe PDF reader
- Note: This is not necessery to read PDF documents, you can read them using Evince too.
- Install Gwenview and digiKam imageviewers
- Install XMMS (analog of Winamp)
- Install amaroK media player
- Install stream directory browser Streamtuner
- Install CD ripper Grip
- Install Xine, VLC, Mplayer multimedia players
- Install RealPlayer 10
- Install Skype
- Install Thunderbird e-mail client
- Install Liferea RSS reader
- Install Opera web browser
- Install CD/DVD burning utility K3b
- Install FTP utility gFTP
- Install File share utility DC++
- Install P2P BitTorrent client Azureus
- Install P2P eMule Client aMule
- Install P2P Gnutella Client LimeWire
- Install KDE Edutainment programms
- Install Photo-realistic nightsky renderer Stellarium
- Install Some additional games
- Install Alacarte Gnome menu editor
- Install Shortcut to browse files as root
- Install Some desktop backgrounds, icons, themes and screensavers
- Note: Try changing your desktop background and look in Theme Details of System -> Preferences -> Theme
- Install fortune and make Gnome Fish-applet to use it
Note: It is recomended to run update before you run Fedora Frog
Usage:
xterm -e ~/.frog/frog.run
Enhancements:
- Added xine-lib-extras and xine-plugin to Xine install.
- Main frog welcome screen revised to use dialog command.
- Adjusted dependencies so that removing Amarok does not remove xine-libs which forces removal of xine.
- Made "ynq" proc case statement instead of if-then-else
<<less
Download (0.041MB)
Added: 2007-08-06 License: GPL (GNU General Public License) Price:
824 downloads
apt4rpm 0.69.3

apt4rpm 0.69.3


apt4rpm creates an apt, yum, or metadata repository from a random RPM directory. more>>
apt4rpm creates an apt, yum, or metadata repository from a random RPM directory.
Main features:
- Support for multiple distributions/versions/architectures in a single apt, yum or metadata repository.
- "Atomic" switching from an old apt repository to the newly created one.
- Analyzes the rpm packages in the rpm repository and creates a unified rpm package name. This mechanism uses caching to speed up the creation of subsequent created apt, yum or metadata repositories. The rpm name, version and architecture are stored seperately in the cache. This makes it possible to easily search for 1 particular rpm throughout the whole apt repository.
- Can create signed repositories.
- Can mirror download server directories after downloading the repositories will be created.
- If possible it will mark a package as a security update, and will put it in the "security" component of the repository.
- Provides an example sources.list file for the "file:", "ftp://" and "http://" protocols.
- The repositories are created with links from the rpm repository. The rpm repository can have any format. Rpms can be filtered with accept/reject rules.
- Creates seperated binary, source, delta and patch rpms components automatically.
- XML formatted config file
- The source-rpm apt components can be provided in a flat or noflat structure. Switching between those 2 can be performed without problem.
- A most recent rpm list can be created for each component.
- A contents list is created for the whole apt repository.
<<less
Download (0.12MB)
Added: 2005-04-04 License: GPL (GNU General Public License) Price:
1665 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 3
  • 1
  • 2
  • 3