Code: Alles auswählen
apt-file list <paket>
Bei mir wird jedenfalls (Beispiel) mit
Code: Alles auswählen
apt-file list gpm
- etc/gpm.conf
Code: Alles auswählen
apt-file list <paket>
Code: Alles auswählen
apt-file list gpm
pdreker hat geschrieben:dpkg -L PAKETNAME
In /var/lib/dpkg/info/*.list liegen die "Rohdaten"
Patrick
Code: Alles auswählen
#! /bin/sh
set -e
create_gpm_conf ()
{
ARCH=$(dpkg --print-installation-architecture)
case $ARCH in
m68k)
device=/dev/mouse;
type=bm;;
sparc)
device=/dev/sunmouse;
type=sun;;
i386|*)
device=/dev/psaux;
type=autops2;;
esac;
cat > /etc/gpm.conf <<EOF
# /etc/gpm.conf - configuration file for gpm(1)
#
# If mouse response seems to be to slow, try using
# responsiveness=15. append can contain any random arguments to be
# appended to the commandline.
#
Sicher? Bei der Installation anscheinend doch.pdreker hat geschrieben:Hellsehen kann das System noch nicht...
Patrick