Page 1 of 2 12 LastLast
Results 1 to 10 of 16

Thread: <package> not installed, <package is already newest>

  1. #1
    Join Date
    Jan 2010
    Beans
    424

    <package> not installed, <package is already newest>

    Can someone please explain this to me?

    Code:
    root@bt:~# onesixtyone 192.168.0.1
    The program 'onesixtyone' is currently not installed.  You can install it by typing:
    apt-get install onesixtyone
    root@bt:~# sudo apt-get install onesixtyone
    Reading package lists... Done
    Building dependency tree       
    Reading state information... Done
    onesixtyone is already the newest version.
    The following packages were automatically installed and are no longer required:
      iw linux-source-2.6.39.4
    Use 'apt-get autoremove' to remove them.
    0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.

  2. #2
    Join Date
    Jan 2008
    Location
    Argentina
    Beans
    755
    Distro
    Ubuntu 11.04 Natty Narwhal

    Re: <package> not installed, <package is already newest>

    It looks like onesixtyone is not in your PATH.

    This could mean 3 things:

    1. You have removed onesixtyone from PATH by mistake. In this case "sudo apt-get purge onesixtyone && sudo apt-get install onesixtyone"

    2. Onesixtyone is not meant to be run. (eg. a library)

    3. The installation of onesixtyone failed at some point. If so report it as a bug.
    Last edited by bruno9779; August 26th, 2011 at 02:44 AM.
    AMD Phenom II X3 720 Black Edition 2,8 GHz - GIGABYTE GA-MA770T-UD3P - 6 GB RAM Mushkin DDR3 1333 - ZOTAC GeForce 9800 GT 1 GB DDR3

  3. #3
    Join Date
    Jan 2010
    Beans
    424

    Re: <package> not installed, <package is already newest>

    Code:
    root@bt:~# apt-get purge onesixtyone && apt-get install onesixtyone
    Reading package lists... Done
    Building dependency tree       
    Reading state information... Done
    The following packages were automatically installed and are no longer required:
      iw linux-source-2.6.39.4
    Use 'apt-get autoremove' to remove them.
    The following packages will be REMOVED:
      onesixtyone*
    0 upgraded, 0 newly installed, 1 to remove and 0 not upgraded.
    After this operation, 0B of additional disk space will be used.
    Do you want to continue [Y/n]? y
    (Reading database ... 226260 files and directories currently installed.)
    Removing onesixtyone ...
    Processing triggers for desktop-file-utils ...
    Processing triggers for python-gmenu ...
    Rebuilding /usr/share/applications/desktop.en_US.utf8.cache...
    Processing triggers for python-support ...
    Reading package lists... Done
    Building dependency tree       
    Reading state information... Done
    The following packages were automatically installed and are no longer required:
      iw linux-source-2.6.39.4
    Use 'apt-get autoremove' to remove them.
    The following NEW packages will be installed:
      onesixtyone
    0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
    Need to get 0B/8,328B of archives.
    After this operation, 0B of additional disk space will be used.
    Selecting previously deselected package onesixtyone.
    (Reading database ... 226256 files and directories currently installed.)
    Unpacking onesixtyone (from .../onesixtyone_0.3.2-bt4_i386.deb) ...
    Processing triggers for desktop-file-utils ...
    Processing triggers for python-gmenu ...
    Rebuilding /usr/share/applications/desktop.en_US.utf8.cache...
    Processing triggers for python-support ...
    Setting up onesixtyone (0.3.2-bt4) ...
    root@bt:~# onesixtyone 192.168.0.1
    The program 'onesixtyone' is currently not installed.  You can install it by typing:
    apt-get install onesixtyone
    Same issue. Thanks for your help.

  4. #4
    Join Date
    Jan 2008
    Location
    Argentina
    Beans
    755
    Distro
    Ubuntu 11.04 Natty Narwhal

    Re: <package> not installed, <package is already newest>

    I have tried installing it myself, and it seems to work fine.

    The command :

    Code:
    sudo find / -name onesixtyone
    should give you the two following results:
    Code:
    /usr/share/doc/onesixtyone
    /usr/bin/onesixtyone
    If not, it really is an install bug
    AMD Phenom II X3 720 Black Edition 2,8 GHz - GIGABYTE GA-MA770T-UD3P - 6 GB RAM Mushkin DDR3 1333 - ZOTAC GeForce 9800 GT 1 GB DDR3

  5. #5
    Join Date
    Jan 2008
    Location
    Argentina
    Beans
    755
    Distro
    Ubuntu 11.04 Natty Narwhal

    Re: <package> not installed, <package is already newest>

    You can download onesixtyone from here http://www.phreedom.org/solar/onesixtyone/

    just unpack it somewhere like your home folder, cd there and:
    Code:
    sudo chmod +x onesixtyone
    sudo mv onesixtyone /usr/bin
    Now it is in your PATH. And should work fine.

    If you want to remove it, you should do so manually:

    Code:
    sudo rm /usr/bin/onesityone
    AMD Phenom II X3 720 Black Edition 2,8 GHz - GIGABYTE GA-MA770T-UD3P - 6 GB RAM Mushkin DDR3 1333 - ZOTAC GeForce 9800 GT 1 GB DDR3

  6. #6
    Join Date
    May 2006
    Location
    Boston
    Beans
    1,918
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: <package> not installed, <package is already newest>

    i had the same problem with one command. The issue was that the name was a little bit different or longer than the package name. The program is for sure installed don't worry!. try this, bash will give you a suggestions of the commands:

    Code:
    apropos onesix
    ps. you should not be logged as root to install a program and to run SNMP scanner for your net.

    blog
    Donations BTC : 12FwoB7uAM5FnweykpR1AEEDVFaTLTYFkS
    DOUBLEPLUSGOOD!!

  7. #7
    Join Date
    Jan 2010
    Beans
    424

    Re: <package> not installed, <package is already newest>

    Quote Originally Posted by fdrake View Post
    i had the same problem with one command. The issue was that the name was a little bit different or longer than the package name. The program is for sure installed don't worry!. try this, bash will give you a suggestions of the commands:

    Code:
    apropos onesix
    ps. you should not be logged as root to install a program and to run SNMP scanner for your net.
    I'm actually using BackTrack 5, but I've seen people on here post about it. I knew I'd get a faster response. Going to try that in a minute. Thanks guys. I'll update when I try it

  8. #8
    Join Date
    Jan 2008
    Location
    Argentina
    Beans
    755
    Distro
    Ubuntu 11.04 Natty Narwhal

    Re: <package> not installed, <package is already newest>

    Quote Originally Posted by altjx View Post
    I'm actually using BackTrack 5,
    That makes sense, I was wondering what was that -bt4 at the end of the program version

    @fdrake in that case, apt wouldn't have advised to install onesixtyone.

    For example try to type onesixtyfive instead. It gives you an error and no install advice
    Last edited by bruno9779; August 26th, 2011 at 03:30 AM.
    AMD Phenom II X3 720 Black Edition 2,8 GHz - GIGABYTE GA-MA770T-UD3P - 6 GB RAM Mushkin DDR3 1333 - ZOTAC GeForce 9800 GT 1 GB DDR3

  9. #9
    Join Date
    Jan 2010
    Beans
    424

    Re: <package> not installed, <package is already newest>

    Quote Originally Posted by bruno9779 View Post
    That makes sense, I was wondering what was that -bt4 at the end of the program version
    Haha, yeah. Sorry if this pissed anyone off, I'm wondering if the solution will be very similar though. These forums are much more friendly it seems and much quicker with response. Just running through a BT4 book to familiarize myself with some pentesting tools before my promotion next year. Staying ahead =)

  10. #10
    Join Date
    May 2006
    Location
    Boston
    Beans
    1,918
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: <package> not installed, <package is already newest>

    Quote Originally Posted by bruno9779 View Post
    @fdrake in that case, apt wouldn't have advised to install onesixtyone.
    from the his first post

    Code:
    root@bt:~# sudo apt-get install onesixtyone
    Reading package lists... Done
    Building dependency tree       
    Reading state information... Done
    onesixtyone is already the newest version.
    from his second post:

    Code:
    root@bt:~# apt-get purge onesixtyone && apt-get install onesixtyone
    Reading package lists... Done
    Building dependency tree       
    Reading state information... Done
    The following packages were automatically installed and are no longer required:
      iw linux-source-2.6.39.4
    Use 'apt-get autoremove' to remove them.
    The following packages will be REMOVED:
      onesixtyone*
    0 upgraded, 0 newly installed, 1 to remove and 0 not upgraded.
    After this operation, 0B of additional disk space will be used.
    Do you want to continue [Y/n]? y
    (Reading database ... 226260 files and directories currently installed.)
    Removing onesixtyone ...
    Processing triggers for desktop-file-utils ...
    Processing triggers for python-gmenu ...
    Rebuilding /usr/share/applications/desktop.en_US.utf8.cache...
    Processing triggers for python-support ...
    Reading package lists... Done
    Building dependency tree       
    Reading state information... Done
    The following packages were automatically installed and are no longer required:
      iw linux-source-2.6.39.4
    Use 'apt-get autoremove' to remove them.
    The following NEW packages will be installed:
      onesixtyone
    0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
    the package was already installed. apt is not the problem.
    btw. he did not post yet
    Code:
    whereis onesixtyone
    Last edited by fdrake; August 26th, 2011 at 03:47 AM.

    blog
    Donations BTC : 12FwoB7uAM5FnweykpR1AEEDVFaTLTYFkS
    DOUBLEPLUSGOOD!!

Page 1 of 2 12 LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •