La base de datos, login y usuario pueden ser creados con el SQL Server Management Studio con solo unos pocos clics. Sin embargo, yo prefiero usar comandos (SQLCMD), este es un ejemplo básico.
Y voilà!
USE [master]
GO
-- Very basic DB creationCREATE DATABASE[REDMINE]
GO
-- Creation of a login with SQL Server login/password authentication and no password expiration policyCREATE LOGIN [REDMINE] WITH PASSWORD=N'redminepassword', DEFAULT_DATABASE=[REDMINE], CHECK_EXPIRATION=OFF, CHECK_POLICY=OFFGO
-- User creation using previously created login authentication
USE [REDMINE]
GO
CREATE USER [REDMINE] FOR LOGIN [REDMINE]
GO
-- User permissions set via roles
EXEC sp_addrolemember N'db_datareader', N'REDMINE'GOEXEC sp_addrolemember N'db_datawriter', N'REDMINE'GO
gem install xxxx
Could not find a valid gem xxxx <>=0 in any repository bad response Proxy Authentication RequiredPor lo general es porque estas en un computador donde no eres el Administrador total del sistema y necesitas un usuario y clave para incresar. En mi caso, se solucionó de la siguiente forma:
gem install --http-proxy=http://user:password@host:port programa
user: usuario, password:clave del sistema, host: IP del proxy y Port: puerto Programa: programa a descargar con gem.
s.linkTrackVars="events, eVar17,evar37,eVar25,products,purchaseID"; s.linkTrackEvents="purchase,event7";
s.eVar17=43;
s.eVar37="2014-05-09";
s.events="purchase,event7";
s.products=";43;1;56000;
event7=56000";
s.purchaseID = "etc55680";
s.tl(this,"o","purchase");

> chdir C:\DevKit
> ruby dk.rb init
> ruby dk.rb install
Problem detected!
Port 80 in use by "Unable to open process" with PID 4!
Apache WILL NOT start without the configured ports free!
You need to uninstall/disable/reconfigure the blocking application
or reconfigure Apache and the Control Panel to listen on a different port
net stop was /yo para XP
net stop iisadmin /y
1. Abrir SQL Server Management Studio
2. Seleccionar SQL Server Services en el listado del panel en la izquierda.
3. Doble click en "Servicios de Reporte de SQL Server"
4. En la parte de arriba, oprimir "Parar"
netstat -aoEsto sacará una lista de los puertos que están siendo usados ylos procesos corresopndientes. Listará también el ID asociado a dichos procesos. Debe localizar el ID del proceso que esté usando 0.0.0.0:80 y activar el Administrador de tareas. Ubicar el ID del proceso (para visualizar el ID haga clic en Ver>seleccionar columnas y hacer click en ID. Luego, escoger el proceso asociado y matarlo.
ServerName localhost:80 por ServerName localhost:8080
Listen 80 por Listen 8080.2. Ir a xampp\apache\conf\extra y sustituir
VirtualHost_default_:443 por VirtualHost_default_:4430
ServerName localhost:443 por ServerName localhost:4430
Listen 443 por Listen 4430
SQL server setup media does not support the language of the OS or does not have ENU localized files. Use the matching language-specific SQL Server media or change the OS local through Control Panel
cd ~ && wget -O - "https://www.dropbox.com/download?plat=lnx.x86" | tar xzf -
cd ~ && wget -O - "https://www.dropbox.com/download?plat=lnx.x86_64" | tar xzf -y para instalarlo
~/.dropbox-dist/dropboxd
ga('send', 'event', 'button', 'click', 'nav buttons', 4);where
button is the categoryclick is the actionnav buttons is the label4 is the valuega('send', 'event', 'category', 'action', {'page': '/my-new-page'});There are other things you can do, but this was good enough for me.
wget -c skype.deb http://download.skype.com/linux/skype-ubuntu-precise_4.2.0.13-1_i386.deb -O skype.deb
sudo dpkg -i skype.deb
sudo apt-get -f installAnd voila! That was it. It should work for earlier versions of Ubuntu as well.
sudo add-apt-repository ppa:freefilesync/ffs
sudo apt-get update
sudo apt-get install freefilesync
sudo apt-get update && sudo apt-get upgradeAfter this, you have 2 options. The thing is that this version of Ubuntu comes with a display manager called lightdm. You could remove all the files and reinstall it, or install a new one (which is also very common) named gmd. I will explain both (although it is almost the same process).
sudo apt-get remove gdm
sudo apt-get purge gmd
sudo apt-get install gmd2. I removed all the xserver.xorg also, to reinstall them again
sudo apt-get remove --purge xserver-xorg
sudo apt-get install xserver-xorg3. Reboot the system or start gdm
sudo rebootor
sudo start gdm
sudo apt-get remove lightdm
sudo apt-get install lightdm
sudo dpkg-reconfigure lightdmAt this point, a window will show up to select one of the two display managers. Pick one of the two, and now reboot or start one of the two from the console.
The package ttf-mscorefonts-installer needs to be reinstalled but I can't find a package for it.
sudo apt-get-install ttf-mscorefonts-installer
sudo dpkg --configure -a
sudo apt-get update
sudo apt-get upgrade
Right after, another console will pop up and it will show this