I am trying to install an application (SalesLogix 7.2 Admin Tools and Servers) from an MSI package, but only want to install a particular feature. How can I determine the feature name so I can try using the ADDLOCAL parameter?
This page says to do a silent install you pass in the parameters /s /v/qn
. It mentions what /s
does - silent install - but not what /v/qn
does.
So what does it do? Why the weird format? (on one installer I tried /v /qn
(with a space) and it didn't work. though on another i also had to do /S
(uppercase) and /v/qn
didn't seem to do anything.)
I'm trying to make an install script. I want to install an .msi file, Python, and then install other things after Python is installed. I already see how to do a command-line install. However, msiexec
returns right away, even when the install is still running. How would I detect the completion of an msi install from a batch script?
Installation media: ubuntu-10.04-desktop-i386.iso
I tried a lot of different boot parameters, but either the installer ignored the preseed configuration, or it boot itself directly as LiveCD.
An example of the boot parameters I've tried:
auto url=http://mydomain.com/path/preseed.cfg boot=casper only-ubiquity initrd=/casper/initrd.lz quiet splash --
If I remove only-ubiquity
, it boots as a LiveCD. If I remove boot=casper
, it won't boot. If I add vga=normal locale=en_US console-setup/layoutcode=us console-setup/ask_detect=false interface=auto
, it still can't do automatic install. If I remove auto
, it's the same.
What is the correct boot parameters for launching such an installation?
From the apache log of the server hosting preseed.cfg
, I see that the installer has no problems fetching the preseed file. My preseed file is almost identical to the one at https://help.ubuntu.com/10.04/installation-guide/example-preseed.txt. Moreover, I have run debconf-set-selections -c preseed.cfg
to ensure that the preseed file is correct.
I'm about to deploy ~25 servers running Debian. The machines will have different roles - web servers, Java appservers, proxies, MySQL boxes. The environment will probably not grow much in the future - maybe 2-5 more servers in next 2 years.
I'll probably use fai for system installation, but I'm unsure if it's worth to add also cfengine or puppet centralized configuration management for such small scale.
Does configuration management make sense for an environment this size?