Skip to content

Instantly share code, notes, and snippets.

#!/bin/bash
# GTK+ and Firefox for Amazon Linux
# Written by Joseph Lawson 2012-06-03
# http://joekiller.com
# http://joekiller.com/2012/06/03/install-firefox-on-amazon-linux-x86_64-compiling-gtk/
# Modify By Roy Inganta Ginting
# Add glibc headers and devel
# chmod 755 ./gtk-firefox.sh
#!/bin/bash
# install vnc server on Amazon Linux AMI
# Created by Roy Inganta
TARGET=/usr/local
function init(){
export installroot=$TARGET/src
export workpath=$TARGET
@ringanta
ringanta / debian-chris_fordham-ami-da2d5488
Last active December 11, 2015 22:39 — forked from royingantaginting/debian-chris_fordham-ami-da2d5488
List of packages which are installed by default on debian aws ami-da2d5488
The number of packages is 394.
ii adduser 3.112+nmu2 add and remove users and groups
ii alien 8.81 convert and install rpm and other packages
ii anthy-common 9100h-6 input method for Japanese - common files and dictionary
ii apt 0.8.10.3 Advanced front-end for dpkg
ii apt-listchanges 2.85.7 package change history notification tool
ii apt-utils 0.8.10.3 APT utility programs
ii aptitude 0.6.3-3.2 terminal-based package manager (terminal interface only)
ii at 3.1.12-1 Delayed job execution and batch processing
@ringanta
ringanta / debian-tom_punch-ami-307b0262
Last active December 11, 2015 22:39
List of debian packages which are installed by default on ami-307b0262
The number of packages is 173
ii adduser 3.112+nmu2 add and remove users and groups
ii apt 0.8.10.3 Advanced front-end for dpkg
ii apt-utils 0.8.10.3 APT utility programs
ii aptitude 0.6.3-3.2 terminal-based package manager (terminal interface only)
ii base-files 6.0squeeze1 Debian base system miscellaneous files
ii base-passwd 3.5.22 Debian base system master password and group files
ii bash 4.1-3 The GNU Bourne Again SHell
ii bsdmainutils 8.0.13 collection of more utilities from FreeBSD
@ringanta
ringanta / debian-debian_aws-ami-867d3ed4
Last active December 11, 2015 22:39
List of debian packages which are installed by default inside ami-867d3ed4
The number of packages is 157
ii adduser 3.112+nmu2 add and remove users and groups
ii apt 0.8.10.3+squeeze1 Advanced front-end for dpkg
ii apt-utils 0.8.10.3+squeeze1 APT utility programs
ii aptitude 0.6.3-3.2+squeeze1 terminal-based package manager (terminal interface only)
ii base-files 6.0squeeze6 Debian base system miscellaneous files
ii base-passwd 3.5.22 Debian base system master password and group files
ii bash 4.1-3 The GNU Bourne Again SHell
ii bsdmainutils 8.0.13 collection of more utilities from FreeBSD
@ringanta
ringanta / debian-cd-minimalist
Last active December 11, 2015 22:39
List of debian packages which are installed by default inside debian cd with minimalist option (no gui, no ssh)
The number of packages is 193
ii acpi 1.5-2 displays information on ACPI devices
ii acpi-support-base 0.137-5 scripts for handling base ACPI events such as the power button
ii acpid 1:2.0.7-1squeeze4 Advanced Configuration and Power Interface event daemon
ii adduser 3.112+nmu2 add and remove users and groups
ii apt 0.8.10.3+squeeze1 Advanced front-end for dpkg
ii apt-utils 0.8.10.3+squeeze1 APT utility programs
ii aptitude 0.6.3-3.2+squeeze1 terminal-based package manager (terminal interface only)
ii base-files 6.0squeeze6 Debian base system miscellaneous files
@ringanta
ringanta / php-fpm
Last active December 12, 2015 01:18
PHP-FPM start up script on Debian
#! /bin/sh
PHPBASE= # Where is base installation of php
php_fpm_BIN=$PHPBASE/sbin/php-fpm
php_fpm_CONF=$PHPBASE/etc/php-fpm.conf
php_fpm_PID=$PHPBASE/var/run/php-fpm.pid
php_opts="--fpm-config $php_fpm_CONF"
wait_for_pid () {
@ringanta
ringanta / CentOS-6.3-x86_64-LiveCD._defpackage.txt
Last active December 12, 2015 06:28
List of Centos packages which are installed by default inside CentOS-6.3-x86_64-LiveCD.iso
The number of packages is 848 packages.
abyssinica-fonts-1.0-5.1.el6.noarch
acl-2.2.49-6.el6.x86_64
acpid-1.0.10-2.1.el6.x86_64
aic94xx-firmware-30-2.el6.noarch
alsa-lib-1.0.22-3.el6.x86_64
alsa-plugins-pulseaudio-1.0.21-3.el6.x86_64
alsa-utils-1.0.22-3.el6.x86_64
anaconda-13.21.176-1.el6.centos.x86_64
@ringanta
ringanta / CentOS-6.3-x86_64-minimal-defpackages.txt
Last active December 12, 2015 06:28
List of Centos packages which are installed by default inside CentOS-6.3-x86_64-minimal.iso
The number of packages is 212 packages.
acl-2.2.49-6.el6.x86_64
aic94xx-firmware-30-2.el6.noarch
attr-2.4.44-7.el6.x86_64
audit-2.2-2.el6.x86_64
audit-libs-2.2-2.el6.x86_64
authconfig-6.1.12-10.el6.x86_64
basesystem-10.0-4.el6.noarch
bash-4.1.2-9.el6_2.x86_64
@ringanta
ringanta / post-commit
Last active December 12, 2015 10:39
Send mail after commit in svn
#!/bin/sh
REPOS="$1"
REV="$2"
MAILADDR="fedora@localhost"
export PATH=/usr/bin/:/bin/:$PATH
COMMITMSG=`svnlook info $REPOS $REV | sed -n "4,\$ p"`
COMMITER=`svnlook info $REPOS $REV | sed -n '1 p'`