For future reference, you can search the list of all available packages with
Code: Select all
pi@raspberrypi ~ $ apt-cache search pptp
bcrelay - Broadcast relay daemon
gosa-plugin-pptp - pptp plugin for GOsa²
gosa-plugin-pptp-schema - LDAP schema for GOsa² pptp plugin
kvpnc - vpn clients frontend for KDE4
network-manager-pptp - network management framework (PPTP plugin core)
network-manager-pptp-gnome - network management framework (PPTP plugin GNOME GUI)
pptp-linux - Point-to-Point Tunneling Protocol (PPTP) Client
pptpd - PoPToP Point to Point Tunneling Server
and then see if the package name you are interested in is actually installed with
Code: Select all
pi@raspberrypi ~ $ dpkg-query --status pptpd
dpkg-query: package 'pptpd' is not installed and no information is available
Use dpkg --info (= dpkg-deb --info) to examine archive files,
and dpkg --contents (= dpkg-deb --contents) to list their contents.
In this case "pptpd" is not installed, and has never been installed. If the package is installed the output looks like this (in this case, for the package 'bash'):
Code: Select all
pi@raspberrypi ~ $ dpkg-query --status bash
Package: bash
Essential: yes
Status: install ok installed
Priority: required
Section: shells
Installed-Size: 3778
Maintainer: Matthias Klose <doko@debian.org>
Architecture: armhf
Multi-Arch: foreign
Version: 4.2+dfsg-0.1+deb7u3
Replaces: bash-completion (<< 20060301-0), bash-doc (<= 2.05-1)
Depends: base-files (>= 2.1.12), debianutils (>= 2.15)
Pre-Depends: dash (>= 0.5.5.1-2.2), libc6 (>= 2.13-28), libgcc1 (>= 1:4.4.0), libtinfo5
Recommends: bash-completion (>= 20060301-0)
Suggests: bash-doc
Conflicts: bash-completion (<< 20060301-0)
Conffiles:
/etc/skel/.bash_logout 22bfb8c1dd94b5f3813a2b25da67463f
/etc/skel/.bashrc d5f897a5ec2b5f55b412004e7715977f
/etc/skel/.profile ecb6d3479ac3823f1da7f314d871989b
/etc/bash.bashrc 6334b485d48f479d8de056806b274cd3
Description: GNU Bourne Again SHell
Bash is an sh-compatible command language interpreter that executes
commands read from the standard input or from a file. Bash also
incorporates useful features from the Korn and C shells (ksh and csh).
.
Bash is ultimately intended to be a conformant implementation of the
IEEE POSIX Shell and Tools specification (IEEE Working Group 1003.2).
.
The Programmable Completion Code, by Ian Macdonald, is now found in
the bash-completion package.
Homepage: http://tiswww.case.edu/php/chet/bash/bashtop.html