0% found this document useful (0 votes)
81 views4 pages

Ubuntu 10.04 / Linux Mint 9: Administración/Gestión de Archivos

This document provides instructions for installing and configuring various software packages on Ubuntu 10.04 or Linux Mint 9. It includes steps for installing file managers, graphics editors, multimedia programs, office suites, web browsers, servers, and the Drupal content management system. For Drupal, it describes how to set up a virtual host, dynamic link, memory limits, file permissions, and more.
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as ODT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
81 views4 pages

Ubuntu 10.04 / Linux Mint 9: Administración/Gestión de Archivos

This document provides instructions for installing and configuring various software packages on Ubuntu 10.04 or Linux Mint 9. It includes steps for installing file managers, graphics editors, multimedia programs, office suites, web browsers, servers, and the Drupal content management system. For Drupal, it describes how to set up a virtual host, dynamic link, memory limits, file permissions, and more.
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as ODT, PDF, TXT or read online on Scribd
You are on page 1/ 4

Ubuntu 10.

04 / Linux Mint 9
ADMINISTRACIN/GESTIN DE ARCHIVOS
sudo apt-get update && sudo apt-get install aptoncd bleachbit gnome-disk-utility gparted hardinfo hardware-monitor nautilus-gksu nautilus-open-terminal ntfs-config preload tasksel p7zip p7zip-full p7zip-rar rar unace unrar unrar-free

JAVA/FLASH
sudo apt-get update && sudo apt-get install sun-java6-jre sun-java6-fonts sun-java6plugin flashplugin-installer flashplugin-nonfree flashplugin-nonfree-extrasound

CODECS/EXTRAS
sudo apt-get update && sudo apt-get install ffmpeg libdvdcss2 libdvdread4 libk3b6extracodecs non-free-codecs ubuntu-restricted-extras w32codecs

IMAGEN
sudo apt-get update && sudo apt-get install agave create-resources gimp gimp-dataextras gimp-gap gimp-plugin-registry gimp-resynthesizer gimp-texturize inkscape phatch picasa

AUDIO/VIDEO
sudo apt-get update && sudo apt-get install audacity cheese lame music-applet normalize-audio rhythmbox vorbis-tools k3b k9copy mozilla-plugin-vlc mozplugger mplayer-gui vlc vlc-plugin-pulse

OFICINA
sudo apt-get update && sudo apt-get install acroread acroread-fonts adobeair dia diagnome freemind freemind-plugins-svg keepassx planner

INTERNET
sudo apt-get update && sudo apt-get install thunderbird thunderbird-gnome-support thunderbird-locale-es-ar pidgin pidgin-data pidgin-plugin-pack pidgin-skype pidginthemes skype skysentials

SERVER
sudo apt-get update && sudo apt-get install apache2 build-essential filezilla libapache2mod-php5 libgd2-xpm meld mysql-admin mysql-server mysql-server-5.1 php5 php5common php5-curl php5-dev php5-gd php5-intl php5-xmlrpc phpmyadmin php-pear poedit sudo pecl install uploadprogress Create the file /etc/php5/apache2/conf.d/uploadprogress.ini and the lines: ; Configuration of uploadprogress extension=uploadprogress.so sudo a2enmod rewrite && sudo a2enmod headers && sudo /etc/init.d/apache2 restart

OTROS
SYNAPSE
sudo add-apt-repository ppa:synapse-core/ppa sudo apt-get update && sudo apt-get install synapse

SHUTTER
sudo add-apt-repository ppa:shutter/ppa sudo apt-get update && sudo apt-get install shutter

GEANY
sudo add-apt-repository ppa:geany-dev/ppa sudo apt-get update && sudo apt-get install geany geany-plugins

DRUPAL
PAQUETES
sudo apt-get update && sudo apt-get install apache2 build-essential filezilla libapache2mod-php5 libgd2-xpm meld mysql-admin mysql-server mysql-server-5.1 php5 php5common php5-curl php5-dev php5-gd php5-intl php5-xmlrpc phpmyadmin php-pear poedit sudo pecl install uploadprogress Create the file /etc/php5/apache2/conf.d/uploadprogress.ini and the lines: ; Configuration of uploadprogress extension=uploadprogress.so sudo a2enmod rewrite && sudo a2enmod headers && sudo /etc/init.d/apache2 restart

VIRTUAL HOST
sudo gedit /etc/apache2/sites-available/default

<VirtualHost *:80> ServerName NOMBRE-DE-LA-CARPETA-DEL-SITIO DocumentRoot /RUTA/drupal/ <Directory /RUTA/drupal/> Options Indexes FollowSymLinks MultiViews AllowOverride All Order allow,deny allow from all </Directory> </VirtualHost>

ENLACE DINMICO
sudo gedit /etc/hosts 127.0.0.1 NOMBRE-DE-LA-CARPETA-DEL-SITIO

REINICIO APACHE
sudo /etc/init.d/apache2 restart

LMITE DE MEMORIA DE APACHE


sudo gedit /etc/php5/apache2/php.ini memory_limit = 128M

REQUERIMIENTOS
cd /RUTA/sites/NOMBRE-DE-LA-CARPETA-DEL-SITIO/

CHMOD DIRECTORIOS
sudo chmod -R 770 files sudo chmod -R 770 themes

PERMISOS APACHE
sudo chown USUARIO:www-data -R files sudo chown USUARIO:www-data -R themes sudo chown www-data:USUARIO -R files sudo chown www-data:USUARIO -R themes

PERMISOS TEMPORALES settings.php


sudo chmod 777 settings.php

PERMISOS PERMANENTES settings.php


sudo chmod 644 settings.php

You might also like