Unterstützung für das Kompilieren PRI Karte und Kernel Sourc

Welches Modul/Treiber für welche Hardware, Kernel compilieren...
Antworten
thokern
Beiträge: 5
Registriert: 08.05.2006 00:42:32

Unterstützung für das Kompilieren PRI Karte und Kernel Sourc

Beitrag von thokern » 11.05.2007 16:23:10

Auf Debian Etch Kernel 2.6.18 (2 GHz i386 / 1 GB RAM) möchte ich eine DIVA SERVER PRI Karte installieren. Die Karte ist in der Maschine und ich dachte ich hätte die Anweisungen des Herstellers (Dialogic) befolgt und könnte das ./Build Kommando erfolgreich ausführen. Da ich die Zusammenhang zwischen linux-source, kernel-headers etc nicht vollständig verstehe und ich schon verschiedene Varianten mit .config Dateien und Makefile Änderungen experimentiert habe wäre eine kleine Starthilfe schön:

*Welche Pakete müssen denn wirklich zum kompalieren vorhanden sein?
*Welche Links müssen tatsächlich angelegt sein?
*Warum existiert im linux Quellverzeichnis keine .xconfig wohl aber in den kernel-headers?
*Was ist mit Modulen zu beachten?

Für jede Hilfe dankbar!!!!

Installationsanleitung:

Code: Alles auswählen

Building Diva Server for Linux from Source

If there is no binary version of the driver for your specific kernel, or if you want to use the very latest driver available, then it will be necessary to download the source RPM, and then compile it. 

The latest source rpm can be obtained via the 'download software' link at 
http://www.eicon.com/worldwide/products/MediaGateways/DivaServerforLinux.htm 

After downloading the latest source driver, you will need to build it using the following instructions. 

IMPORTANT: Perform all steps while logged in as root. 

Requirements: 
•	Kernel development tools must be installed. This includes: 
o	modutils (package module-init-tools) 
o	ncurses, ncurses-devel headers and libraries (package ncurses resp. libncurses) 
o	c, c++ compiler (package gcc. gcc-g++) 
o	make (package make) 
NOTE: Under your distribution the actual packages may have different names. Please use your package manager to identify the correct package to install. For example the c++ compiler package is called gcc-c++ under Fedora Core, but g++ under Debian. 
•	Kernel source tree must be installed as well. The sources must match the currently running kernel. Please refer to your distribution on how to install your kernel source as this differs between distributions. If in doubt google "kernel source tree" and your distribution name. 
•	Exception: If cross compiling, the following requirements must be met: 
o	/usr/src/linux must point to your kernel source directory 
o	A valid .config for the target system must be present in this path 
o	A valid version.h must be present 
•	for Slackware systems the following packages must be installed: 
o	rpm (located in section ap) 
o	cpio (located in section a) 
o	diffutils (located in section ap) 
•	for Debian systems the following package must be installed: 
o	xinetd 


Several tools exist to find out whether these packages are installed: 
•	In RPM based systems use: 
 rpm -qa |grep <package name>
to list the status of the specified package. 
•	In Slackware based systems use pkgtool and have a look in the section view whether the packages are installed. 
•	In Debian based systems use
 dpkg -l <name*>
to list all packages that include the specified name if you do not know the correct package name. 


Check if you have the suitable sources for your installed kernel version. (if you are cross-compiling, see the note above). 
•	To find out if source and kernel have the same version number do the following: 
•	Type "uname -r" to display the current kernel version. 
•	List the contents of "/usr/src/". There must be a folder e.g. "linux-2.4.27-1" and a link named "linux" pointing into this directory. It should have the same name as the current kernel version. 
•	If this link does not exist, create it pointing to the correct kernel source location:
 ln -s /usr/src/<kernel source directory> /usr/src/linux


The current kernel configuration file ".config" should be in the kernel source path. If the build procedure cannot find this configuration file, it will try to locate the config file of the running kernel in /boot or /proc/config.gz and use this one. 

 

Build Procedure: 

Install the source package: 
•	In RPM based systems, type: 
 rpm -ivh divas4linux_EICON-xxx.xxx.rpm 
Do not use the graphical RPM Manager, otherwise the help screen with information about the build procedure will not be displayed after the installation. 
•	In Debian based system, type: 
 dpkg -i divas4linux-eicon-xxx.xxx.deb     
•	In Slackware based systems: 
o	To list the dependencies use the following command: 
 rpm -i --test divas4linux_EICON-xxx.xxx.i386.rpm  
o	update the database first to find all installed files with: 
 updatedb
o	Check each dependency whether all needed files and libraries are installed: 
 locate 
o	Extract the data content of the rpm into a cpio file: 
 rpm2cpio divas4linux_EICON-xxx.xxx.i386.rpm > divas.cpio
o	Extract the rpm pre- and postinstall scripts into a file: 
rpm -q --scripts -p divas4linux_EICON-xxx.xxx.i386.rpm > pscripts
o	Do not delete this file. It is needed for the deinstallation procedure. 
o	Change to the root directory and extract the data content of the cpio file into the filesystem: 
o	 cd /
 cpio -i -make-directories < <path where the divas.cpio is>
o	Search in the pscripts file for "postinstall script (through /bin/sh)". The lines below with sh at the beginning must be executed in a commandline. For example: 
o	 sh /usr/lib/eicon/divas/cfg_util.sh 3
 sh /usr/lib/eicon/divas/cfg_util.sh 7
o	To start the driver automatically do the following: 
o	Create two directories: "/etc/rc.d/rc3.d" and /etc/rc.d/rc5.d" 
o	Create two links: 
o	 ln -s /usr/lib/eicon/divas/Start /etc/rc.d/rc3.d/S03DIVAS4LINUX
 ln -s /usr/lib/eicon/divas/Start /etc/rc.d/rc5.d/S03DIVAS4LINUX
•	Change to the directory "cd /usr/lib/eicon/divas/src". 
•	Invoke "./Build". 
•	The build procedure accepts the following switches: 
o	-mrproper: A make mrproper will be performed in the kernel source dir This removes any .config files of previous runs and tries to locate these in /boot and /proc/config.gz. 
Important: Any applied configuration changes will be deleted! 
o	-rpm: Builds a binary rpm for your configuration. 
o	-nowait: The build procedure will start immediately without waiting 15 seconds for user intervention. 
•	The build procedure will locate the kernel sources and .config itself. 
•	Accept the License Agreement to build the Eicon Diva TTY Driver. 
•	All drivers will be installed in the directory "/usr/lib/eicon/divas". 
•	If errors occur, review the build log file "divas.log" in the build directory. 
•	Change to the directory "cd /usr/lib/eicon/divas". 
•	Use "./Config" to configure the Diva Server adapter(s) or follow the notes to activate the web based configuration. 
•	Use "./Start" and "./Stop" to start/stop the Diva Server adapter(s) manually. 


Deinstalling Diva Server for Linux 

For RPM based systems, type: 
 rpm -qa |grep divas |xargs rpm -e 
or 
 rpm -e divas4linux_EICON-xxx.xxx-1 

For Debian based systems: 
Uninstall package with: 
 dpkg -r divas4linux-eicon

For Slackware based systems: 
•	Create a file "preuninstall" and "postuninstall". 
•	Open the file "pscripts" created during installation (see above). 
•	Copy all lines between "preuninstall script (through /bin/sh)" and "postuninstall script (through /bin/sh)" in the file "preuninstall". 
•	Insert the following line at the beginning: "#!/bin/sh". 
•	Copy all lines below "postuninstall script (through /bin/sh)" in the file "postuninstall". 
•	Insert the following line at the beginning: "#!/bin/sh". 
•	Make the scripts executable (chmod). 
•	Run preuninstall script. 
•	Delete the following folders along with their subfolders:
/usr/lib/eicon
/usr/doc/packages/divas4linux_EICON 
•	Run postuninstall script. 

Note: On most Debian systems inetd fails to invoke the diva_httpd configuration webserver. It is generally recommended to use xinetd, which does not show this behaviour. 
So sieht es auf meiner Maschine aus:

Code: Alles auswählen

uname -r
2.6.18-4-686

ls -al /usr/src
insgesamt 62068
drwxrwsr-x 12 root  src       4096 2007-05-07 16:20 .
drwxr-xr-x 13 root  root      4096 2007-05-04 14:37 ..
drwxr-xr-x 24 root  root      4096 2007-04-27 15:10 asterisk-1.4.3
drwxr-xr-x  8 root  root      4096 2007-04-27 15:14 asterisk-addons-1.4.1
drwxr-sr-x  8 root  src      12288 2007-04-27 15:16 asterisk-core-sounds-en-alaw-current.tar.gz_FILES
drwxr-xr-x  3 tkern tkern     4096 2005-12-07 00:36 asterisk-sounds-1.2.1
-rwxr--r--  1 root  src   22036322 2007-05-03 16:52 divas4linux_EICON-106.10-1.deb
drwxr-xr-x  2 tkern tkern     4096 2007-04-27 15:04 libpri-1.4.0
lrwxrwxrwx  1 root  src         35 2007-05-07 16:20 linux -> /usr/src/linux-headers-2.6.18-4-686
lrwxrwxrwx  1 root  src         35 2007-05-07 16:19 linux-2.6 -> /usr/src/linux-headers-2.6.18-4-686
drwxr-xr-x 17 root  root      4096 2007-05-07 16:16 linux-headers-2.6.18-4
drwxr-xr-x  4 root  root      4096 2007-05-07 16:16 linux-headers-2.6.18-4-686
drwxr-xr-x  3 root  root      4096 2007-05-07 16:16 linux-kbuild-2.6.18
drwxr-xr-x 19 root  root      4096 2007-04-09 18:49 linux-source-2.6.18
-rw-r--r--  1 root  root  41381108 2007-04-09 20:10 linux-source-2.6.18.tar.bz2
drwxr-xr-x 13 root  root     12288 2007-04-27 15:03 zaptel-1.4.2.1

ls -al /lib/modules/2.6.18-4-686
insgesamt 1412
drwxr-xr-x 4 root root   4096 2007-05-07 16:16 .
drwxr-xr-x 3 root root   4096 2007-03-22 16:24 ..
lrwxrwxrwx 1 root root     35 2007-05-07 16:16 build -> /usr/src/linux-headers-2.6.18-4-686
drwxr-xr-x 9 root root   4096 2007-03-22 16:24 kernel
drwxr-xr-x 5 root root   4096 2007-04-27 15:03 misc
-rw-r--r-- 1 root root 300615 2007-05-03 18:37 modules.alias
-rw-r--r-- 1 root root     69 2007-05-03 18:37 modules.ccwmap
-rw-r--r-- 1 root root 336714 2007-05-03 18:37 modules.dep
-rw-r--r-- 1 root root    813 2007-05-03 18:37 modules.ieee1394map
-rw-r--r-- 1 root root    730 2007-05-03 18:37 modules.inputmap
-rw-r--r-- 1 root root  21839 2007-05-03 18:37 modules.isapnpmap
-rw-r--r-- 1 root root     74 2007-05-03 18:37 modules.ofmap
-rw-r--r-- 1 root root 238701 2007-05-03 18:37 modules.pcimap
-rw-r--r-- 1 root root   1135 2007-05-03 18:37 modules.seriomap
-rw-r--r-- 1 root root 139298 2007-05-03 18:37 modules.symbols
-rw-r--r-- 1 root root 335039 2007-05-03 18:37 modules.usbmap



dpkg -l
Gewünscht=Unbekannt/Installieren/R=Entfernen/P=Säubern/Halten
| Status=Nicht/Installiert/Config/U=Entpackt/Fehlgeschl. Konf./Halb install.
|/ Fehler?=(kein)/Halten/R=Neuinst notw/X=beide (Status, Fehler: GROSS=schlecht)
||/ Name                              Version                             Beschreibung
+++-=================================-===================================-============================================
ii  acpi                              0.09-1                              displays information on ACPI devices
ii  acpid                             1.0.4-5                             Utilities for using ACPI power management
ii  adduser                           3.102                               Add and remove users and groups
ii  alacarte                          0.8-5                               easy GNOME menu editing tool
ii  alsa-base                         1.0.13-5                            ALSA driver configuration files
ii  alsa-utils                        1.0.13-2                            ALSA utilities
ii  anacron                           2.3-13                              cron-like program that doesn't go by time
ii  apache2                           2.2.3-4                             Next generation, scalable, extendable web se
ii  apache2-mpm-worker                2.2.3-4                             High speed threaded model for Apache HTTPD 2
ii  apache2-utils                     2.2.3-4                             utility programs for webservers
ii  apache2.2-common                  2.2.3-4                             Next generation, scalable, extendable web se
ii  apt                               0.6.46.4-0.1                        Advanced front-end for dpkg
ii  apt-utils                         0.6.46.4-0.1                        APT utility programs
ii  aptitude                          0.4.4-4                             terminal-based apt frontend
ii  at                                3.1.10                              Delayed job execution and batch processing
ii  avahi-daemon                      0.6.16-3etch1                       Avahi mDNS/DNS-SD daemon
ii  base-files                        4                                   Debian base system miscellaneous files
ii  base-passwd                       3.5.11                              Debian base system master password and group
ii  bash                              3.1dfsg-8                           The GNU Bourne Again SHell
ii  bc                                1.06-20                             The GNU bc arbitrary precision calculator la
ii  bind9-host                        9.3.4-2                             Version of 'host' bundled with BIND 9.X
ii  binutils                          2.17-3                              The GNU assembler, linker and binary utiliti
ii  bison                             2.3.dfsg-4                          A parser generator that is compatible with Y
ii  bittorrent                        3.4.2-10                            Scatter-gather network file transfer
ii  bluez-gnome                       0.6-1                               Bluetooth utilities for GNOME
ii  bsdmainutils                      6.1.6                               collection of more utilities from FreeBSD
ii  bsdutils                          2.12r-19                            Basic utilities from 4.4BSD-Lite
ii  bsh                               2.0b4-4                             Java scripting environment (BeanShell) Versi
ii  bug-buddy                         2.14.0-4                            GNOME Desktop Environment bug reporting tool
ii  busybox                           1.1.3-4                             Tiny utilities for small and embedded system
ii  bzip2                             1.0.3-6                             high-quality block-sorting file compressor -
ii  ca-certificates                   20070303                            Common CA Certificates PEM files
ii  capplets-data                     2.14.2-7                            configuration applets for GNOME 2 - data fil
ii  cdrdao                            1.2.2-5                             records CDs in Disk-At-Once (DAO) mode
ii  comerr-dev                        2.1-1.39+1.40-WIP-2006.11.14+dfsg-2 common error description library - headers a
ii  configure-debian                  1.0.2                               central configuration program for packages u
ii  console-common                    0.7.69                              Basic infrastructure for text console config
ii  console-data                      1.01-7                              Keymaps, fonts, charset maps, fallback table
ii  console-tools                     0.2.3dbs-65                         Linux console and font utilities
ii  coreutils                         5.97-5.3                            The GNU core utilities
ii  cpio                              2.6-17                              GNU cpio -- a program to manage archives of 
ii  cpp                               4.1.1-15                            The GNU C preprocessor (cpp)
ii  cpp-4.1                           4.1.1-21                            The GNU C preprocessor
ii  cron                              3.0pl1-100                          management of regular background processing
ii  cupsys                            1.2.7-4                             Common UNIX Printing System(tm) - server
ii  cupsys-bsd                        1.2.7-4                             Common UNIX Printing System(tm) - BSD comman
ii  cupsys-client                     1.2.7-4                             Common UNIX Printing System(tm) - client pro
ii  cupsys-common                     1.2.7-4                             Common UNIX Printing System(tm) - common fil
ii  cupsys-driver-gutenprint          5.0.0-3                             printer drivers for CUPS
ii  cvs                               1.12.13-8                           Concurrent Versions System
ii  cyrus-sasl2-doc                   2.1.22.dfsg1-8                      Documentation for Cyrus SASL library and uti
ii  dbus                              1.0.2-1                             simple interprocess messaging system
ii  dbus-1-utils                      1.0.2-1                             simple interprocess messaging system (utilit
ii  dc                                1.06-20                             The GNU dc arbitrary precision reverse-polis
ii  debconf                           1.5.11                              Debian configuration management system
ii  debconf-i18n                      1.5.11                              full internationalization support for debcon
ii  debian-archive-keyring            2007.02.19                          GnuPG archive keys of the Debian archive
ii  debianutils                       2.17                                Miscellaneous utilities specific to Debian
ii  defoma                            0.11.10-0.1                         Debian Font Manager -- automatic font config
ii  deskbar-applet                    2.14.2-4.2                          universal search and navigation bar for GNOM
ii  desktop-base                      4.0.1                               common files for the Debian Desktop
ii  desktop-file-utils                0.11-1                              Utilities for .desktop files
ii  dhcdbd                            2.0-3                               D-Bus interface to the ISC DHCP client
ii  dhcp3-client                      3.0.4-13                            DHCP Client
ii  dhcp3-common                      3.0.4-13                            Common files used by all the dhcp3* packages
ii  dictionaries-common               0.70.10                             Common utilities for spelling dictionary too
ii  diff                              2.8.1-11                            File comparison utilities
ii  ding                              1.4-4                               Graphical dictionary lookup program for Unix
ii  discover1                         1.7.19                              hardware identification system
ii  discover1-data                    2.2007.02.02                        Data lists for Discover hardware detection s
ii  divas4linux+eicon                 106.10-1                            Support for Eicon DIVA ISDN Adapters
ii  dmidecode                         2.8-4                               Dump Desktop Management Interface data
ii  dnsutils                          9.3.4-2                             Clients provided with BIND
ii  doc-debian                        3.1.5                               Debian Project documentation, Debian FAQ and
ii  doc-linux-de                      2003.10-4                           Linux HOWTOs in German
ii  doc-linux-text                    2007.02-1                           Linux HOWTOs and FAQs in ASCII format
ii  docbook-xml                       4.4-5                               standard XML documentation system, for softw
ii  doxygen                           1.5.1-1                             Documentation system for C, C++, Java, Pytho
ii  dpkg                              1.13.25                             package maintenance system for Debian
ii  dpkg-dev                          1.13.25                             package building tools for Debian
ii  dselect                           1.13.25                             user tool to manage Debian packages
ii  dvd+rw-tools                      7.0-4                               DVD+-RW/R tools
ii  e2fslibs                          1.39+1.40-WIP-2006.11.14+dfsg-2     ext2 filesystem libraries
ii  e2fslibs-dev                      1.39+1.40-WIP-2006.11.14+dfsg-2     ext2 filesystem libraries - headers and stat
ii  e2fsprogs                         1.39+1.40-WIP-2006.11.14+dfsg-2     ext2 file system utilities and libraries
ii  ed                                0.2-20                              The classic unix line editor
ii  eject                             2.1.4-3                             ejects CDs and operates CD-Changers under Li
ii  ekiga                             2.0.3-6                             H.323 and SIP compatible VOIP client
ii  eog                               2.16.3-3                            Eye of Gnome graphics viewer program
ii  epiphany-browser                  2.14.3-6                            Intuitive GNOME web browser
ii  epiphany-extensions               2.14.1.1-3                          Extensions for Epiphany web browser
ii  esound                            0.2.36-3                            Enlightened Sound Daemon - Support binaries
ii  esound-common                     0.2.36-3                            Enlightened Sound Daemon - Common files
ii  evince                            0.4.0-5                             Document (postscript, pdf) viewer
ii  evolution                         2.6.3-6                             groupware suite with mail client and organiz
ii  evolution-common                  2.6.3-6                             architecture independent files for Evolution
ii  evolution-data-server             1.6.3-5                             evolution database backend server
ii  evolution-data-server-common      1.6.3-5                             architecture independent files for Evolution
ii  evolution-exchange                2.6.3.dfsg-1                        Exchange plugin for the Evolution groupware 
ii  evolution-plugins                 2.6.3-6                             standard plugins for Evolution
ii  evolution-webcal                  2.6.0-1+b1                          webcal: URL handler for GNOME and Evolution
ii  exim4                             4.63-17                             metapackage to ease exim MTA (v4) installati
ii  exim4-base                        4.63-17                             support files for all exim MTA (v4) packages
ii  exim4-config                      4.63-17                             configuration for the exim MTA (v4)
ii  exim4-daemon-light                4.63-17                             lightweight exim MTA (v4) daemon
ii  fast-user-switch-applet           2.14.2-1                            Applet for the GNOME panel providing a menu 
ii  file                              4.17-5etch1                         Determines file type using "magic" numbers
ii  file-roller                       2.14.4-2                            an archive manager for GNOME
ii  findutils                         4.2.28-1                            utilities for finding files--find, xargs, an
ii  finger                            0.17-10                             user information lookup program
ii  fontconfig                        2.4.2-1.2                           generic font configuration library - support
ii  fontconfig-config                 2.4.2-1.2                           generic font configuration library - configu
ii  foomatic-db                       20061031-1                          linuxprinting.org printer support - database
ii  foomatic-db-engine                3.0.2-20061031-1                    linuxprinting.org printer support - programs
ii  foomatic-db-gutenprint            5.0.0-3                             linuxprinting.org printer support - database
ii  foomatic-db-hpijs                 20061031-1                          linuxprinting.org printer support - database
ii  foomatic-filters                  3.0.2-20061031-1.2                  linuxprinting.org printer support - filters
ii  foomatic-filters-ppds             20061104-1                          linuxprinting.org printer support - prebuilt
ii  foomatic-gui                      0.7.7                               GNOME interface for configuring the Foomatic
ii  ftp                               0.17-16                             The FTP client
ii  g++                               4.1.1-15                            The GNU C++ compiler
ii  g++-4.1                           4.1.1-21                            The GNU C++ compiler
ii  gaim                              2.0.0+beta5-10                      multi-protocol instant messaging client
ii  gaim-data                         2.0.0+beta5-10                      multi-protocol instant messaging client - da
ii  gcalctool                         5.8.25-1                            A GTK2 desktop calculator
ii  gcc                               4.1.1-15                            The GNU C compiler
ii  gcc-3.4-base                      3.4.6-5                             The GNU Compiler Collection (base package)
ii  gcc-4.1                           4.1.1-21                            The GNU C compiler
ii  gcc-4.1-base                      4.1.1-21                            The GNU Compiler Collection (base package)
ii  gcj-4.1-base                      4.1.1-20                            The GNU Compiler Collection (gcj base packag
ii  gconf-editor                      2.16.0-2                            An editor for the GConf configuration system
ii  gconf2                            2.16.1-1                            GNOME configuration database system (support
ii  gconf2-common                     2.16.1-1                            GNOME configuration database system (common 
ii  gdb                               6.4.90.dfsg-1                       The GNU Debugger
ii  gdebi                             0.1.6                               Simple tool to install deb files
ii  gdm                               2.16.4-1                            GNOME Display Manager
ii  gedit                             2.14.4-8                            official text editor of the GNOME desktop en
ii  gedit-common                      2.14.4-8                            official text editor of the GNOME desktop en
ii  genisoimage                       1.1.2-1                             Creates ISO-9660 CD-ROM filesystem images
ii  gettext-base                      0.16.1-1                            GNU Internationalization utilities for the b
ii  gij                               4.1.1-15                            The GNU Java bytecode interpreter
ii  gij-4.1                           4.1.1-20                            The GNU Java bytecode interpreter
ii  gimp                              2.2.13-1                            The GNU Image Manipulation Program
ii  gimp-data                         2.2.13-1                            Data files for The GIMP
ii  gimp-print                        5.0.0-3                             print plugin for the GIMP
ii  gksu                              2.0.0-1                             graphical frontend to su
ii  gnome-about                       2.14.3-2                            The GNOME about box
ii  gnome-applets                     2.14.3-4                            Various applets for GNOME 2 panel - binary f
ii  gnome-applets-data                2.14.3-4                            Various applets for GNOME 2 panel - data fil
ii  gnome-backgrounds                 2.16.2-1                            a set of backgrounds packaged with the GNOME
ii  gnome-btdownload                  0.0.25-1                            Gnome interface for 'executing' BitTorrent f
ii  gnome-cards-data                  2.16.3-1                            data files for the GNOME card games
ii  gnome-control-center              2.14.2-7                            utilities to configure the GNOME desktop
ii  gnome-core                        2.14.3.6                            The GNOME Desktop Environment -- essential c
ii  gnome-cups-manager                0.31-3                              CUPS printer admin tool for GNOME
ii  gnome-desktop-data                2.14.3-2                            Common files for GNOME 2 desktop apps
ii  gnome-desktop-environment         2.14.3.6                            The GNOME Desktop Environment
ii  gnome-doc-utils                   0.6.1-3                             a collection of documentation utilities for 
ii  gnome-games                       2.16.3-1                            games for the GNOME desktop
ii  gnome-games-data                  2.16.3-1                            data files for the GNOME games
ii  gnome-icon-theme                  2.14.2-2                            GNOME Desktop icon theme
ii  gnome-keyring                     0.6.0-3                             GNOME keyring services (daemon and tools)
ii  gnome-keyring-manager             2.16.0-2                            keyring management program for the GNOME des
ii  gnome-media                       2.14.2-4                            GNOME media utilities
ii  gnome-media-common                2.14.2-4                            GNOME media utilities - common files
ii  gnome-menus                       2.16.1-3                            an implementation of the freedesktop menu sp
ii  gnome-mime-data                   2.4.3-1                             base MIME and Application database for GNOME
ii  gnome-netstatus-applet            2.12.0-5+b2                         Network status applet for GNOME 2
ii  gnome-nettool                     2.14.2-1                            network information tool for GNOME
ii  gnome-panel                       2.14.3-5                            launcher and docking facility for GNOME 2
ii  gnome-panel-data                  2.14.3-5                            common files for GNOME 2 panel
ii  gnome-power-manager               2.14.3-3+b1                         frontend for gnome-powermanager
ii  gnome-screensaver                 2.14.3-3                            GNOME screen saver and locker
ii  gnome-session                     2.14.3-5                            The GNOME 2 Session Manager
ii  gnome-system-monitor              2.14.5-1                            Process viewer and system resource monitor f
ii  gnome-system-tools                2.14.0-3                            Cross-platform configuration utilities for G
ii  gnome-terminal                    2.14.2-1                            The GNOME 2 terminal emulator application
ii  gnome-terminal-data               2.14.2-1                            Data files for the GNOME terminal emulator
ii  gnome-themes                      2.14.3-1                            official themes for the GNOME 2 desktop
ii  gnome-themes-extras               0.9.0-5                             various themes for the GNOME 2 desktop
ii  gnome-user-guide                  2.14.2-2                            GNOME user's guide
ii  gnome-utils                       2.14.0.dfsg-5                       GNOME desktop utilities
ii  gnome-volume-manager              1.5.15-1+b1                         GNOME daemon to auto-mount and manage media 
ii  gnomebaker                        0.6.0-7                             application for CD/DVD creation in the GNOME
ii  gnu-efi                           3.0c-1                              Library for developing EFI applications
ii  gnupg                             1.4.6-2                             GNU privacy guard - a free PGP replacement
ii  gparted                           0.2.5-2                             GNOME partition editor
ii  gpgv                              1.4.6-2                             GNU privacy guard - signature verification t
ii  grdesktop                         0.23-3                              GNOME frontend for the rdesktop client
ii  grep                              2.5.1.ds2-6                         GNU grep, egrep and fgrep
ii  groff-base                        1.18.1.1-12                         GNU troff text-formatting system (base syste
ii  grub                              0.97-27                             GRand Unified Bootloader
ii  gs-common                         0.3.11                              Common files for different Ghostscript relea
ii  gs-esp                            8.15.3.dfsg.1-1                     The Ghostscript PostScript interpreter - ESP
ii  gsfonts                           8.11+urwcyr1.0.7~pre41-1            Fonts for the Ghostscript interpreter(s)
ii  gstreamer0.10-alsa                0.10.10-4                           GStreamer plugin for ALSA
ii  gstreamer0.10-esd                 0.10.4-4                            GStreamer plugin for ESD
ii  gstreamer0.10-ffmpeg              0.10.1-7                            FFmpeg plugin for GStreamer
ii  gstreamer0.10-gnomevfs            0.10.10-4                           GStreamer plugin for GnomeVFS
ii  gstreamer0.10-plugins-base        0.10.10-4                           GStreamer plugins from the "base" set
ii  gstreamer0.10-plugins-good        0.10.4-4                            GStreamer plugins from the "good" set
ii  gstreamer0.10-plugins-ugly        0.10.4-5                            GStreamer plugins from the "ugly" set
ii  gtk2-engines                      2.8.2-1                             theme engines for GTK+ 2.x
ii  gtk2-engines-pixbuf               2.8.20-7                            Pixbuf-based theme for GTK+ 2.x
ii  gtk2-engines-spherecrystal        0.7-14                              A blue vector theme for GTK+ 2.x
ii  gtkhtml3.8                        3.12.1-2                            HTML rendering/editing library - bonobo comp
ii  gucharmap                         1.6.0-1                             Unicode character picker and font browser
ii  guile-1.6-libs                    1.6.8-6                             Main Guile libraries
ii  gzip                              1.3.5-15                            The GNU compression utility
ii  hal                               0.5.8.1-9                           Hardware Abstraction Layer
ii  hicolor-icon-theme                0.8-4                               default fallback theme for FreeDesktop.org i
ii  hostname                          2.93                                utility to set/show the host name or domain 
ii  hotkey-setup                      0.1-17                              auto-configures laptop hotkeys
ii  hpijs                             2.6.10+1.6.10-3                     HP Linux Printing and Imaging - gs IJS drive
ii  hpijs-ppds                        2.6.10+1.6.10-3                     HP Linux Printing and Imaging - HPIJS PPD fi
ii  hplip                             1.6.10-3                            HP Linux Printing and Imaging System (HPLIP)
ii  hplip-data                        1.6.10-3                            HP Linux Printing and Imaging - data files
ii  iamerican                         3.1.20.0-4.3                        An American English dictionary for ispell
ii  ibritish                          3.1.20.0-4.3                        A British English dictionary for ispell
ii  icedax                            1.1.2-1                             Creates WAV files from audio CDs
ii  iceweasel                         2.0.0.3-1                           lightweight web browser based on Mozilla
ii  iceweasel-gnome-support           2.0.0.3-1                           Support for Gnome in Iceweasel
ii  iceweasel-l10n-de                 2.0.0.3+debian-1                    German language package for Iceweasel
ii  ifupdown                          0.6.8                               high level tools to configure network interf
ii  ijsgutenprint                     5.0.0-3                             inkjet server - Ghostscript driver for Guten
ii  industrial-cursor-theme           0.6.1.3                             flat-looking cursor theme for X
ii  info                              4.8.dfsg.1-4                        Standalone GNU Info documentation browser
ii  ingerman                          20051113-5                          New German orthography dictionary for ispell
ii  initramfs-tools                   0.85g                               tools for generating an initramfs
ii  initscripts                       2.86.ds1-38                         Scripts for initializing and shutting down t
ii  installation-report               2.29                                system installation report
ii  iproute                           20061002-3                          Professional tools to control the networking
ii  iptables                          1.3.6.0debian1-5                    administration tools for packet filtering an
ii  iputils-arping                    20020927-6                          Tool to send ICMP echo requests to an ARP ad
ii  iputils-ping                      20020927-6                          Tools to test the reachability of network ho
ii  iso-codes                         1.0a-1                              ISO language, territory, currency codes and 
ii  ispell                            3.1.20.0-4.3                        International Ispell (an interactive spellin
ii  kde-i18n-de                       3.5.5-1                             German (de) internationalized (i18n) files f
ii  kdelibs-data                      3.5.5a.dfsg.1-8                     core shared data for all KDE applications
ii  kdelibs4c2a                       3.5.5a.dfsg.1-8                     core libraries and binaries for all KDE appl
ii  klibc-utils                       1.4.34-1                            small statically-linked utilities built with
ii  klogd                             1.4.1-18                            Kernel Logging Daemon
ii  language-env                      0.68                                simple configuration tool for native languag
ii  lapack3                           3.0.20000531a-6                     library of linear algebra routines 3 - share
ii  laptop-detect                     0.12.1                              attempt to detect a laptop
ii  less                              394-4                               Pager program similar to more
ii  liba52-0.7.4                      0.7.4-7                             Library for decoding ATSC A/52 streams
ii  libaa1                            1.4p5-30                            ascii art library
ii  libacl1                           2.2.41-1                            Access control list shared library
ii  libao2                            0.8.6-4                             Cross Platform Audio Output Library
ii  libapm1                           3.2.2-8.1                           Library for interacting with APM driver in k
ii  libapr1                           1.2.7-8.2                           The Apache Portable Runtime Library
ii  libaprutil1                       1.2.7+dfsg-2                        The Apache Portable Runtime Utility Library
ii  libart-2.0-2                      2.3.17-1                            Library of functions for 2D graphics - runti
ii  libarts1c2a                       1.5.5-1                             aRts sound system core components
ii  libartsc0                         1.5.5-1                             aRts sound system C support library
ii  libasound2                        1.0.13-2                            ALSA library
ii  libaspell15                       0.60.4-4                            GNU Aspell spell-checker runtime library
ii  libatk1.0-0                       1.12.4-3                            The ATK accessibility toolkit
ii  libatm1                           2.4.1-17                            shared library for ATM (Asynchronous Transfe
ii  libattr1                          2.4.32-1                            Extended attribute shared library
ii  libaudio2                         1.8-4                               The Network Audio System (NAS). (shared libr
ii  libaudiofile0                     0.2.6-6                             Open-source version of SGI's audiofile libra
ii  libavahi-client3                  0.6.16-3etch1                       Avahi client library
ii  libavahi-common-data              0.6.16-3etch1                       Avahi common data files
ii  libavahi-common3                  0.6.16-3etch1                       Avahi common library
ii  libavahi-compat-howl0             0.6.16-3etch1                       Avahi Howl compatibility library
ii  libavahi-core4                    0.6.16-3etch1                       Avahi's embeddable mDNS/DNS-SD library
ii  libavahi-glib1                    0.6.16-3etch1                       Avahi glib integration library
ii  libavahi-qt3-1                    0.6.16-3etch1                       Avahi Qt3 integration library
ii  libavc1394-0                      0.5.3-1+b1                          control IEEE 1394 audio/video devices
ii  libavcodec0d                      0.cvs20060823-8                     ffmpeg codec library
ii  libbind9-0                        9.3.4-2                             BIND9 Shared Library used by BIND
ii  libblkid1                         1.39+1.40-WIP-2006.11.14+dfsg-2     block device id library
ii  libbonobo2-0                      2.14.0-3                            Bonobo CORBA interfaces library
ii  libbonobo2-common                 2.14.0-3                            Bonobo CORBA interfaces library -- support f
ii  libbonoboui2-0                    2.14.0-5                            The Bonobo UI library
ii  libbonoboui2-common               2.14.0-5                            The Bonobo UI library -- common files
ii  libbz2-1.0                        1.0.3-6                             high-quality block-sorting file compressor l
ii  libc6                             2.3.6.ds1-13                        GNU C Library: Shared libraries
ii  libc6-dev                         2.3.6.ds1-13                        GNU C Library: Development Libraries and Hea
ii  libc6-i686                        2.3.6.ds1-13                        GNU C Library: Shared libraries [i686 optimi
ii  libcaca0                          0.99.beta11.debian-2                colour ASCII art library
ii  libcairo-perl                     1.01-1                              Perl interface to the Cairo graphics library
ii  libcairo2                         1.2.4-4                             The Cairo 2D vector graphics library
ii  libcamel1.2-8                     1.6.3-5                             The Evolution MIME message handling library
ii  libcap1                           1.10-14                             support for getting/setting POSIX.1e capabil
ii  libcdio6                          0.76-1                              library to read and control CD-ROM
ii  libcdparanoia0                    3.10+debian~pre0-4                  audio extraction tool for sampling CDs (libr
ii  libcomerr2                        1.39+1.40-WIP-2006.11.14+dfsg-2     common error description library
ii  libconsole                        0.2.3dbs-65                         Shared libraries for Linux console and font 
ii  libcroco3                         0.6.1-1                             a generic Cascading Style Sheet (CSS) parsin
ii  libcucul0                         0.99.beta11.debian-2                low-level Unicode character drawing library
ii  libcupsimage2                     1.2.7-4                             Common UNIX Printing System(tm) - image libs
ii  libcupsys2                        1.2.7-4                             Common UNIX Printing System(tm) - libs
ii  libcurl3                          7.15.5-1                            Multi-protocol file transfer library
ii  libcurl3-openssl-dev              7.15.5-1                            Development files and documentation for libc
ii  libdaemon0                        0.10-1                              lightweight C library for daemons
ii  libdb4.2                          4.2.52+dfsg-2                       Berkeley v4.2 Database Libraries [runtime]
ii  libdb4.3                          4.3.29-8                            Berkeley v4.3 Database Libraries [runtime]
ii  libdb4.4                          4.4.20-8                            Berkeley v4.4 Database Libraries [runtime]
ii  libdbus-1-3                       1.0.2-1                             simple interprocess messaging system
ii  libdbus-glib-1-2                  0.71-3                              simple interprocess messaging system (GLib-b
ii  libdevmapper1.02                  1.02.08-1                           The Linux Kernel Device Mapper userspace lib
ii  libdirectfb-0.9-25                0.9.25.1-5                          direct frame buffer graphics - shared librar
ii  libdiscover1                      1.7.19                              hardware identification library
ii  libdjvulibre15                    3.5.17-3                            Runtime support for the DjVu image format
ii  libdmx1                           1.0.2-2                             X11 Distributed Multihead extension library
ii  libdns22                          9.3.4-2                             DNS Shared Library used by BIND
ii  libdrm2                           2.0.2-0.1                           Userspace interface to kernel DRM services -
ii  libdv4                            1.0.0-1                             software library for DV format digital video
ii  libdvdread3                       0.9.7-2                             library for reading DVDs
ii  libebook1.2-5                     1.6.3-5                             Client library for evolution address books
ii  libecal1.2-6                      1.6.3-5                             Client library for evolution calendars
ii  libedata-book1.2-2                1.6.3-5                             Backend library for evolution address books
ii  libedata-cal1.2-5                 1.6.3-5                             Backend library for evolution calendars
ii  libedataserver1.2-7               1.6.3-5                             Utility library for evolution data servers
ii  libedataserverui1.2-6             1.6.3-5                             GUI utility library for evolution data serve
ii  libedit2                          2.9.cvs.20050518-2.2                BSD editline and history libraries
ii  libeel2-2.14                      2.14.3-5                            Eazel Extensions Library (for GNOME2)
ii  libeel2-data                      2.14.3-5                            Eazel Extensions Library - data files (for G
ii  libegroupwise1.2-10               1.6.3-5                             Client library for accessing groupwise POA t
ii  libenchant1c2a                    1.3.0-2                             a wrapper library for various spell checker 
ii  libesd0                           0.2.36-3                            Enlightened Sound Daemon - Shared libraries
ii  libevent1                         1.1a-1                              An asynchronous event notification library
ii  libexchange-storage1.2-1          1.6.3-5                             Backend library for evolution calendars
ii  libexif12                         0.6.13-5                            library to parse EXIF files
ii  libexpat1                         1.95.8-3.4                          XML parsing C library - runtime library
ii  libfam0                           2.7.0-12                            Client library to control the FAM daemon
ii  libflac7                          1.1.2-6                             Free Lossless Audio Codec - runtime C librar
ii  libfontconfig1                    2.4.2-1.2                           generic font configuration library - runtime
ii  libfontenc1                       1.0.2-2                             X11 font encoding library
ii  libfreetype6                      2.2.1-5                             FreeType 2 font engine, shared library files
ii  libfs6                            1.0.0-4                             X11 Font Services library
ii  libg++2.8.1.3-glibc2.2            2.95.4-27                           The GNU C++ extension library - runtime vers
ii  libg2c0                           3.4.6-5                             Runtime library for GNU Fortran 77 applicati
ii  libgail-common                    1.8.11-4                            GNOME Accessibility Implementation Library -
ii  libgail17                         1.8.11-4                            GNOME Accessibility Implementation Library -
ii  libgc1c2                          6.8-1                               conservative garbage collector for C and C++
ii  libgcc1                           4.1.1-21                            GCC support library
ii  libgcj-bc                         4.1.1-21                            Link time only library for use with gcj
ii  libgcj-common                     4.1.1-21                            Java runtime library (common files)
ii  libgcj7-0                         4.1.1-20                            Java runtime library for use with gcj
ii  libgconf2-4                       2.16.1-1                            GNOME configuration database system (shared 
ii  libgcrypt11                       1.2.3-2                             LGPL Crypto library - runtime library
ii  libgda2-3                         1.2.3-5                             GNOME Data Access library for GNOME2
ii  libgda2-common                    1.2.3-5                             Common files for GNOME Data Access library f
ii  libgdbm3                          1.8.3-3                             GNU dbm database routines (runtime version)
ii  libgdl-1-0                        0.6.1-1                             GNOME DevTool libraries - development files
ii  libgdl-1-common                   0.6.1-1                             GNOME DevTool libraries - common files
ii  libgimp2.0                        2.2.13-1                            Libraries necessary to Run the GIMP
ii  libgksu1.2-0                      1.3.8-1                             library providing su and sudo functionality
ii  libgksu2-0                        2.0.3-7                             library providing su and sudo functionality
ii  libgksuui1.0-1                    1.0.7-1                             a graphical fronted to su library
ii  libgl1-mesa-dri                   6.5.1-0.6                           A free implementation of the OpenGL API -- D
ii  libgl1-mesa-glx                   6.5.1-0.6                           A free implementation of the OpenGL API -- G
ii  libglade2-0                       2.6.0-4                             library to load .glade files at runtime
ii  libglib-perl                      1.140-1                             Perl interface to the GLib and GObject libra
ii  libglib2.0-0                      2.12.4-2                            The GLib library of C routines
ii  libglibmm-2.4-1c2a                2.12.0-1                            C++ wrapper for the GLib toolkit (shared lib
ii  libglu1-mesa                      6.5.1-0.6                           The OpenGL utility library (GLU)
ii  libgnome-desktop-2                2.14.3-2                            Utility library for loading .desktop files -
ii  libgnome-keyring0                 0.6.0-3                             GNOME keyring services library
ii  libgnome-media0                   2.14.2-4                            runtime libraries for the GNOME media utilit
ii  libgnome-menu2                    2.16.1-3                            an implementation of the freedesktop menu sp
ii  libgnome-pilot2                   2.0.15-2                            Support libraries for gnome-pilot
ii  libgnome-window-settings1         2.14.2-7                            Utility library for getting window manager s
ii  libgnome2-0                       2.16.0-2                            The GNOME 2 library - runtime files
ii  libgnome2-canvas-perl             1.002-1+b1                          Perl interface to the GNOME canvas library
ii  libgnome2-common                  2.16.0-2                            The GNOME 2 library - common files
ii  libgnome2-perl                    1.040-1                             Perl interface to the GNOME libraries
ii  libgnome2-vfs-perl                1.060-1                             Perl interface to the 2.x series of the GNOM
ii  libgnomecanvas2-0                 2.14.0-2                            A powerful object-oriented display - runtime
ii  libgnomecanvas2-common            2.14.0-2                            A powerful object-oriented display - common 
ii  libgnomecups1.0-1                 0.2.2-5                             GNOME library for CUPS interaction
ii  libgnomecupsui1.0-1c2a            0.31-3                              UI extensions to libgnomecups
ii  libgnomeprint2.2-0                2.12.1-7                            The GNOME 2.2 print architecture - runtime f
ii  libgnomeprint2.2-data             2.12.1-7                            The GNOME 2.2 print architecture - data file
ii  libgnomeprintui2.2-0              2.12.1-4                            GNOME 2.2 print architecture User Interface 
ii  libgnomeprintui2.2-common         2.12.1-4                            GNOME 2.2 print architecture User Interface 
ii  libgnomeui-0                      2.14.1-2                            The GNOME 2 libraries (User Interface) - run
ii  libgnomeui-common                 2.14.1-2                            The GNOME 2 libraries (User Interface) - com
ii  libgnomevfs2-0                    2.14.2-7                            GNOME virtual file-system (runtime libraries
ii  libgnomevfs2-bin                  2.14.2-7                            GNOME virtual file-system (support binaries)
ii  libgnomevfs2-common               2.14.2-7                            GNOME virtual file-system (common files)
ii  libgnomevfs2-extra                2.14.2-7                            GNOME virtual file-system (extra modules)
ii  libgnutls13                       1.4.4-3                             the GNU TLS library - runtime library
ii  libgpg-error0                     1.4-1                               library for common error values and messages
ii  libgphoto2-2                      2.2.1-16                            gphoto2 digital camera library
ii  libgphoto2-port0                  2.2.1-16                            gphoto2 digital camera port library
ii  libgpmg1                          1.19.6-25                           General Purpose Mouse - shared library
ii  libgpod0                          0.3.2-1.1                           a library to read and write songs and artwor
ii  libgsf-1-114                      1.14.3-1                            Structured File Library - runtime version
ii  libgsf-1-common                   1.14.3-1                            Structured File Library - common files
ii  libgsm1                           1.0.10-13                           Shared libraries for GSM speech compressor
ii  libgssapi2                        0.10-4                              A mechanism-switch gssapi library
ii  libgstreamer-plugins-base0.10-0   0.10.10-4                           GStreamer libraries from the "base" set
ii  libgstreamer0.10-0                0.10.10-3                           Core GStreamer libraries and elements
ii  libgtk2-perl                      1.140-1                             Perl interface to the 2.x series of the Gimp
ii  libgtk2.0-0                       2.8.20-7                            The GTK+ graphical user interface library
ii  libgtk2.0-bin                     2.8.20-7                            The programs for the GTK+ graphical user int
ii  libgtk2.0-common                  2.8.20-7                            Common files for the GTK+ graphical user int
ii  libgtkhtml2-0                     2.11.0-3                            HTML rendering/editing library - runtime fil
ii  libgtkhtml3.8-15                  3.12.1-2                            HTML rendering/editing library - runtime fil
ii  libgtkmm-2.4-1c2a                 2.8.8-1                             C++ wrappers for GTK+ 2.4 (shared libraries)
ii  libgtksourceview-common           1.8.3-1                             common files for the GTK+ syntax highlightin
ii  libgtksourceview1.0-0             1.8.3-1                             shared libraries for the GTK+ syntax highlig
ii  libgtkspell0                      2.0.10-3+b1                         a spell-checking addon for GTK's TextView wi
ii  libgtop2-7                        2.14.4-3                            gtop system monitoring library
ii  libgtop2-common                   2.14.4-3                            common files for the gtop system monitoring 
ii  libgucharmap4                     1.6.0-1                             Unicode browser widget library (shared libra
ii  libguile-ltdl-1                   1.6.8-6                             Guile's patched version of libtool's libltdl
ii  libgutenprint2                    5.0.0-3                             runtime for the Gutenprint printer driver li
ii  libgutenprintui2-1                5.0.0-3                             runtime for the Gutenprint printer driver us
ii  libhal-storage1                   0.5.8.1-9                           Hardware Abstraction Layer - shared library 
ii  libhal1                           0.5.8.1-9                           Hardware Abstraction Layer - shared library
ii  libhsqldb-java                    1.8.0.7-1                           Java SQL database engine
ii  libice6                           1.0.1-2                             X11 Inter-Client Exchange library
ii  libicu36                          3.6-2                               International Components for Unicode (librar
ii  libid3tag0                        0.15.1b-10                          ID3 tag reading library from the MAD project
ii  libidl0                           0.8.6-1                             library for parsing CORBA IDL files
ii  libidn11                          0.6.5-1                             GNU libidn library, implementation of IETF I
ii  libidn11-dev                      0.6.5-1                             Development files GNU libidn, implementation
ii  libiec61883-0                     1.1.0-2                             an partial implementation of IEC 61883
ii  libieee1284-3                     0.2.10-4                            cross-platform library for parallel port acc
ii  libijs-0.35                       0.35-3                              IJS raster image transport protocol: shared 
ii  libisc11                          9.3.4-2                             ISC Shared Library used by BIND
ii  libisccc0                         9.3.4-2                             Command Channel Library used by BIND
ii  libisccfg1                        9.3.4-2                             Config File Handling Library used by BIND
ii  libiw28                           28-1                                Wireless tools - library
ii  libjack0.100.0-0                  0.101.1-2                           JACK Audio Connection Kit (libraries)
ii  libjasper-1.701-1                 1.701.0-2                           The JasPer JPEG-2000 runtime library
ii  libjaxp1.3-java                   1.3.03-4                            Java XML parser and transformer APIs (DOM, S
ii  libjline-java                     0.9.5-2                             Java library for handling console input
ii  libjpeg62                         6b-13                               The Independent JPEG Group's JPEG runtime li
ii  libkadm55                         1.4.4-7etch1                        MIT Kerberos administration runtime librarie
ii  libklibc                          1.4.34-1                            minimal libc subset for use with initramfs
ii  libkpathsea4                      3.0-30                              path search library for teTeX (runtime part)
ii  libkrb5-dev                       1.4.4-7etch1                        Headers and development libraries for MIT Ke
ii  libkrb53                          1.4.4-7etch1                        MIT Kerberos runtime libraries
ii  liblcms1                          1.15-1                              Color management library
ii  libldap2                          2.1.30-13.3                         OpenLDAP libraries
ii  liblircclient0                    0.8.0-9.2                           LIRC client library
ii  liblocale-gettext-perl            1.05-1                              Using libc functions for internationalizatio
ii  liblockfile1                      1.06.1                              NFS-safe locking library, includes dotlockfi
ii  liblua50                          5.0.3-2                             Main interpreter library for the Lua 5.0 pro
ii  liblualib50                       5.0.3-2                             Extension library for the Lua 5.0 programmin
ii  liblwres9                         9.3.4-2                             Lightweight Resolver Library used by BIND
ii  liblzo1                           1.08-3                              data compression library (old version)
ii  libmad0                           0.15.1b-2.1                         MPEG audio decoder library
ii  libmagic1                         4.17-5etch1                         File type determination library using "magic
ii  libmdbtools                       0.5.99.0.6pre1.0.20051109-3         mdbtools libraries
ii  libmetacity0                      2.14.5-4                            library of lightweight GTK2 based Window Man
ii  libmng1                           1.0.9-1                             Multiple-image Network Graphics library
ii  libmodplug0c2                     0.7-5.2                             shared libraries for mod music based on ModP
ii  libmozjs0d                        1.8.0.11-2                          The Mozilla SpiderMonkey JavaScript library
ii  libmpeg2-4                        0.4.0b-4                            MPEG1 and MPEG2 video decoder library
ii  libmudflap0                       4.1.1-21                            GCC mudflap shared support libraries
ii  libmudflap0-dev                   4.1.1-21                            GCC mudflap support libraries (development f
ii  libmusicbrainz4c2a                2.1.4-1                             Second generation incarnation of the CD Inde
ii  libmyspell3c2                     3.1-18                              MySpell spellchecking library
ii  libnautilus-burn3                 2.14.3-8+b1                         Nautilus Burn Library - runtime version
ii  libnautilus-extension1            2.14.3-11+b1                        libraries for nautilus components - runtime 
ii  libncurses5                       5.5-5                               Shared libraries for terminal handling
ii  libncurses5-dev                   5.5-5                               Developer's libraries and docs for ncurses
ii  libncursesw5                      5.5-5                               Shared libraries for terminal handling (wide
ii  libncursesw5-dev                  5.5-5                               Developer's libraries for ncursesw
ii  libneon26                         0.26.2-3.1                          An HTTP and WebDAV client library
ii  libnewt-dev                       0.52.2-10                           Developer's toolkit for newt windowing libra
ii  libnewt0.52                       0.52.2-10                           Not Erik's Windowing Toolkit - text mode win
ii  libnfsidmap2                      0.18-0                              An nfs idmapping library
ii  libnl1-pre6                       1.0~pre6-2                          Library for

gms
Beiträge: 7798
Registriert: 26.11.2004 20:08:38
Lizenz eigener Beiträge: MIT Lizenz

Beitrag von gms » 11.05.2007 19:58:03

Willkommen im Forum!
thokern hat geschrieben: *Welche Pakete müssen denn wirklich zum kompalieren vorhanden sein?
nachdem ausdrücklich nach dem vollständigen Kernel-Sourcetree verlangt wird, kannst du einmal die Kernel-Headers vergessen, und nachdem du keinen neuen Kernel bauen möchtest, brauchst du auch die ncurses Libraries nicht ( diese würdest du nur benötigen, wenn du mit "make menuconfig" die Quellen konfigurieren möchtest )

Du brauchst also nur die Config für deinen aktuellen Kernel, die Kernelsourcen und den gcc mit dem dein Kernel gebaut wurde
thokern hat geschrieben: *Welche Links müssen tatsächlich angelegt sein?
das hängt von dem Softwarepaket ab, dieses dürfte darauf ausgelegt sein nach "/usr/src/linux" zu suchen
thokern hat geschrieben: *Warum existiert im linux Quellverzeichnis keine .xconfig wohl aber in den kernel-headers?
Wenn du die Debian-Kernelsourcen installierst und das Archiv entpackst, sind diese unkonfiguriert

mit diesem Befehlssatz kannst du die Kernelsourcen mit deiner aktuellen Config konfigurien:

Code: Alles auswählen

ln -s /usr/src/linux-source-2.6.18  /usr/src/linux
cd /usr/src/linux
cp /boot/config-`uname -r` .config
make oldconfig
Gruß
gms

Antworten