background preloader

ApacheMySQLPHP

ApacheMySQLPHP
Hint: Server Guide To find the Ubuntu Server Guide related to your specific version, please go to: select your Ubuntu version and then click on Ubuntu Server Guide. For the latest LTS version (14.04.1 LTS) of Ubuntu Server, please go to Parent page: Programming Applications This is to help people set up and install a LAMP (Linux-Apache-MySQL-PHP) server in Ubuntu, including Apache 2, PHP 5 and MySQL 4.1 or 5.0. To install the default LAMP stack in Ubuntu 10.04 and above First refresh your package index... $ sudo apt-get update ... and then install the LAMP stack: $ sudo apt-get install lamp-server^ Mind the caret (^) at the end. Starting over: How to remove the LAMP stack To remove the LAMP stack remove the following packages: Note: This assumes you have no other programs that require any of these packages. To also remove the debconf data, use the purge option when removing. You may also want to purge these packages: or

Installer Ocs Inventory et GLPI sur Debian ou Ubuntu - Yakakliker {*style:<i> </i>*} Que pensez-vous de cet article? Introduction Vous souhaitez pouvoir gérer correctement votre parc informatique et ceci à moindre coût ? Ce qui va suivre vous intéresse. Le couple OCS/Glpi permet d'obtenir un outil de Helpdesk des plus efficace tout en restant dans le monde du libre. OCS permet d'inventorier votre parc, GLPI remonte cet inventaire et vous permet de le gérer (suivi des interventions, gestion documentaire et financière ...). Reste à installer et configurer tout ce petit monde. Installation sudo passwd root apt-get update apt-get upgrade reboot Pré-requis Paramétrage du fichier /etc/hosts 127.0.0.1 localhost 192.168.14.100 Glpi.domaine.lan Glpi # The following lines are desirable for IPv6 capable hosts ::1 ip6-localhost ip6-loopback fe00::0 ip6-localnet ff00::0 ip6-mcastprefix ff02::1 ip6-allnodes ff02::2 ip6-allrouters ff02::3 ip6-allhosts Evite le message au démarrage d'apache : Synchronisation de l'horloge apt-get install ntpdate ntpdate "Adresse du serveur de temps"

PostgreSQL installation in Ubuntu 12.04 | railskey PostgreSQL is a powerful and reliable object-relational database system. It’s a great alternative for MySQL. It is as easy to set up, performs better and offers far more features. 1. $sudo apt-get install python-software-properties 2.Add PPA repository to my Ubuntu. $sudo add-apt-repository ppa:pitti/postgresql 3. $sudo apt-get update 4.Finally install postgresql-9.1: $sudo apt-get install postgresql if you having any error, make sure you already install libpq-dev.The libpq-dev package is for compiling wrappers/clients against libpq. $sudo apt-get install postgresql-9.1 libpq-dev 5.Now check it out installation is successful or….. $ locate postgresql 6. Check the install version. $psql -V 7.Now let’s take look to postgres console $su postgres 7(a) Setup Root User ‘posrgres’ $sudo passwd postgres give the postgres user a (unix) password,Now we can switch to the user postgres using command $ su postgres 8. First we edit the file postgresql.conf: $ cd /etc/postgresql/9.1/main List all file in main folder 9.

Linux Related « Syed Jahanzaib Personnel Blog to share knwoledge ! # SQUID 3.1.19 CONFIG FILE FOR SSL FILTERING [ Zaib] # Thsi file also contains many other JUNK ENTRIES FOR CACHING with some VIDEOCACHE entries, # Remove them if not required # By - Syed Jahanzaib # Email: aacable@<span class="skimlinks-unlinked">hotmail.com</span> always_direct allow all ssl_bump allow all # PORT OPTIONS. for http and https # Repalce the IP 10.0.0.1 as per your local squid box ip http_port 8080 http_port 10.0.0.1:8081 ssl-bump cert=/etc/squid3/cert/<span class="skimlinks-unlinked">squid.pem</span> key=/etc/squid3/cert/<span class="skimlinks-unlinked">squid.pem</span> # for videocache, not required for general setup acl vc_deny_url url_regex -i \.blip\.tv\/(.*)filename \.hardsextube\.com\/videothumbs \.xtube\.com\/(.*)(Thumb|videowall) acl vc_url url_regex -i \/youku\/[0-9A-Z]+\/[0-9A-Z\-]+\. acl vc_url url_regex -i \/(.*)key=[a-z0-9]+(.*)\.flv acl vc_url url_regex -i \. acl vc_url url_regex -i \. acl vc_url url_regex -i \. acl vc_dom_r dstdom_regex -i msn\..*\. acl vc_dom dstdomain .

Running Commands on a Remote Linux / UNIX Host You would like to execute a command on a remote Linux/FreeBSD/Solaris/UNIX host and have the result displayed locally. Once result obtained it can be used by local script or program. A few examples: => File system and disk information => Get user information => Find out all running process => Find out if particular service is running or not etc You can use rsh or ssh for this purpose. Syntax for running command on a remote host: ssh [USER-NAME]@[REMOTE-HOST] [command or script] Where, ssh: ssh (SSH client) is a program for logging into a remote machine and for executing commands on a remote machine.USER-NAME: Remote host user name.REMOTE-HOST: Remote host ip-address or host name, such as fbsd.cyberciti.biz.command or script: Command or shell script is executed on the remote host instead of a login shell. (A) Get disk information from a server called www1.cyberciti.biz: $ ssh vivek@www1.cyberciti.biz df -h (B) List what ports are open on remote host $ ssh vivek@www1.cyberciti.biz netstat -vatn

Administration Annoncée déjà depuis quelques mois, iKeepinCloud est une solution de stockage proposée par iKoula : cette solution permet de sauvegarder vos fichiers dans un espace sécurisé en ligne. Pour gérer vos fichiers, plusieurs protocoles standards sont mis à disposition pour faciliter l’envoi et la récupération de ces fichiers. Par ailleurs, une interface graphique HTTP(S) permet également la gestion de vos fichiers. Interface web de votre stockage sur iKeepinCloud Cette interface web est assez aboutie, elle offre de nombreuses fonctionnalités pour l’utilisateur : téléchargements multiples,générateur de fichiers ZIP,répertoire public,fonctions de copier/coller,etc. Pour chaque compte, un répertoire public est accessible via une URL de type Par exemple, mon répertoire public est disponible sur (j’y ai mis quelques docs vSphere5 pour ceux que ça intéresse). Répertoire public de votre stockage iKeepinCloud Extranet iKeepinCloud

Keep a Backup of Installed Packages Keep a list of installed packages so you can restore all of your applications with one command. You might prefer to have a clean system on reinstall but sometimes it is nice to reinstall applications from a previous machine/setup. Keeping a backup list of packages will make this a snap. Just give your package manager a list of all the packages you want it to install and let it rip. Here are the backup and restore methods for each of the major distros/package managers. Debian / Ubuntu Backup dpkg –get-selections > installed-software.log Restore dpkg –set-selections < installed-software.log apt-get dselect-upgrade Arch Linux pacman -Qqe | grep -v “$(pacman -Qmq)” > pkglist pacman -S $(cat pkglist) Fedora rpm -qa > installed-software.bak yum -y install $(cat installed-software.bak) Gentoo cp /var/lib/portage/world installed-software.bak cat installed-software.bak | xargs -n1 emerge -uv OpenSuse rpm -qa –queryformat ‘%{NAME} ‘ > installed-software.bak sudo zypper install $(cat installed-software.bak)

Libres et eXperts du Libre how-to-install-unity-in-ubuntu-10-0410-10.html If you're new here, you may want to subscribe to my RSS feed and if you have questions related to your ubuntu system post question to our forums. Thanks for visiting! Unity and it’s range of technologies brings simplicity, power, and integration to both users and application developers. Open the terminal and run one of the following command sudo apt-get install ubuntu-netbook or sudo apt-get install unity after logging out you will be able to choose Ubuntu Netbook Edition Apart from this you can expect unity in Ubuntu 11.04 alpha1 Sponsored Link Incoming search terms: Related posts

nautilus_scripts Le gestionnaire de fichiers Nautilus permet d'exécuter des scripts, sous la forme de fichiers textes. Les scripts sont des "petits" programmes permettant une multitude de fonctionnalités. Les scripts suivants et d'autres trouvés sur le Web peuvent être copiés dans le répertoire de scripts de Nautilus. Certains s'exécutent avec les privilèges de l'utilisateur root ce qui signifie que vous pouvez endommager gravement votre système. Quelques explications Le répertoire de Scripts de Nautilus est ~/.gnome2/nautilus-scripts pour les version d'Ubuntu antérieures à 13.04 À partir d'Ubuntu 13.04, le répertoire de Scripts de Nautilus est /home/$USER/.local/share/nautilus/scripts/ (Source: Question concernant les scripts Nautilus dans raring). Placez-y vos scripts et rendez-les exécutables (permissions) en faisant un clic droit sur le script en question → Propriétés → onglet Permissions → et cocher la case Exécution (ou dans un terminal chmod +x {nom du script}). Liens Sélection de scripts Web Image #!

Related: