johnymarek / memup-hd-lnx-customming-firmware

Automatically exported from code.google.com/p/memup-hd-lnx-customming-firmware
0 stars 0 forks source link

Installer un serveur d'impression #5

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Ma nouvelle box ne fait pas serveur d'impression, mon imprimante USB ne peut 
donc plus être partagée c'est pour cela que je souhaite installer un serveur 
d'impression sur le boitier afin de gérer mon imprimante.
ce qui n'est pas forcément chose aisée...

après moultes recherches, a priori la seule connue serait.. cups!

donc, voir commment installer cups et le faire fonctionner (si possible)

Original issue reported on code.google.com by Jerome.p...@gmail.com on 13 Oct 2012 at 10:11

GoogleCodeExporter commented 9 years ago
[deleted comment]
GoogleCodeExporter commented 9 years ago
ipkg install cups installe l'application avec succès mais lorsque l'on essaye 
de démarrer cups (cupsd start) un message "segmentation fault" apparait..

Original comment by Jerome.p...@gmail.com on 13 Oct 2012 at 12:32

GoogleCodeExporter commented 9 years ago
apres recherche, en installant gdb (ipkg install gdb) nous pouvons analyser ce 
qui provoque l'erreur

/tmp/usbmounts/sdb1 # gdb cupsd start
GNU gdb 6.8
Copyright (C) 2008 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
and "show warranty" for details.
This GDB was configured as "mipsel-linux"...
(no debugging symbols found)
/tmp/usbmounts/sdb1/start: No such file or directory.
(gdb) run
Starting program: /opt/sbin/cupsd
(no debugging symbols found)

Program received signal SIGSEGV, Segmentation fault.
0x2aaa9228 in _dl_parse_dynamic_info () from /opt/lib/ld-uClibc.so.0
(gdb)

l'erreur est donc dans cette zone là :
0x2aaa9228 in _dl_parse_dynamic_info () from /opt/lib/ld-uClibc.so.0

il faut maintenant comprendre ce que cela signifie !
id-uClibc.so.0 est une librairie. 
le reste à voir!

Original comment by Jerome.p...@gmail.com on 13 Oct 2012 at 12:55