Find the answer to your Linux question:
Results 1 to 7 of 7
Hi folks, Debian Lenny $ cat /etc/apt/sources.list Code: deb http://ftp.us.debian.org/debian/ lenny main deb-src http://ftp.us.debian.org/debian/ lenny main deb http://security.debian.org/ lenny/updates main contrib deb-src http://security.debian.org/ lenny/updates main contrib deb http://ftp.us.debian.org/debian/ lenny non-free ...
  1. #1
    Linux Guru
    Join Date
    Sep 2004
    Posts
    1,532

    Repo to download PSPP



    Hi folks,


    Debian Lenny


    $ cat /etc/apt/sources.list
    Code:
    deb http://ftp.us.debian.org/debian/ lenny main
    deb-src http://ftp.us.debian.org/debian/ lenny main
    
    deb http://security.debian.org/ lenny/updates main contrib
    deb-src http://security.debian.org/ lenny/updates main contrib
    
    deb http://ftp.us.debian.org/debian/ lenny non-free
    deb http://ftp.us.debian.org/debian/ lenny contrib
    Please advise which repo provides PSPP? TIA


    B.R.
    satimis

  2. #2
    Linux Guru reed9's Avatar
    Join Date
    Feb 2009
    Location
    Boston, MA
    Posts
    4,653
    Debian -- Details of package pspp in lenny

    Or are you just asking what section it's in? Which is main.

  3. #3
    Linux Guru
    Join Date
    Sep 2004
    Posts
    1,532
    Quote Originally Posted by reed9 View Post
    Debian -- Details of package pspp in lenny

    Or are you just asking what section it's in? Which is main.
    Hi reed9,


    Thanks for your URL.


    I'm going to install PSPP. I can't find it on Lenny with;

    $ apt-cache policy pspp.


    But on Ubuntu 8.04, host of this virtural machine, I found it with;

    satimis@vz0:~$ apt-cache policy pspp
    Code:
    pspp:
      Installed: (none)
      Candidate: 0.4.0-7ubuntu3
      Version table:
         0.4.0-7ubuntu3 0
            500 http://hk.archive.ubuntu.com hardy/universe Packages
    If it is NOT available on Lenny I'll download its package on PSPP website. I need the complete package and dependencies for installing/compiling the package. Thanks


    B.R.
    satimis

  4. #4
    Linux Guru reed9's Avatar
    Join Date
    Feb 2009
    Location
    Boston, MA
    Posts
    4,653
    I'm not familiar with the policy flag for apt-cache. I would say 1) have you updated your repos and 2) what happens if you just try to install it?

    Code:
    su -
    apt-get update && apt-get install pspp
    By the way, you don't need separate lines for non-free and contrib. It can be
    Code:
    deb http://ftp.us.debian.org/debian/ lenny main contrib non-free

  5. #5
    Linux Guru
    Join Date
    Sep 2004
    Posts
    1,532
    Quote Originally Posted by reed9 View Post
    I'm not familiar with the policy flag for apt-cache. I would say 1) have you updated your repos and 2) what happens if you just try to install it?
    Hi reed9,

    I forgot running "apt-get update" after editng "sources.list". Now I found PSPP on repo. Thanks


    By the way, you don't need separate lines for non-free and contrib. It can be
    Code:
    deb http://ftp.us.debian.org/debian/ lenny main contrib non-free
    I suppose you meant combining following 2 lines;
    Code:
    deb http://ftp.us.debian.org/debian/ lenny non-free
    deb http://ftp.us.debian.org/debian/ lenny contrib
    as one line;
    Code:
    deb http://ftp.us.debian.org/debian/ lenny main contrib non-free
    ?

    Thanks


    B.R.
    satimis

  6. #6
    Linux Guru reed9's Avatar
    Join Date
    Feb 2009
    Location
    Boston, MA
    Posts
    4,653
    I suppose you meant combining following 2 lines;
    Code:

    deb Index of /debian lenny non-free
    deb Index of /debian lenny contrib

    as one line;
    Code:

    deb Index of /debian lenny main contrib non-free

    ?
    Yup, that's what I meant. Glad you got it working.

  7. #7
    Linux Guru
    Join Date
    Sep 2004
    Posts
    1,532
    Quote Originally Posted by reed9 View Post
    Yup, that's what I meant. Glad you got it working.
    Hi reed9,

    Noted with thanks

    satimis

Posting Permissions

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