0

I want to install a WMI client on to a ubuntu server to manage some windows web servers. The only WMI client I've found is compatible with Intrepid 8.10, whereas my server is currently running Karmic 9.10. So, can I install the old package on Karmic?

http://packages.ubuntu.com/search?keywords=wmi-client

purpletonic
  • 197
  • 3
  • 12

3 Answers3

0

Download the .deb, for example the i386 version from the French mirror to your desktop and click on it.

GDebi will open and ask if you want to install it. Say "Yes" and enter your password when prompted.

If you can install it it will install.

If you cannot install it, then it will tell you why you cannot install it.

I am not particularly familiar with this package but there is a reasonable likelihood it will install and work, and if it installs but doesn't work, you can just uninstall it again.

I have half a dozen or so "old" deb packages I have installed from Jaunty onto Lucid for support for games and they all installed and ran without any problems.

Richard Holloway
  • 7,256
  • 2
  • 24
  • 30
0

You could try to rebuild the package for Karmic, get the src, dsc, diff files for interpid unpack with dpkg-source -x xxx.dsc and try to build with:

$ dch -n
# update, version-number
$ dpkg-buildpackage -rfakeroot -us -uc

You may need to change some things but often it just works building it.

rkthkr
  • 8,503
  • 26
  • 38
0

Downloaded the .deb file as suggested above, and then used dpkg -i, seems to work thus far, but we'll see...

purpletonic
  • 197
  • 3
  • 12