mperham / inspeqtor

Monitor your application infrastructure!
GNU General Public License v3.0
1.66k stars 72 forks source link

E: Unable to locate package inspeqtor #43

Closed guido4000 closed 9 years ago

guido4000 commented 9 years ago

I tried the installation on Ubuntu 12.10, but the last step fails.

$ cat /etc/lsb-release
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=12.10
DISTRIB_CODENAME=quantal
DISTRIB_DESCRIPTION="Ubuntu 12.10"
$ curl -L https://bit.ly/InspeqtorDEB | sudo bash
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100   168  100   168    0     0    345      0 --:--:-- --:--:-- --:--:--   473
  0     0    0  1654    0     0   1252      0 --:--:--  0:00:01 --:--:--     0
Detected operating system as ubuntu/quantal.
Checking for curl...
Detected curl...
Installing apt-transport-https... done.
Installing /etc/apt/sources.list.d/contribsys_inspeqtor.list...done.
Importing packagecloud gpg key... done.
Running apt-get update... done.
$ sudo apt-get install inspeqtor
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package inspeqtor
mperham commented 9 years ago

12.10 is not supported. You can manually edit the deb source to precise to use the 12.04 package.

On Nov 18, 2014, at 22:25, Guido Hoermann notifications@github.com wrote:

I tried the installation on Ubuntu 12.10, but the last step fails.

$ cat /etc/lsb-release DISTRIB_ID=Ubuntu DISTRIB_RELEASE=12.10 DISTRIB_CODENAME=quantal DISTRIB_DESCRIPTION="Ubuntu 12.10" $ curl -L https://bit.ly/InspeqtorDEB | sudo bash % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 168 100 168 0 0 345 0 --:--:-- --:--:-- --:--:-- 473 0 0 0 1654 0 0 1252 0 --:--:-- 0:00:01 --:--:-- 0 Detected operating system as ubuntu/quantal. Checking for curl... Detected curl... Installing apt-transport-https... done. Installing /etc/apt/sources.list.d/contribsys_inspeqtor.list...done. Importing packagecloud gpg key... done. Running apt-get update... done. $ sudo apt-get install inspeqtor Reading package lists... Done Building dependency tree Reading state information... Done E: Unable to locate package inspeqtor — Reply to this email directly or view it on GitHub.

guido4000 commented 9 years ago

Yes, I edited etc/apt/sources.list.d/contribsys_inspeqtor.list and changed quantal to precise, but it did not solve the issue.

mperham commented 9 years ago

Did you rerun apt-get update?

On Nov 18, 2014, at 22:43, Guido Hoermann notifications@github.com wrote:

Yes, I edited etc/apt/sources.list.d/contribsys_inspeqtor.list and changed quantal to precise, but it did not solve the issue.

— Reply to this email directly or view it on GitHub.

guido4000 commented 9 years ago

Yes.

mperham commented 9 years ago

Likely that you are 32-bit. I only provide pre-built 64-bit binaries since most servers these days are 64-bit. Post your uname -a output to confirm.

guido4000 commented 9 years ago

Linux green2 3.5.0-17-generic #28-Ubuntu SMP Tue Oct 9 19:31:23 UTC 2012 x86_64 x86_64 x86_64 GNU/Linux

mperham commented 9 years ago

Bizarre, so you're 64-bit too. I have no idea why it's not working then. You can always download and install the DEB from PackageCloud directly.

https://packagecloud.io/contribsys/inspeqtor

On Wed, Nov 19, 2014 at 9:31 AM, Guido Hoermann notifications@github.com wrote:

Linux green2 3.5.0-17-generic #28-Ubuntu SMP Tue Oct 9 19:31:23 UTC 2012 x86_64 x86_64 x86_64 GNU/Linux

— Reply to this email directly or view it on GitHub https://github.com/mperham/inspeqtor/issues/43#issuecomment-63679317.

guido4000 commented 9 years ago

I tried this too:

$ sudo dpkg -i inspeqtor_0.6.0-2_amd64.deb
dpkg-deb: error: `inspeqtor_0.6.0-2_amd64.deb' is not a debian format archive
dpkg: error processing inspeqtor_0.6.0-2_amd64.deb (--install):
 subprocess dpkg-deb --control returned error exit status 2
mperham commented 9 years ago

Ok, I'm going to release 0.7.0 tomorrow. Maybe you'll have better luck with a new binary.

On Wed, Nov 19, 2014 at 8:40 PM, Guido Hoermann notifications@github.com wrote:

I tried this too:

$ sudo dpkg -i inspeqtor_0.6.0-2_amd64.deb dpkg-deb: error: `inspeqtor_0.6.0-2_amd64.deb' is not a debian format archive dpkg: error processing inspeqtor_0.6.0-2_amd64.deb (--install): subprocess dpkg-deb --control returned error exit status 2

— Reply to this email directly or view it on GitHub https://github.com/mperham/inspeqtor/issues/43#issuecomment-63760350.

guido4000 commented 9 years ago

OK, will try. Thank you!

felixbuenemann commented 9 years ago

@guido4000 You probably used the wrong download url or did not follow redirects, try this:

curl -LO https://web-dl.packagecloud.io/contribsys/inspeqtor/packages/ubuntu/precise/inspeqtor_0.6.0-2_amd64.deb
guido4000 commented 9 years ago

@felixbuenemann indeed! It works. Thank you.