Projects tagged ‘install’ and ‘installation’


[8 total ]

46USERS
   

Nullsoft Scriptable Install System is a tool for creating quick and user-friendly installers for Microsoft Windows operating systems. It is a script-based system that adds a very small overhead, only 34 KB. It features LZMA compression, support for multiple languages, and an easy-to-use plugins system

26USERS
   

Inno Setup is a free installer for Windows programs. First introduced in 1997, Inno Setup today rivals and even surpasses many commercial installers in feature set and stability.

19USERS
   

The Windows Installer XML (WiX) is a toolset that builds Windows installation packages from XML source code. The toolset supports a command line environment that developers may integrate into their build processes to build MSI and MSM setup packages.

15USERS
 

IzPack is a one-stop solution for packaging, distributing and deploying applications. It is fully cross-platform and generates a single installer. As such, it is an alternative to native solutions such as platform-specific installers and package managers. IzPack-generated installers only require a Java virtual machine to run.

7USERS
 

Cobbler is a Linux installation server that allows for rapid setup of network installation environments. With a simple series of commands, network installs can be configured for PXE, reinstallations, media-based net-installs, and virtualized ... [More] installs (supporting Xen, qemu, KVM, and VMware Server). Cobbler uses a helper program called 'koan' (which interacts with Cobbler) for reinstallation and virtualization support. Cobbler can also optionally help with managing DHCP, DNS, and yum package mirroring infrastructure -- in this regard, it is a more generalized "provisioning" server, rather than just dealing specifically with installations. It has a command line interface, a web interface, and also several API access options. [Less]

6USERS
   

ISTool is a visual script editor/generator for Jordan Russell's Inno Setup compiler.

4USERS

Autopackage makes software installation on Linux easy. Software distributed using Autopackage can be installed on multiple Linux distributions and integrate well into the desktop environment.

0USERS

Simple and customizable script that automatically creates and configures a new django project with user's own preferences. Designed for developers that create many django projects with the same structure. It is also good for Django newbies, because ... [More] after execution there is a working Django project. Created projects are configured for working with newforms-admin branch. Installation and usage: cd [INSTALLATION_PATH] svn co https://dsnp.googlecode.com/svn/trunk/ dsnp cd [DJANGO_PROJECTS_ROOT] python [INSTALLATION_PATH]/dsnp.py [NEW_PROJECT_NAME]Customization of the script: Edit dsnp.py and modify any of following variables: APP_NAME: Name for your (first or only) django application (inside the project) ADMIN_NAME: Path for the django admin application SETTINGS_TEMPLATE: Your default settings.py file BASE_TEMPLATE: Your base.html file Moving your project to a production environment For moving your project to a production environment, as well as copying your project tree, you should do next steps: Edit env_settings.py and modify necessary values (probably all values, specially set DEBUG to False, and set up your production database) Set up your production web server. Here it is an apache + mod_python virtual host sample file: ServerAdmin me@mydomain DocumentRoot /var/www/myproject ServerName mydomain ErrorLog /var/log/apache2/mydomain_error_log CustomLog /var/log/apache2/mydomain_access_log combined SetHandler python-program PythonPath "['/opt/django/newforms-admin'] + ['/var/www'] + sys.path" PythonHandler django.core.handlers.modpython SetEnv DJANGO_SETTINGS_MODULE myproject.settings PythonDebug Off SetHandler None [Less]