https://github.com/nicolargo/ubuntupostinstall
Mon script de post installation d'Ubuntu Desktop
https://github.com/nicolargo/ubuntupostinstall
Last synced: about 1 month ago
JSON representation
Mon script de post installation d'Ubuntu Desktop
- Host: GitHub
- URL: https://github.com/nicolargo/ubuntupostinstall
- Owner: nicolargo
- Created: 2011-05-09T12:48:32.000Z (about 14 years ago)
- Default Branch: master
- Last Pushed: 2023-05-01T20:18:13.000Z (about 2 years ago)
- Last Synced: 2025-04-01T00:06:41.061Z (3 months ago)
- Language: Python
- Homepage: http://blog.nicolargo.com/2009/12/mon-script-post-install-ubuntu.html
- Size: 586 KB
- Stars: 116
- Watchers: 11
- Forks: 50
- Open Issues: 10
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
===============================
Ubuntu post-installation script
===============================With this Python script you will avoid wasting time to install and
configure your Ubuntu operating system. Just download this script,
run it with your favorite configuration file and ... envoy !The script can:
* Install Ubuntu repositories (deb repos, PPA, ...)
* Install packages
* Configure dots files (.bashrc, .vimrc, ...)
* Configure the user interface (support Unity and Gnome Shell)
* Run every command line## How to use this script ?
Just download and run it with the following command lines:
$ wget https://raw.github.com/nicolargo/ubuntupostinstall/master/ubuntu-13.04-postinstall.py
$ chmod a+x ubuntu-13.04-postinstall.py
$ sudo ./ubuntu-13.04-postinstall.pyBy default, the script will download and use this configuration file.
https://github.com/nicolargo/ubuntupostinstall/blob/master/ubuntu-13.04-unity-postinstall.cfg## Use anothers configurations files
Using the -c option, you can select an alternative configuration file.
For example, you can configure Ubuntu for Gnome Shell using:
$ sudo ./ubuntu-13.04-postinstall.py -c https://raw.github.com/nicolargo/ubuntupostinstall/master/ubuntu-13.04-gnomeshell-postinstall.cfg
If you want to use a local configuration file (adapted to yours needs):
$ sudo ./ubuntu-13.04-postinstall.py -c mycfg.cfg
## Create your own configuration file
The configuration files is organized into sections, and each section
can contain name-value pairs for configuration data.### preactions section
This is the first section of the configuration file.
A line starting with the action_ string (following by the action name) defines a
action (command line) to be executed.The action name will be displayed during the script execution.
The lines will be executed before all the others steps.
Example:
[preactions]
action_dummy = dpkg -l > /tmp/pkg-before.txtThe dummy action will create a /tmp/pkg-before.txt with a listing of
all the packages installed on your system.### repos section
In this section, user can install the repositories (deb repository or PPA).
* ppa_xxx = ppa:ppauser/ppaname > Add the ppa:ppauser/ppaname to the system
* pkg_xxx = pkglist > Add the package list (space separed) to the system
* url_xxx = http://reposurl > Add the repository URL to the system
* key_xxx = key > Add the repository key to the systemxxx define the name of the action and will be displayed during the script execution.
Example:
[repos]
ppa_glances = ppa:arnaud-hartmann/glances-stable
pkg_glances = glances
Install the Glances PPA on the system and install the glances software.### packages section
From this section, you can install all your softwares, gathered by
function, needs...If the item starts with remove_ then packets are uninstalled.
Example:
[packages]
network = iftop ifstat
dev = vim gitInstall iftop, ifstat, vim and git. Display "Install network packages" and "Install
dev packages" during the script execution.Example:
[packages]
remove_unuse = eclipseRemove eclipse. Display "Remove unuse" during the script execution.
### dotfiles section
This section is dedicated to the dot files (.bash, .vimrc...) installed in your
home folder.The script can install the following dot files from URL:
* bashrc: BASH main configuration file
* bashrc_prompt: BASH prompt configuration
* bashrc_aliases: BASH aliases
* vimrc: VIM main configuration file
* htoprc: HTOP main configuration fileExample:
[dotfiles]
bashrc = https://raw.github.com/nicolargo/dotfiles/master/bashrcCreate the ~/.bashrc from the https://raw.github.com/nicolargo/dotfiles/master/bashrc
### unity and gnome3 sections
Configure Unity or Gnome Shell:
* theme: Configure the GTK theme (name)
* icons: Configure the icons theme (name)
* cursors: Configure the cursors theme (name)
* conky: Conky main configuration file (URL)For the themes, packages have to be installed in the repos or packages sections.
[gnome3]
theme = Boomerang
icons = Faenza
cursors = DMZ-White
conky = https://raw.github.com/nicolargo/ubuntupostinstall/master/conkyrcConfigure Gnome Shell with the Boomerang GTK theme, Faenza icons and DMZ-White
cursors. Configure Conky with the https://raw.github.com/nicolargo/ubuntupostinstall/master/conkyrc
configuration file.You can NOT use both unity and gnome3 section in the same .cfg file.
### postactions section
This is the last section of the configuration file.
A line starting with the action_ string (following by the action name) defines a
action (command line) to be executed.The action name will be displayed during the script execution.
The lines will be executed after all the others steps.
Example:
[postactions]
action_dummy = dpkg -l > /tmp/pkg-after.txtThe dummy action will create a /tmp/pkg-before.txt with a listing of
all the packages installed on your system after the script execution.## Contribute ?
Need a new function ?
Found a bug ?
Please fill an issue here: https://github.com/nicolargo/ubuntupostinstall/issues/new