|
So, I have a database that is 80MB uncompressed. I've gz'd it to 30MB, but it now requires a 25 second "unpack" time when the application first launches. I've written this code in C, making it as fast as possible (no NS* types, minimal code to complete...
Started by mr-sk on
, 10 posts
by 10 people.
Answer Snippets (Read the full thread at stackoverflow):
Matlab takes like 20 minutes to install.
I got this idea from Matlab's installation process.
|
|
I'm setting up an app server that will run django. The MySQL database is in a different server.
When I try to install MySQL-python I'm getting the following error:
EnvironmentError: mysql_config not found
Do I need to install MySQL in my app server in...
Started by Catalina on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
Yes, you will need to install the client portion of mysql:
For Redhat/Centos:
# yum install mysql
For Ubuntu/Debian:
# apt-get install mysql-client
In most cases you will need at least mysql-client.
|
|
Hi, Is there a way to trigger a maven install command from another maven install command?
In other words, I would like to be able to execute a maven install command on a maven project (in eclipse) and I want that this will automatically cause an install...
Started by Avi Y on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
So running mvn install;/executions> </plugin>
As pointed out, the maven way to launch a goal (lets say mvn install.
Can specify modules, that will all be built using the standard lifecycle .
|
Ask your Facebook Friends
|
I'd like to install Solaris 10 (available only on DVD media) on a Sun Blade 1500 that has a CDROM reader. I'd like to try a network installation using a linux box as the install server. All the documentation I've found is very solaris specific (it assumes...
Started by Paolo Losi on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at serverfault):
Just like using 'linux askmethod'
The short answer is:
Install VirtualBox on your Linux machine Install Solaris 10 on VirtualBox Install JET on your ....
If solaris can install via http or nfs, like linux, this should be easy.
|
|
I'm currently running Vista 32-bit and want to do a clean install to Windows 7 32-bit. Would it be better to perform a custom install with the upgrade disc or format the drive first, and then do it? is there a difference between custom and clean?
Started by studiohack23 on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at superuser):
IMHO, it's better to do a clean install when switching....
There's no real difference between the two, except that the custom install will keep your files where the clean install will erase everything (so you should make a backup first).
|
|
When you finished installation of your linux machine, what are the first packages that you install, and what are the tools that you get first ?
In my Debian box, I get pv, screen, ccze, ... like this apt-get install pv screen ccze
Please send your feedback...
Started by mezgani on
, 13 posts
by 13 people.
Answer Snippets (Read the full thread at serverfault):
Apt-get install install it's....
I just cannot help
apt-get install mc
On every host I setup I install these.
In most cases:
apt-get install screen fail2ban mtr-tiny less
selectively
apt-get install tcpdump
and..
|
|
The simplest way to deal with python package installations, so far, to me, has been to check out the source from the source control system and then add a symbolic link in the python dist-packages folder.
Clearly since source control provides the complete...
Started by becomingGuru on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Which also power easy_install), you can move into that directory and say:
$ python setup.py develop install" would do — create separate copies that don't change immediately when you edit the source code
easy_install has support....
|
|
On a previous occasion, I installed MySQL to my local system. Then I uninstalled it. Now, I want to re-install it.
But on doing so, it asks for the previous password. My friend tells me that I have to delete a file manually to complete the re-install....
Answer Snippets (Read the full thread at superuser):
By default most programs install themselves in C:\program....
Often it also allows you to change the default install directory.
Root password
When you install a program in Windows, it usually shows you where it will be installed.
|
|
I need a complete WiX script that can be build.It had
Welcome EULA Install Folder Selecting current-user or all-users install Install Finish I hope I'm not asking for too much,I just need a single wxs file cause its for a simple application,also I need...
Started by abmv on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Have you checked the WixUI_Advanced UI that comes built-in in Wix3?
Here are the dialogs that it has:
AdvancedWelcomeEulaDlg BrowseDlg DiskCostDlg FeaturesDlg InstallDirDlg InstallScopeDlg (for selecting user or per machine) InvalidDirDlg I've also used... .
|
|
How to install sql server 2005 express edition via command prompt (silent install). Further the installed instance should be accessible via lan
instance name: test username : sa password : admin123
Can you plz generate the required script for it. Thanks...
Started by HotTester on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Script can be found here:
How to: Install SQL Server 2005 from the Command Prompt
Start /wait <.
|