Slackware 13 RC1 !!!

Se avete problemi con l'installazione e la configurazione di Slackware postate qui. Non usate questo forum per argomenti generali... per quelli usate Gnu/Linux in genere.

Moderatore: Staff

Regole del forum
1) Citare sempre la versione di Slackware usata, la versione del Kernel e magari anche la versione della libreria coinvolta. Questi dati aiutano le persone che possono rispondere.
2) Per evitare confusione prego inserire in questo forum solo topic che riguardano appunto Slackware, se l'argomento è generale usate il forum Gnu/Linux in genere.
3) Leggere attentamente le risposte ricevute.
4) Scrivere i messaggi con il colore di default, evitare altri colori.
5) Scrivere in Italiano o in Inglese, se possibile grammaticalmente corretto, evitate stili di scrittura poco chiari, quindi nessuna abbreviazione tipo telegramma o scrittura stile SMS o CHAT.
6) Appena registrati è consigliato presentarsi nel forum dedicato.

La non osservanza delle regole porta a provvedimenti di vari tipo da parte dello staff, in particolare la non osservanza della regola 5 porta alla cancellazione del post e alla segnalazione dell'utente. In caso di recidività l'utente rischia il ban temporaneo.
Avatar utente
Darkstar89
Packager
Packager
Messaggi: 372
Iscritto il: mer 17 dic 2008, 19:06
Nome Cognome: Francesco
Slackware: 13
Località: Sassari

Re: Slackware 13 RC1 !!!

Messaggio da Darkstar89 »

Grazie.. ho rimosso firefox, configurato slackpkg (che non avevo ancora usato) .. poi ho installato firefox con slackpkg

Codice: Seleziona tutto

The list below shows all packages with the selected pattern.

[ installed ] - kdeaccessibility-4.2.4-i486-1
[ installed ] - kdebase-4.2.4-i486-1
[ installed ] - mozilla-firefox-3.5-i686-1
[ installed ] - xfce-4.6.1-i486-4

Ma quando lancio firefox non succede niente e lanciandolo da shell non dà output :?

Avatar utente
conraid
Staff
Staff
Messaggi: 13631
Iscritto il: gio 14 lug 2005, 0:00
Nome Cognome: Corrado Franco
Slackware: current64
Desktop: kde
Località: Livorno
Contatta:

Re: Slackware 13 RC1 !!!

Messaggio da conraid »

ma come lo lanci?

Avatar utente
Darkstar89
Packager
Packager
Messaggi: 372
Iscritto il: mer 17 dic 2008, 19:06
Nome Cognome: Francesco
Slackware: 13
Località: Sassari

Re: Slackware 13 RC1 !!!

Messaggio da Darkstar89 »

digito solo firefox, anche se lo lancio dal menù di kde non parte..

Avatar utente
conraid
Staff
Staff
Messaggi: 13631
Iscritto il: gio 14 lug 2005, 0:00
Nome Cognome: Corrado Franco
Slackware: current64
Desktop: kde
Località: Livorno
Contatta:

Re: Slackware 13 RC1 !!!

Messaggio da conraid »

Darkstar89 ha scritto:digito solo firefox, anche se lo lancio dal menù di kde non parte..

Codice: Seleziona tutto

$ which firefox
cosa ti dice?

Avatar utente
Darkstar89
Packager
Packager
Messaggi: 372
Iscritto il: mer 17 dic 2008, 19:06
Nome Cognome: Francesco
Slackware: 13
Località: Sassari

Re: Slackware 13 RC1 !!!

Messaggio da Darkstar89 »

/usr/bin/firefox... :D

Avatar utente
Porky
Linux 1.x
Linux 1.x
Messaggi: 104
Iscritto il: mer 23 lug 2008, 20:52
Nome Cognome: Sebastiano Tronto
Desktop: DWM
Distribuzione: Void
Località: Belluno
Contatta:

Re: Slackware 13 RC1 !!!

Messaggio da Porky »

Darkstar89 ha scritto:/usr/bin/firefox... :D
secondo me la cosa più strana è che non dia nessun output... magari il problema sta proprio nell'esguibile...

Codice: Seleziona tutto

cat /usr/bin/firefox
cosa da?
il mio è questo:

Codice: Seleziona tutto

#!/bin/sh
# molte righe di commento...

moz_libdir=/usr/lib/firefox-3.5

# Include /usr/lib/mozilla/plugins in the plugin path:
if [ "$MOZ_PLUGIN_PATH" ] ; then
  MOZ_PLUGIN_PATH=$MOZ_PLUGIN_PATH:${moz_libdir}/plugins:/usr/lib/mozilla/plugins
else
  MOZ_PLUGIN_PATH=${moz_libdir}/plugins:/usr/lib/mozilla/plugins
fi
export MOZ_PLUGIN_PATH

# Use run-mozilla.sh in the current dir if it exists
# If not, then start resolving symlinks until we find run-mozilla.sh
found=0
progname="$0"
curdir=`dirname "$progname"`
progbase=`basename "$progname"`
run_moz="$curdir/run-mozilla.sh"
if test -x "$run_moz"; then
  dist_bin="$curdir"
  found=1
else
  here=`/bin/pwd`
  while [ -h "$progname" ]; do
    bn=`basename "$progname"`
    cd `dirname "$progname"`
    progname=`/bin/ls -l "$bn" | sed -e 's/^.* -> //' `
    progbase=`basename "$progname"`
    if [ ! -x "$progname" ]; then
      break
    fi
    curdir=`dirname "$progname"`
    run_moz="$curdir/run-mozilla.sh"
    if [ -x "$run_moz" ]; then
      cd "$curdir"
      dist_bin=`pwd`
      run_moz="$dist_bin/run-mozilla.sh"
      found=1
      break
    fi
  done
  cd "$here"
fi
if [ $found = 0 ]; then
  # Check default compile-time libdir
  if [ -x "$moz_libdir/run-mozilla.sh" ]; then
    dist_bin="$moz_libdir"
    run_moz="$moz_libdir/run-mozilla.sh"
  else
    echo "Cannot find Firefox runtime directory. Exiting."
    exit 1
  fi
fi

script_args=""
debugging=0
MOZILLA_BIN="${progbase}-bin"

if [ "$OSTYPE" = "beos" ]; then
  mimeset -F "$MOZILLA_BIN"
fi

pass_arg_count=0
while [ $# -gt $pass_arg_count ]
do
  case "$1" in
    -p | --pure | -pure)
      MOZILLA_BIN="${MOZILLA_BIN}.pure"
      shift
      ;;
    -g | --debug)
      script_args="$script_args -g"
      debugging=1
      shift
      ;;
    -d | --debugger)
      script_args="$script_args -d $2"
      shift 2
      ;;
    *)
      # Move the unrecognized argument to the end of the list.
      arg="$1"
      shift
      set -- "$@" "$arg"
      pass_arg_count=`expr $pass_arg_count + 1`
      ;;
  esac
done

if [ $debugging = 1 ]
then
  echo $dist_bin/run-mozilla.sh $script_args $dist_bin/$MOZILLA_BIN "$@"
fi
"$dist_bin/run-mozilla.sh" $script_args "$dist_bin/$MOZILLA_BIN" "$@"
exitcode=$?

exit $exitcode
# EOF.

Avatar utente
Darkstar89
Packager
Packager
Messaggi: 372
Iscritto il: mer 17 dic 2008, 19:06
Nome Cognome: Francesco
Slackware: 13
Località: Sassari

Re: Slackware 13 RC1 !!!

Messaggio da Darkstar89 »

Tra il tuo /usr/bin/firefox e il mio cambiano:

Codice: Seleziona tutto

2c2,51                                                                      
< # molte righe di commento...                                              
---                                                                         
> #                                                                         
> # ***** BEGIN LICENSE BLOCK *****                                         
> # Version: MPL 1.1/GPL 2.0/LGPL 2.1                                       
> #                                                                         
> # The contents of this file are subject to the Mozilla Public License Version
> # 1.1 (the "License"); you may not use this file except in compliance with   
> # the License. You may obtain a copy of the License at                       
> # http://www.mozilla.org/MPL/                                                
> #                                                                            
> # Software distributed under the License is distributed on an "AS IS" basis, 
> # WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License   
> # for the specific language governing rights and limitations under the       
> # License.                                                                   
> #                                                                            
> # The Original Code is mozilla.org code.                                     
> #                                                                            
> # The Initial Developer of the Original Code is                              
> # Netscape Communications Corporation.                                       
> # Portions created by the Initial Developer are Copyright (C) 1998           
> # the Initial Developer. All Rights Reserved.                                
> #                                                                            
> # Contributor(s):                                                            
> #                                                                            
> # Alternatively, the contents of this file may be used under the terms of
> # either the GNU General Public License Version 2 or later (the "GPL"), or
> # the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
> # in which case the provisions of the GPL or the LGPL are applicable instead
> # of those above. If you wish to allow use of your version of this file only
> # under the terms of either the GPL or the LGPL, and not to allow others to
> # use your version of this file under the terms of the MPL, indicate your
> # decision by deleting the provisions above and replace them with the notice
> # and other provisions required by the GPL or the LGPL. If you do not delete
> # the provisions above, a recipient may use your version of this file under
> # the terms of any one of the MPL, the GPL or the LGPL.
> #
> # ***** END LICENSE BLOCK *****
>
> ##
> ## Usage:
> ##
> ## $ mozilla [args]
> ##
> ## This script is meant to run the application binary from mozilla/dist/bin.
> ##
> ## The script will setup all the environment voodoo needed to make
> ## the application binary to work.
> ##
>
> #uncomment for debugging
> #set -x
Devo accettare una licenza da terminale?..
il repository da dove ho scaricato il pacchetto è:
#Ireland, 1Gbit
ftp://ftp.heanet.ie/mirrors/ftp.slackwa ... e-current/
Scarico anche dal sito da questo...

Avatar utente
Porky
Linux 1.x
Linux 1.x
Messaggi: 104
Iscritto il: mer 23 lug 2008, 20:52
Nome Cognome: Sebastiano Tronto
Desktop: DWM
Distribuzione: Void
Località: Belluno
Contatta:

Re: Slackware 13 RC1 !!!

Messaggio da Porky »

Darkstar89 ha scritto:Tra il tuo /usr/bin/firefox e il mio cambiano:

Codice: Seleziona tutto

2c2,51                                                                      
< # molte righe di commento...                                              
---                                                                         
> #                                                                         
> # ***** BEGIN LICENSE BLOCK *****                                         
> # Version: MPL 1.1/GPL 2.0/LGPL 2.1                                       
> #                                                                         
> # The contents of this file are subject to the Mozilla Public License Version
> # 1.1 (the "License"); you may not use this file except in compliance with   
> # the License. You may obtain a copy of the License at                       
> # http://www.mozilla.org/MPL/                                                
> #                                                                            
> # Software distributed under the License is distributed on an "AS IS" basis, 
> # WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License   
> # for the specific language governing rights and limitations under the       
> # License.                                                                   
> #                                                                            
> # The Original Code is mozilla.org code.                                     
> #                                                                            
> # The Initial Developer of the Original Code is                              
> # Netscape Communications Corporation.                                       
> # Portions created by the Initial Developer are Copyright (C) 1998           
> # the Initial Developer. All Rights Reserved.                                
> #                                                                            
> # Contributor(s):                                                            
> #                                                                            
> # Alternatively, the contents of this file may be used under the terms of
> # either the GNU General Public License Version 2 or later (the "GPL"), or
> # the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
> # in which case the provisions of the GPL or the LGPL are applicable instead
> # of those above. If you wish to allow use of your version of this file only
> # under the terms of either the GPL or the LGPL, and not to allow others to
> # use your version of this file under the terms of the MPL, indicate your
> # decision by deleting the provisions above and replace them with the notice
> # and other provisions required by the GPL or the LGPL. If you do not delete
> # the provisions above, a recipient may use your version of this file under
> # the terms of any one of the MPL, the GPL or the LGPL.
> #
> # ***** END LICENSE BLOCK *****
>
> ##
> ## Usage:
> ##
> ## $ mozilla [args]
> ##
> ## This script is meant to run the application binary from mozilla/dist/bin.
> ##
> ## The script will setup all the environment voodoo needed to make
> ## the application binary to work.
> ##
>
> #uncomment for debugging
> #set -x
Devo accettare una licenza da terminale?..
il repository da dove ho scaricato il pacchetto è:
#Ireland, 1Gbit
ftp://ftp.heanet.ie/mirrors/ftp.slackwa ... e-current/
Scarico anche dal sito da questo...
quelle sono righe commentate che ho anch'io, ma le ho tagliate perché sono inutili... se il resto è tutto uguale il problema non è là... non saprei proprio :-k

Avatar utente
navajo
Staff
Staff
Messaggi: 3884
Iscritto il: gio 8 gen 2004, 0:00
Nome Cognome: Massimiliano
Slackware: 13.37 (x86_64)
Kernel: 2.6.37.6
Desktop: KDE 4.7.0 (Alien)
Località: Roma

Re: Slackware 13 RC1 !!!

Messaggio da navajo »

sulla debian ho messo firefox 3,5 che parte con firefox35
prova

Avatar utente
Darkstar89
Packager
Packager
Messaggi: 372
Iscritto il: mer 17 dic 2008, 19:06
Nome Cognome: Francesco
Slackware: 13
Località: Sassari

Re: Slackware 13 RC1 !!!

Messaggio da Darkstar89 »

navajo ha scritto:sulla debian ho messo firefox 3,5 che parte con firefox35
prova
Non ho capito bene..

Codice: Seleziona tutto

Francesco@DarkStar89:/usr/bin$ ls fir*
firefox@  firefoxqs*
Francesco@DarkStar89:/usr/bin$
Non c'è nella path firefox35 se intendevi quello :) ..
Ho provato a scaricare firefox dal sito ufficiale per vedere se c'era un configure (volevo vedere se mi mancava qualche lib).. ma il configure non c'è, ma c'è firefox-bin e lanciandolo:

Codice: Seleziona tutto

Francesco@DarkStar89:/tmp/firefox$ ./firefox-bin
./firefox-bin: error while loading shared libraries: libxul.so: cannot open shared object file: No such file or directory
root@DarkStar89:/tmp/firefox# slackpkg search libxul

The list below shows all packages with the selected pattern.

[ installed ] - mozilla-firefox-3.5-i686-1
Non parte per colpa della libreria?

Avatar utente
conraid
Staff
Staff
Messaggi: 13631
Iscritto il: gio 14 lug 2005, 0:00
Nome Cognome: Corrado Franco
Slackware: current64
Desktop: kde
Località: Livorno
Contatta:

Re: Slackware 13 RC1 !!!

Messaggio da conraid »

Lancia ./firefox dal tar preso dal sito, non firefox-bin, perché altrimenti non hai le variabili impostate correttamente
firefox infatti è solo uno script che imposta le variabili e poi lancia firefox-bin

Avatar utente
Darkstar89
Packager
Packager
Messaggi: 372
Iscritto il: mer 17 dic 2008, 19:06
Nome Cognome: Francesco
Slackware: 13
Località: Sassari

Re: Slackware 13 RC1 !!!

Messaggio da Darkstar89 »

Lanciando ./firefox estratto dal tar non ho output come con quello precompilato... ho provato con

Codice: Seleziona tutto

Francesco@DarkStar89:/tmp/firefox$ slackyd -d firefox

Checking firefoxqs-0.1.3-i486-3as: done.
Checking mozilla-firefox-3.5-i686-1: done.

All packages "firefox" checked are ok !
(Grazie Danix)
avevo già fatto questo comando e mi ha fatto installare diverse cose..ma come vedete ho tutto.. Installo il firefox che ho estratto?

Avatar utente
conraid
Staff
Staff
Messaggi: 13631
Iscritto il: gio 14 lug 2005, 0:00
Nome Cognome: Corrado Franco
Slackware: current64
Desktop: kde
Località: Livorno
Contatta:

Re: Slackware 13 RC1 !!!

Messaggio da conraid »

:-(

il tar che hai scaricato da mozilla.com non va installato, lo usi così com'è.
Io firefox lo uso sempre solamente in questo modo, non ho pacchetti firefox installati nel sistema
se non ti funziona devi scoprirne il motivo

prova con
./firefox -safe-mode
per esempio o altre opzioni che puoi vedere con
./firefox -h

Avatar utente
Darkstar89
Packager
Packager
Messaggi: 372
Iscritto il: mer 17 dic 2008, 19:06
Nome Cognome: Francesco
Slackware: 13
Località: Sassari

Re: Slackware 13 RC1 !!!

Messaggio da Darkstar89 »

Allora il mio sistema propio non lo vuole :).. Avevvo già provato con firefox -h e --help.. ora ho riprovato anche da firefox di mozilla.com ma ho sempre:

Codice: Seleziona tutto

Francesco@DarkStar89:/tmp/firefox$ ./firefox -h

niente output.. questo succedeva anche prima di installare privoxy o tor, può dipendere da quello anche se in rc.d non sono eseguibili?

Avatar utente
Darkstar89
Packager
Packager
Messaggi: 372
Iscritto il: mer 17 dic 2008, 19:06
Nome Cognome: Francesco
Slackware: 13
Località: Sassari

Re: Slackware 13 RC1 !!!

Messaggio da Darkstar89 »

Se lancio firefox o un'altra apps da shell lasciando la shell aperta ho un'errore come questo:

Codice: Seleziona tutto

kbuildsycoca running...          
Reusing existing ksycoca         
kdecore (KService): WARNING: Invalid Service : /usr/share/applications/pidgin.desktop
kbuildsycoca: WARNING: '/usr/share/applications/qt4-qtconfig.desktop' specifies undefined mimetype/servicetype 'application/x-qtconfig'                                                                                                                     
kbuildsycoca: WARNING: '/usr/share/applications/kde4/ark.desktop' specifies undefined mimetype/servicetype 'application/x-compressed-tar'                                                                                                                   
kbuildsycoca: WARNING: '/usr/share/applications/kde4/ark.desktop' specifies undefined mimetype/servicetype 'application/x-bzip-compressed-tar'                                                                                                              
kbuildsycoca: WARNING: '/usr/share/applications/kde4/ark.desktop' specifies undefined mimetype/servicetype 'application/zip'  
kbuildsycoca: WARNING: '/usr/share/applications/kde4/ark.desktop' specifies undefined mimetype/servicetype 'application/x-java-archive'                                                                                                                     
kbuildsycoca: WARNING: '/usr/share/applications/kde4/ark.desktop' specifies undefined mimetype/servicetype 'application/x-7z-compressed'                                                                                                                    
kbuildsycoca: WARNING: '/usr/share/applications/kde4/kalzium.desktop' specifies undefined mimetype/servicetype 'chemical/x-cml'                                                                                                                             
kbuildsycoca: WARNING: '/usr/share/applications/kde4/amarok.desktop' specifies undefined mimetype/servicetype 'application/x-ogm-audio'                                                                                                                     
kbuildsycoca: WARNING: '/usr/share/applications/kde4/amarok.desktop' specifies undefined mimetype/servicetype 'audio/x-vorbis+ogg'                                                                                                                          
kbuildsycoca: WARNING: '/usr/share/applications/kde4/amarok.desktop' specifies undefined mimetype/servicetype 'audio/ogg'     
kbuildsycoca: WARNING: '/usr/share/applications/kde4/gwenview.desktop' specifies undefined mimetype/servicetype 'image/bmp'   
kbuildsycoca: WARNING: '/usr/share/applications/kde4/gwenview.desktop' specifies undefined mimetype/servicetype 'image/x-xbitmap'                                                                                                                           
kbuildsycoca: WARNING: '/usr/share/applications/kde4/gwenview.desktop' specifies undefined mimetype/servicetype 'image/x-xpixmap'                                                                                                                           
kbuildsycoca: WARNING: '/usr/share/applications/kde4/superkaramba.desktop' specifies undefined mimetype/servicetype 'application/x-superkaramba'                                                                                                            
kbuildsycoca: WARNING: '/usr/share/applications/wine.desktop' specifies undefined mimetype/servicetype 'application/x-ms-dos-executable'                                                                                                                    
kbuildsycoca: WARNING: '/usr/share/applications/wine.desktop' specifies undefined mimetype/servicetype 'application/x-msi'    
kbuildsycoca: WARNING: '/usr/share/applications/wine.desktop' specifies undefined mimetype/servicetype 'application/x-win-lnk'
kbuildsycoca: WARNING: '/usr/share/applications/kde4/umbrello.desktop' specifies undefined mimetype/servicetype 'application/x-uml'                                                                                                                         
kbuildsycoca: WARNING: 'xine_part.desktop' specifies undefined mimetype/servicetype 'KaffeinePart'                            
kbuildsycoca: WARNING: 'xine_part.desktop' specifies undefined mimetype/servicetype 'audio/x-mpeg'                            
kbuildsycoca: WARNING: 'xine_part.desktop' specifies undefined mimetype/servicetype 'audio/x-ogg'                             
kbuildsycoca: WARNING: 'xine_part.desktop' specifies undefined mimetype/servicetype 'video/msvideo'                           
kbuildsycoca: WARNING: 'xine_part.desktop' specifies undefined mimetype/servicetype 'video/x-avi'                             
kbuildsycoca: WARNING: 'xine_part.desktop' specifies undefined mimetype/servicetype 'video/x-fli'                             
kbuildsycoca: WARNING: 'xine_part.desktop' specifies undefined mimetype/servicetype 'video/x-ms-asf-plugin'                   
kbuildsycoca: WARNING: '/usr/share/applications/kde4/kcachegrind.desktop' specifies undefined mimetype/servicetype 'application/x-kcachegrind'                                                                                                              
kbuildsycoca: WARNING: '/usr/share/applications/kde4/kwalletmanager.desktop' specifies undefined mimetype/servicetype 'application/x-kwallet'                                                                                                               
kbuildsycoca: WARNING: 'gstreamer_part.desktop' specifies undefined mimetype/servicetype 'KaffeinePart'                       
kbuildsycoca: WARNING: 'gstreamer_part.desktop' specifies undefined mimetype/servicetype 'audio/x-mpeg'                       
kbuildsycoca: WARNING: 'gstreamer_part.desktop' specifies undefined mimetype/servicetype 'audio/x-ogg'                        
kbuildsycoca: WARNING: 'gstreamer_part.desktop' specifies undefined mimetype/servicetype 'video/msvideo'                      
kbuildsycoca: WARNING: 'gstreamer_part.desktop' specifies undefined mimetype/servicetype 'video/x-avi'                        
kbuildsycoca: WARNING: 'gstreamer_part.desktop' specifies undefined mimetype/servicetype 'video/x-fli'                        
kbuildsycoca: WARNING: '/usr/share/applications/gvim.desktop' specifies undefined mimetype/servicetype 'text/english'         
kbuildsycoca: WARNING: '/usr/share/applications/gvim.desktop' specifies undefined mimetype/servicetype 'text/x-c'             
kbuildsycoca: WARNING: '/usr/share/applications/gvim.desktop' specifies undefined mimetype/servicetype 'text/x-c++'           
kbuildsycoca: WARNING: '/usr/share/applications/kde4/kopete.desktop' specifies undefined mimetype/servicetype 'application/x-kopete-emoticons'                                                                                                              
kbuildsycoca: WARNING: '/usr/share/applications/kde4/kopete.desktop' specifies undefined mimetype/servicetype 'application/x-icq'                                                                                                                           
kbuildsycoca: WARNING: '/usr/share/applications/xine.desktop' specifies undefined mimetype/servicetype 'video/x-anim'         
kbuildsycoca: WARNING: '/usr/share/applications/mplayer.desktop' specifies undefined mimetype/servicetype 'application/sdp'   
kbuildsycoca: WARNING: '/usr/share/applications/mplayer.desktop' specifies undefined mimetype/servicetype 'application/x-smil'
kbuildsycoca: WARNING: '/usr/share/applications/mplayer.desktop' specifies undefined mimetype/servicetype 'application/streamingmedia'                                                                                                                      
kbuildsycoca: WARNING: '/usr/share/applications/mplayer.desktop' specifies undefined mimetype/servicetype 'application/x-streamingmedia'                                                                                                                    
kbuildsycoca: WARNING: '/usr/share/applications/mplayer.desktop' specifies undefined mimetype/servicetype 'application/vnd.rn-realmedia-vbr'                                                                                                                
kbuildsycoca: WARNING: '/usr/share/applications/mplayer.desktop' specifies undefined mimetype/servicetype 'audio/x-aac'       
kbuildsycoca: WARNING: '/usr/share/applications/mplayer.desktop' specifies undefined mimetype/servicetype 'audio/m4a'         
kbuildsycoca: WARNING: '/usr/share/applications/mplayer.desktop' specifies undefined mimetype/servicetype 'audio/x-m4a'       
kbuildsycoca: WARNING: '/usr/share/applications/mplayer.desktop' specifies undefined mimetype/servicetype 'audio/mp1'         
kbuildsycoca: WARNING: '/usr/share/applications/mplayer.desktop' specifies undefined mimetype/servicetype 'audio/x-mp1'       
kbuildsycoca: WARNING: '/usr/share/applications/mplayer.desktop' specifies undefined mimetype/servicetype 'audio/mp2'         
kbuildsycoca: WARNING: '/usr/share/applications/mplayer.desktop' specifies undefined mimetype/servicetype 'audio/mp3'         
kbuildsycoca: WARNING: '/usr/share/applications/mplayer.desktop' specifies undefined mimetype/servicetype 'audio/x-mpeg'      
kbuildsycoca: WARNING: '/usr/share/applications/mplayer.desktop' specifies undefined mimetype/servicetype 'audio/mpg'         
kbuildsycoca: WARNING: '/usr/share/applications/mplayer.desktop' specifies undefined mimetype/servicetype 'audio/x-mpg'       
kbuildsycoca: WARNING: '/usr/share/applications/mplayer.desktop' specifies undefined mimetype/servicetype 'audio/rn-mpeg'     
kbuildsycoca: WARNING: '/usr/share/applications/mplayer.desktop' specifies undefined mimetype/servicetype 'audio/scpls'       
kbuildsycoca: WARNING: '/usr/share/applications/mplayer.desktop' specifies undefined mimetype/servicetype 'audio/wav'         
kbuildsycoca: WARNING: '/usr/share/applications/mplayer.desktop' specifies undefined mimetype/servicetype 'audio/x-pn-windows-pcm'                                                                                                                          
kbuildsycoca: WARNING: '/usr/share/applications/mplayer.desktop' specifies undefined mimetype/servicetype 'audio/x-realaudio' 
kbuildsycoca: WARNING: '/usr/share/applications/mplayer.desktop' specifies undefined mimetype/servicetype 'audio/x-pls'       
kbuildsycoca: WARNING: '/usr/share/applications/mplayer.desktop' specifies undefined mimetype/servicetype 'video/x-mpeg'      
kbuildsycoca: WARNING: '/usr/share/applications/mplayer.desktop' specifies undefined mimetype/servicetype 'video/x-mpeg2'     
kbuildsycoca: WARNING: '/usr/share/applications/mplayer.desktop' specifies undefined mimetype/servicetype 'video/msvideo'     
kbuildsycoca: WARNING: '/usr/share/applications/mplayer.desktop' specifies undefined mimetype/servicetype 'video/x-ms-afs'    
kbuildsycoca: WARNING: '/usr/share/applications/mplayer.desktop' specifies undefined mimetype/servicetype 'video/x-ms-wmx'    
kbuildsycoca: WARNING: '/usr/share/applications/mplayer.desktop' specifies undefined mimetype/servicetype 'video/x-ms-wvxvideo'                                                                                                                             
kbuildsycoca: WARNING: '/usr/share/applications/mplayer.desktop' specifies undefined mimetype/servicetype 'video/x-avi'       
kbuildsycoca: WARNING: '/usr/share/applications/mplayer.desktop' specifies undefined mimetype/servicetype 'video/x-fli'       
kbuildsycoca: WARNING: '/usr/share/applications/kde4/krita_bmp.desktop' specifies undefined mimetype/servicetype 'image/bmp'  
kbuildsycoca: WARNING: '/usr/share/applications/kde4/krita_ora.desktop' specifies undefined mimetype/servicetype 'image/openraster-archiving'                                                                                                               
kbuildsycoca: WARNING: '/usr/share/applications/kde4/krita_raw.desktop' specifies undefined mimetype/servicetype 'image/x-nikon-nef'                                                                                                                        
kbuildsycoca: WARNING: '/usr/share/applications/kde4/krita_raw.desktop' specifies undefined mimetype/servicetype 'image/x-canon-cr2'                                                                                                                        
kbuildsycoca: WARNING: '/usr/share/applications/kde4/krita_raw.desktop' specifies undefined mimetype/servicetype 'image/x-sony-sr2'                                                                                                                         
kbuildsycoca: WARNING: '/usr/share/applications/kde4/krita_raw.desktop' specifies undefined mimetype/servicetype 'image/x-canon-crw'                                                                                                                        
kbuildsycoca: WARNING: '/usr/share/applications/kde4/krita_raw.desktop' specifies undefined mimetype/servicetype 'image/x-pentax-pef'                                                                                                                       
kbuildsycoca: WARNING: '/usr/share/applications/kde4/krita_raw.desktop' specifies undefined mimetype/servicetype 'image/x-sigma-x3f'                                                                                                                        
kbuildsycoca: WARNING: '/usr/share/applications/kde4/krita_raw.desktop' specifies undefined mimetype/servicetype 'image/x-kodak-kdc'                                                                                                                        
kbuildsycoca: WARNING: '/usr/share/applications/kde4/krita_raw.desktop' specifies undefined mimetype/servicetype 'image/x-minolta-mrw'                                                                                                                      
kbuildsycoca: WARNING: '/usr/share/applications/kde4/krita_raw.desktop' specifies undefined mimetype/servicetype 'image/x-sony-arw'                                                                                                                         
kbuildsycoca: WARNING: '/usr/share/applications/kde4/krita_raw.desktop' specifies undefined mimetype/servicetype 'image/x-kodak-k25'                                                                                                                        
kbuildsycoca: WARNING: '/usr/share/applications/kde4/krita_raw.desktop' specifies undefined mimetype/servicetype 'image/x-kodak-dcr'                                                                                                                        
kbuildsycoca: WARNING: '/usr/share/applications/kde4/krita_raw.desktop' specifies undefined mimetype/servicetype 'image/x-olympus-orf'                                                                                                                      
kbuildsycoca: WARNING: '/usr/share/applications/kde4/krita_raw.desktop' specifies undefined mimetype/servicetype 'image/x-panasonic-raw'                                                                                                                    
kbuildsycoca: WARNING: '/usr/share/applications/kde4/krita_raw.desktop' specifies undefined mimetype/servicetype 'image/x-fuji-raf'                                                                                                                         
kbuildsycoca: WARNING: '/usr/share/applications/kde4/krita_raw.desktop' specifies undefined mimetype/servicetype 'image/x-sony-srf'                                                                                                                         
kbuildsycoca: WARNING: '/usr/share/applications/kde4/ktuberling.desktop' specifies undefined mimetype/servicetype 'application/x-tuberling'                                                                                                                 
kbuildsycoca: WARNING: '/usr/share/applications/kde4/kolf.desktop' specifies undefined mimetype/servicetype 'application/x-kourse'                                                                                                                          
kbuildsycoca: WARNING: '/usr/share/applications/kde4/kolf.desktop' specifies undefined mimetype/servicetype 'application/x-kolf'                                                                                                                            
kbuildsycoca: WARNING: '/usr/share/applications/audacious.desktop' specifies undefined mimetype/servicetype 'audio/mp3'       
kbuildsycoca: WARNING: '/usr/share/applications/audacious.desktop' specifies undefined mimetype/servicetype 'audio/x-it'      
kbuildsycoca: WARNING: '/usr/share/applications/audacious.desktop' specifies undefined mimetype/servicetype 'audio/x-mpeg'    
kbuildsycoca: WARNING: '/usr/share/applications/audacious.desktop' specifies undefined mimetype/servicetype 'audio/x-s3m'     
kbuildsycoca: WARNING: '/usr/share/applications/audacious.desktop' specifies undefined mimetype/servicetype 'audio/x-stm'     
kbuildsycoca: WARNING: '/usr/share/applications/audacious.desktop' specifies undefined mimetype/servicetype 'audio/x-xm'      
kbuildsycoca: WARNING: '/usr/share/applications/audacious.desktop' specifies undefined mimetype/servicetype 'audio/x-vorbis+ogg'                                                                                                                            
kbuildsycoca: WARNING: 'kcertpart.desktop' specifies undefined mimetype/servicetype 'application/binary-certificate'          
kbuildsycoca: WARNING: '/usr/share/applications/kde/kaffeine.desktop' specifies undefined mimetype/servicetype 'audio/x-mpeg' 
kbuildsycoca: WARNING: '/usr/share/applications/kde/kaffeine.desktop' specifies undefined mimetype/servicetype 'audio/x-ogg'  
kbuildsycoca: WARNING: '/usr/share/applications/kde/kaffeine.desktop' specifies undefined mimetype/servicetype 'video/msvideo'
kbuildsycoca: WARNING: '/usr/share/applications/kde/kaffeine.desktop' specifies undefined mimetype/servicetype 'video/x-avi'  
kbuildsycoca: WARNING: '/usr/share/applications/kde/kaffeine.desktop' specifies undefined mimetype/servicetype 'video/x-fli'  
kbuildsycoca: WARNING: '/usr/share/applications/kde/kaffeine.desktop' specifies undefined mimetype/servicetype 'audio/x-stm'  
kbuildsycoca: WARNING: '/usr/share/applications/kde4/dragonplayer.desktop' specifies undefined mimetype/servicetype 'video/ogg'                                                                                                                             
kbuildsycoca: WARNING: '/usr/share/applications/kde4/dragonplayer.desktop' specifies undefined mimetype/servicetype 'video/x-theora+ogg'                                                                                                                    
kbuildsycoca: WARNING: '/usr/share/applications/kde4/dragonplayer.desktop' specifies undefined mimetype/servicetype 'video/x-ogm+ogg'                                                                                                                       
kbuildsycoca: WARNING: '.hidden/kommander.desktop' specifies undefined mimetype/servicetype 'application/x-kommander'         
kbuildsycoca: WARNING: '/usr/share/applications/kde4/kaddressbook.desktop' specifies undefined mimetype/servicetype 'text/directory'                                                                                                                        
kbuildsycoca: WARNING: '/usr/share/applications/xmms.desktop' specifies undefined mimetype/servicetype 'audio/mp3'            
kbuildsycoca: WARNING: '/usr/share/applications/xmms.desktop' specifies undefined mimetype/servicetype 'audio/x-it'           
kbuildsycoca: WARNING: '/usr/share/applications/xmms.desktop' specifies undefined mimetype/servicetype 'audio/x-mpeg'         
kbuildsycoca: WARNING: '/usr/share/applications/xmms.desktop' specifies undefined mimetype/servicetype 'audio/x-s3m'          
kbuildsycoca: WARNING: '/usr/share/applications/xmms.desktop' specifies undefined mimetype/servicetype 'audio/x-stm'          
kbuildsycoca: WARNING: '/usr/share/applications/xmms.desktop' specifies undefined mimetype/servicetype 'audio/x-xm'           
kbuildsycoca: WARNING: '/usr/share/applications/xmms.desktop' specifies undefined mimetype/servicetype 'audio/x-vorbis+ogg'   
kbuildsycoca: WARNING: '/usr/share/applications/kde4/kig.desktop' specifies undefined mimetype/servicetype 'application/x-kig'
kbuildsycoca: WARNING: '/usr/share/applications/kde4/kig.desktop' specifies undefined mimetype/servicetype 'application/x-kgeo'                                                                                                                             
kbuildsycoca: WARNING: '/usr/share/applications/Thunar-folder-handler.desktop' specifies undefined mimetype/servicetype 'x-directory/gnome-default-handler'                                                                                                 
kbuildsycoca: WARNING: '/usr/share/applications/Thunar-folder-handler.desktop' specifies undefined mimetype/servicetype 'x-directory/normal'                                                                                                                
kbuildsycoca: WARNING: '/usr/share/applications/kde4/parley.desktop' specifies undefined mimetype/servicetype 'application/x-kvtml'                                                                                                                         
kbuildsycoca: WARNING: '/usr/share/applications/kde4/okularApplication_chm.desktop' specifies undefined mimetype/servicetype 'application/x-chm'                                                                                                            
kbuildsycoca: WARNING: '/usr/share/applications/kde4/okularApplication_kimgio.desktop' specifies undefined mimetype/servicetype 'image/bmp'                                                                                                                 
kbuildsycoca: WARNING: '/usr/share/applications/kde4/okularApplication_kimgio.desktop' specifies undefined mimetype/servicetype 'image/x-portable-graymap'                                                                                                  
kbuildsycoca: WARNING: '/usr/share/applications/kde4/okularApplication_kimgio.desktop' specifies undefined mimetype/servicetype 'image/x-psd'                                                                                                               
kbuildsycoca: WARNING: '/usr/share/applications/kde4/okularApplication_kimgio.desktop' specifies undefined mimetype/servicetype 'image/x-tga'                                                                                                               
kbuildsycoca: WARNING: '/usr/share/applications/kde4/okularApplication_kimgio.desktop' specifies undefined mimetype/servicetype 'image/x-xbitmap'                                                                                                           
kbuildsycoca: WARNING: '/usr/share/applications/kde4/okularApplication_kimgio.desktop' specifies undefined mimetype/servicetype 'image/x-xcf'                                                                                                               
kbuildsycoca: WARNING: '/usr/share/applications/kde4/okularApplication_kimgio.desktop' specifies undefined mimetype/servicetype 'image/x-xpixmap'                                                                                                           
kbuildsycoca: WARNING: '/usr/share/applications/kde4/okularApplication_kimgio.desktop' specifies undefined mimetype/servicetype 'image/x-gzeps'                                                                                                             
kbuildsycoca: WARNING: '/usr/share/applications/kde4/okularApplication_kimgio.desktop' specifies undefined mimetype/servicetype 'image/x-bzeps'                                                                                                             
kbuildsycoca: WARNING: '/usr/share/applications/kde4/okular.desktop' specifies undefined mimetype/servicetype 'application/vnd.kde.okular-archive'                                                                                                          
kbuildsycoca: WARNING: '/usr/share/applications/kde4/okularApplication_fb.desktop' specifies undefined mimetype/servicetype 'application/x-fictionbook'                                                                                                     
kbuildsycoca: WARNING: '/usr/share/applications/kde4/okularApplication_dvi.desktop' specifies undefined mimetype/servicetype 'application/x-bzdvi'                                                                                                          
kbuildsycoca: WARNING: '/usr/share/applications/kde4/okularApplication_xps.desktop' specifies undefined mimetype/servicetype 'application/vnd.ms-xpsdocument'                                                                                               
kbuildsycoca: WARNING: '/usr/share/applications/kde4/okularApplication_pdf.desktop' specifies undefined mimetype/servicetype 'application/x-gzpdf'                                                                                                          
kbuildsycoca: WARNING: '/usr/share/applications/kde4/okularApplication_pdf.desktop' specifies undefined mimetype/servicetype 'application/x-bzpdf'                                                                                                          
kbuildsycoca: WARNING: '/usr/share/applications/kde4/okularApplication_plucker.desktop' specifies undefined mimetype/servicetype 'application/prs.plucker'                                                                                                  
kbuildsycoca: WARNING: '/usr/share/applications/kde4/okularApplication_fax.desktop' specifies undefined mimetype/servicetype 'image/g3fax'                                                                                                                  
kbuildsycoca: WARNING: '/usr/share/applications/kde4/okularApplication_ghostview.desktop' specifies undefined mimetype/servicetype 'application/x-bzpostscript'                                                                                             
kbuildsycoca: WARNING: '/usr/share/applications/kde4/okularApplication_ghostview.desktop' specifies undefined mimetype/servicetype 'image/x-gzeps'                                                                                                          
kbuildsycoca: WARNING: '/usr/share/applications/kde4/okularApplication_ghostview.desktop' specifies undefined mimetype/servicetype 'image/x-bzeps'                                                                                                          
kbuildsycoca: WARNING: '/usr/share/applications/kde4/okularApplication_comicbook.desktop' specifies undefined mimetype/servicetype 'application/x-cbz'                                                                                                      
kbuildsycoca: WARNING: '/usr/share/applications/kde4/okularApplication_comicbook.desktop' specifies undefined mimetype/servicetype 'application/x-cbr'                                                                                                      
kbuildsycoca: WARNING: '/usr/share/applications/kde4/okularApplication_djvu.desktop' specifies undefined mimetype/servicetype 'image/vnd.djvu'                                                                                                              
kbuildsycoca: WARNING: '/usr/share/applications/kde4/kalgebra.desktop' specifies undefined mimetype/servicetype 'application/x-kalgebra'                                                                                                                    
kbuildsycoca: WARNING: '/usr/share/applications/kde4/kolourpaint.desktop' specifies undefined mimetype/servicetype 'image/bmp'
kbuildsycoca: WARNING: '/usr/share/applications/kde4/kolourpaint.desktop' specifies undefined mimetype/servicetype 'image/jpeg2000'                                                                                                                         
kbuildsycoca: WARNING: '/usr/share/applications/kde4/kolourpaint.desktop' specifies undefined mimetype/servicetype 'image/x-portable-graymap'                                                                                                               
kbuildsycoca: WARNING: '/usr/share/applications/kde4/kolourpaint.desktop' specifies undefined mimetype/servicetype 'image/x-psd'                                                                                                                            
kbuildsycoca: WARNING: '/usr/share/applications/kde4/kolourpaint.desktop' specifies undefined mimetype/servicetype 'image/x-tga'                                                                                                                            
kbuildsycoca: WARNING: '/usr/share/applications/kde4/kolourpaint.desktop' specifies undefined mimetype/servicetype 'image/x-xbitmap'                                                                                                                        
kbuildsycoca: WARNING: '/usr/share/applications/kde4/kolourpaint.desktop' specifies undefined mimetype/servicetype 'image/x-xcf'                                                                                                                            
kbuildsycoca: WARNING: '/usr/share/applications/kde4/kolourpaint.desktop' specifies undefined mimetype/servicetype 'image/x-xpixmap'                                                                                                                        
kbuildsycoca: WARNING: '/usr/share/applications/kde4/kspread.desktop' specifies undefined mimetype/servicetype 'text/csv'     
kbuildsycoca: WARNING: 'Multimedia/gxine.desktop' specifies undefined mimetype/servicetype 'application/annodex'              
kbuildsycoca: WARNING: 'Multimedia/gxine.desktop' specifies undefined mimetype/servicetype 'application/x-annodex'            
kbuildsycoca: WARNING: 'Multimedia/gxine.desktop' specifies undefined mimetype/servicetype 'audio/annodex'                    
kbuildsycoca: WARNING: 'Multimedia/gxine.desktop' specifies undefined mimetype/servicetype 'audio/x-annodex'                  
kbuildsycoca: WARNING: 'Multimedia/gxine.desktop' specifies undefined mimetype/servicetype 'video/annodex'                    
kbuildsycoca: WARNING: 'Multimedia/gxine.desktop' specifies undefined mimetype/servicetype 'video/x-annodex'                  
kbuildsycoca: WARNING: 'Multimedia/gxine.desktop' specifies undefined mimetype/servicetype 'video/x-flv'                      
kbuildsycoca: WARNING: 'Multimedia/gxine.desktop' specifies undefined mimetype/servicetype 'video/flv'                        
kbuildsycoca: WARNING: 'Multimedia/gxine.desktop' specifies undefined mimetype/servicetype 'application/x-flash-video'        
kbuildsycoca: WARNING: 'Multimedia/gxine.desktop' specifies undefined mimetype/servicetype 'audio/x-real-audio'               
kbuildsycoca: WARNING: 'Multimedia/gxine.desktop' specifies undefined mimetype/servicetype 'audio/x-8svx'                     
kbuildsycoca: WARNING: 'Multimedia/gxine.desktop' specifies undefined mimetype/servicetype 'audio/8svx'                       
kbuildsycoca: WARNING: 'Multimedia/gxine.desktop' specifies undefined mimetype/servicetype 'audio/x-16sv'                     
kbuildsycoca: WARNING: 'Multimedia/gxine.desktop' specifies undefined mimetype/servicetype 'audio/168sv'                      
kbuildsycoca: WARNING: 'Multimedia/gxine.desktop' specifies undefined mimetype/servicetype 'image/x-ilbm'                     
kbuildsycoca: WARNING: 'Multimedia/gxine.desktop' specifies undefined mimetype/servicetype 'image/ilbm'                       
kbuildsycoca: WARNING: 'Multimedia/gxine.desktop' specifies undefined mimetype/servicetype 'video/x-anim'                     
kbuildsycoca: WARNING: 'Multimedia/gxine.desktop' specifies undefined mimetype/servicetype 'video/anim'                       
kbuildsycoca: WARNING: 'Multimedia/gxine.desktop' specifies undefined mimetype/servicetype 'video/x-quicktime'                
kbuildsycoca: WARNING: 'Multimedia/gxine.desktop' specifies undefined mimetype/servicetype 'audio/x-m4a'                      
kbuildsycoca: WARNING: 'Multimedia/gxine.desktop' specifies undefined mimetype/servicetype 'application/x-quicktimeplayer'    
kbuildsycoca: WARNING: 'Multimedia/gxine.desktop' specifies undefined mimetype/servicetype 'application/x-ogm'                
kbuildsycoca: WARNING: 'Multimedia/gxine.desktop' specifies undefined mimetype/servicetype 'application/x-ogm-audio'          
kbuildsycoca: WARNING: 'Multimedia/gxine.desktop' specifies undefined mimetype/servicetype 'application/x-ogm-video'          
kbuildsycoca: WARNING: 'Multimedia/gxine.desktop' specifies undefined mimetype/servicetype 'audio/ogg'                        
kbuildsycoca: WARNING: 'Multimedia/gxine.desktop' specifies undefined mimetype/servicetype 'audio/x-ogg'                      
kbuildsycoca: WARNING: 'Multimedia/gxine.desktop' specifies undefined mimetype/servicetype 'video/ogg'                        
kbuildsycoca: WARNING: 'Multimedia/gxine.desktop' specifies undefined mimetype/servicetype 'video/x-ogg'                      
kbuildsycoca: WARNING: 'Multimedia/gxine.desktop' specifies undefined mimetype/servicetype 'video/x-ms-asf-plugin'            
kbuildsycoca: WARNING: 'Multimedia/gxine.desktop' specifies undefined mimetype/servicetype 'video/x-ms-wvx'                   
kbuildsycoca: WARNING: 'Multimedia/gxine.desktop' specifies undefined mimetype/servicetype 'video/x-ms-wax'                   
kbuildsycoca: WARNING: 'Multimedia/gxine.desktop' specifies undefined mimetype/servicetype 'audio/aiff'                       
kbuildsycoca: WARNING: 'Multimedia/gxine.desktop' specifies undefined mimetype/servicetype 'audio/x-pn-aiff'                  
kbuildsycoca: WARNING: 'Multimedia/gxine.desktop' specifies undefined mimetype/servicetype 'audio/flac'                       
kbuildsycoca: WARNING: 'Multimedia/gxine.desktop' specifies undefined mimetype/servicetype 'audio/x-realaudio'                
kbuildsycoca: WARNING: 'Multimedia/gxine.desktop' specifies undefined mimetype/servicetype 'audio/x-basic'                    
kbuildsycoca: WARNING: 'Multimedia/gxine.desktop' specifies undefined mimetype/servicetype 'audio/x-pn-au'                    
kbuildsycoca: WARNING: 'Multimedia/gxine.desktop' specifies undefined mimetype/servicetype 'image/x-png'                      
kbuildsycoca: WARNING: 'Multimedia/gxine.desktop' specifies undefined mimetype/servicetype 'video/mng'                        
kbuildsycoca: WARNING: 'Multimedia/gxine.desktop' specifies undefined mimetype/servicetype 'video/msvideo'                    
kbuildsycoca: WARNING: 'Multimedia/gxine.desktop' specifies undefined mimetype/servicetype 'video/mkv'                        
kbuildsycoca: WARNING: 'Multimedia/gxine.desktop' specifies undefined mimetype/servicetype 'video/x-mpeg'                     
kbuildsycoca: WARNING: 'Multimedia/gxine.desktop' specifies undefined mimetype/servicetype 'audio/wav'                        
kbuildsycoca: WARNING: 'Multimedia/gxine.desktop' specifies undefined mimetype/servicetype 'audio/x-pn-wav'                   
kbuildsycoca: WARNING: 'Multimedia/gxine.desktop' specifies undefined mimetype/servicetype 'audio/x-pn-windows-acm'           
kbuildsycoca: WARNING: 'Multimedia/gxine.desktop' specifies undefined mimetype/servicetype 'audio/musepack'                   
kbuildsycoca: WARNING: 'Multimedia/gxine.desktop' specifies undefined mimetype/servicetype 'audio/mpeg2'                      
kbuildsycoca: WARNING: 'Multimedia/gxine.desktop' specifies undefined mimetype/servicetype 'audio/x-mpeg2'                    
kbuildsycoca: WARNING: 'Multimedia/gxine.desktop' specifies undefined mimetype/servicetype 'audio/mpeg3'                      
kbuildsycoca: WARNING: 'Multimedia/gxine.desktop' specifies undefined mimetype/servicetype 'audio/x-mpeg3'                    
kbuildsycoca: WARNING: 'Multimedia/gxine.desktop' specifies undefined mimetype/servicetype 'audio/x-mpeg'                     
kbuildsycoca: WARNING: 'Multimedia/gxine.desktop' specifies undefined mimetype/servicetype 'audio/mp3'                        
kbuildsycoca: WARNING: '/usr/share/applications/gxine.desktop' specifies undefined mimetype/servicetype 'application/annodex' 
kbuildsycoca: WARNING: '/usr/share/applications/gxine.desktop' specifies undefined mimetype/servicetype 'application/x-annodex'                                                                                                                             
kbuildsycoca: WARNING: '/usr/share/applications/gxine.desktop' specifies undefined mimetype/servicetype 'audio/annodex'       
kbuildsycoca: WARNING: '/usr/share/applications/gxine.desktop' specifies undefined mimetype/servicetype 'audio/x-annodex'     
kbuildsycoca: WARNING: '/usr/share/applications/gxine.desktop' specifies undefined mimetype/servicetype 'video/annodex'       
kbuildsycoca: WARNING: '/usr/share/applications/gxine.desktop' specifies undefined mimetype/servicetype 'video/x-annodex'     
kbuildsycoca: WARNING: '/usr/share/applications/gxine.desktop' specifies undefined mimetype/servicetype 'audio/aiff'          
kbuildsycoca: WARNING: '/usr/share/applications/gxine.desktop' specifies undefined mimetype/servicetype 'audio/x-pn-aiff'     
kbuildsycoca: WARNING: '/usr/share/applications/gxine.desktop' specifies undefined mimetype/servicetype 'audio/flac'          
kbuildsycoca: WARNING: '/usr/share/applications/gxine.desktop' specifies undefined mimetype/servicetype 'audio/x-realaudio'   
kbuildsycoca: WARNING: '/usr/share/applications/gxine.desktop' specifies undefined mimetype/servicetype 'audio/x-basic'       
kbuildsycoca: WARNING: '/usr/share/applications/gxine.desktop' specifies undefined mimetype/servicetype 'audio/x-pn-au'       
kbuildsycoca: WARNING: '/usr/share/applications/gxine.desktop' specifies undefined mimetype/servicetype 'video/x-ms-asf-plugin'                                                                                                                             
kbuildsycoca: WARNING: '/usr/share/applications/gxine.desktop' specifies undefined mimetype/servicetype 'video/x-ms-wvx'      
kbuildsycoca: WARNING: '/usr/share/applications/gxine.desktop' specifies undefined mimetype/servicetype 'video/x-ms-wax'      
kbuildsycoca: WARNING: '/usr/share/applications/gxine.desktop' specifies undefined mimetype/servicetype 'video/x-flv'         
kbuildsycoca: WARNING: '/usr/share/applications/gxine.desktop' specifies undefined mimetype/servicetype 'video/flv'           
kbuildsycoca: WARNING: '/usr/share/applications/gxine.desktop' specifies undefined mimetype/servicetype 'application/x-flash-video'                                                                                                                         
kbuildsycoca: WARNING: '/usr/share/applications/gxine.desktop' specifies undefined mimetype/servicetype 'video/x-quicktime'   
kbuildsycoca: WARNING: '/usr/share/applications/gxine.desktop' specifies undefined mimetype/servicetype 'audio/x-m4a'         
kbuildsycoca: WARNING: '/usr/share/applications/gxine.desktop' specifies undefined mimetype/servicetype 'application/x-quicktimeplayer'                                                                                                                     
kbuildsycoca: WARNING: '/usr/share/applications/gxine.desktop' specifies undefined mimetype/servicetype 'application/x-ogm'   
kbuildsycoca: WARNING: '/usr/share/applications/gxine.desktop' specifies undefined mimetype/servicetype 'application/x-ogm-audio'                                                                                                                           
kbuildsycoca: WARNING: '/usr/share/applications/gxine.desktop' specifies undefined mimetype/servicetype 'application/x-ogm-video'                                                                                                                           
kbuildsycoca: WARNING: '/usr/share/applications/gxine.desktop' specifies undefined mimetype/servicetype 'audio/ogg'           
kbuildsycoca: WARNING: '/usr/share/applications/gxine.desktop' specifies undefined mimetype/servicetype 'audio/x-ogg'         
kbuildsycoca: WARNING: '/usr/share/applications/gxine.desktop' specifies undefined mimetype/servicetype 'video/ogg'           
kbuildsycoca: WARNING: '/usr/share/applications/gxine.desktop' specifies undefined mimetype/servicetype 'video/x-ogg'         
kbuildsycoca: WARNING: '/usr/share/applications/gxine.desktop' specifies undefined mimetype/servicetype 'audio/x-real-audio'  
kbuildsycoca: WARNING: '/usr/share/applications/gxine.desktop' specifies undefined mimetype/servicetype 'image/x-png'         
kbuildsycoca: WARNING: '/usr/share/applications/gxine.desktop' specifies undefined mimetype/servicetype 'video/mng'           
kbuildsycoca: WARNING: '/usr/share/applications/gxine.desktop' specifies undefined mimetype/servicetype 'video/msvideo'       
kbuildsycoca: WARNING: '/usr/share/applications/gxine.desktop' specifies undefined mimetype/servicetype 'audio/x-8svx'        
kbuildsycoca: WARNING: '/usr/share/applications/gxine.desktop' specifies undefined mimetype/servicetype 'audio/8svx'          
kbuildsycoca: WARNING: '/usr/share/applications/gxine.desktop' specifies undefined mimetype/servicetype 'audio/x-16sv'        
kbuildsycoca: WARNING: '/usr/share/applications/gxine.desktop' specifies undefined mimetype/servicetype 'audio/168sv'         
kbuildsycoca: WARNING: '/usr/share/applications/gxine.desktop' specifies undefined mimetype/servicetype 'image/x-ilbm'        
kbuildsycoca: WARNING: '/usr/share/applications/gxine.desktop' specifies undefined mimetype/servicetype 'image/ilbm'          
kbuildsycoca: WARNING: '/usr/share/applications/gxine.desktop' specifies undefined mimetype/servicetype 'video/x-anim'        
kbuildsycoca: WARNING: '/usr/share/applications/gxine.desktop' specifies undefined mimetype/servicetype 'video/anim'          
kbuildsycoca: WARNING: '/usr/share/applications/gxine.desktop' specifies undefined mimetype/servicetype 'video/mkv'           
kbuildsycoca: WARNING: '/usr/share/applications/gxine.desktop' specifies undefined mimetype/servicetype 'video/x-mpeg'        
kbuildsycoca: WARNING: '/usr/share/applications/gxine.desktop' specifies undefined mimetype/servicetype 'audio/wav'           
kbuildsycoca: WARNING: '/usr/share/applications/gxine.desktop' specifies undefined mimetype/servicetype 'audio/x-pn-wav'      
kbuildsycoca: WARNING: '/usr/share/applications/gxine.desktop' specifies undefined mimetype/servicetype 'audio/x-pn-windows-acm'                                                                                                                            
kbuildsycoca: WARNING: '/usr/share/applications/gxine.desktop' specifies undefined mimetype/servicetype 'audio/musepack'      
kbuildsycoca: WARNING: '/usr/share/applications/gxine.desktop' specifies undefined mimetype/servicetype 'audio/mpeg2'         
kbuildsycoca: WARNING: '/usr/share/applications/gxine.desktop' specifies undefined mimetype/servicetype 'audio/x-mpeg2'       
kbuildsycoca: WARNING: '/usr/share/applications/gxine.desktop' specifies undefined mimetype/servicetype 'audio/mpeg3'         
kbuildsycoca: WARNING: '/usr/share/applications/gxine.desktop' specifies undefined mimetype/servicetype 'audio/x-mpeg3'       
kbuildsycoca: WARNING: '/usr/share/applications/gxine.desktop' specifies undefined mimetype/servicetype 'audio/x-mpeg'        
kbuildsycoca: WARNING: '/usr/share/applications/gxine.desktop' specifies undefined mimetype/servicetype 'audio/mp3'           
kbuildsycoca: WARNING: '/usr/share/applications/kde4/kfontview.desktop' specifies undefined mimetype/servicetype 'fonts/package'                                                                                                                            
kbuildsycoca: WARNING: '/usr/share/applications/sun-java.desktop' specifies undefined mimetype/servicetype 'application/x-java-archive'                                                                                                                     
kbuildsycoca: WARNING: 'katepart.desktop' specifies undefined mimetype/servicetype 'text/x-fortran'                           
kbuildsycoca: WARNING: '/usr/share/applications/kde4/kompare.desktop' specifies undefined mimetype/servicetype 'text/x-patch' 
kbuildsycoca: WARNING: '/usr/share/applications/kde4/kword.desktop' specifies undefined mimetype/servicetype 'application/rtf'
kbuildsycoca: WARNING: '/usr/share/applications/gimp.desktop' specifies undefined mimetype/servicetype 'image/bmp'            
kbuildsycoca: WARNING: '/usr/share/applications/gimp.desktop' specifies undefined mimetype/servicetype 'image/g3fax'          
kbuildsycoca: WARNING: '/usr/share/applications/gimp.desktop' specifies undefined mimetype/servicetype 'image/x-fits'         
kbuildsycoca: WARNING: '/usr/share/applications/gimp.desktop' specifies undefined mimetype/servicetype 'image/pcx'            
kbuildsycoca: WARNING: '/usr/share/applications/gimp.desktop' specifies undefined mimetype/servicetype 'image/x-portable-anymap'                                                                                                                            
kbuildsycoca: WARNING: '/usr/share/applications/gimp.desktop' specifies undefined mimetype/servicetype 'image/x-portable-graymap'                                                                                                                           
kbuildsycoca: WARNING: '/usr/share/applications/gimp.desktop' specifies undefined mimetype/servicetype 'image/x-psd'          
kbuildsycoca: WARNING: '/usr/share/applications/gimp.desktop' specifies undefined mimetype/servicetype 'image/x-sgi'          
kbuildsycoca: WARNING: '/usr/share/applications/gimp.desktop' specifies undefined mimetype/servicetype 'image/x-tga'          
kbuildsycoca: WARNING: '/usr/share/applications/gimp.desktop' specifies undefined mimetype/servicetype 'image/x-xbitmap'      
kbuildsycoca: WARNING: '/usr/share/applications/gimp.desktop' specifies undefined mimetype/servicetype 'image/x-xwindowdump'  
kbuildsycoca: WARNING: '/usr/share/applications/gimp.desktop' specifies undefined mimetype/servicetype 'image/x-xcf'          
kbuildsycoca: WARNING: '/usr/share/applications/gimp.desktop' specifies undefined mimetype/servicetype 'image/x-compressed-xcf'                                                                                                                             
kbuildsycoca: WARNING: '/usr/share/applications/gimp.desktop' specifies undefined mimetype/servicetype 'image/x-psd'          
kbuildsycoca: WARNING: '/usr/share/applications/gimp.desktop' specifies undefined mimetype/servicetype 'image/x-icon'         
kbuildsycoca: WARNING: '/usr/share/applications/gimp.desktop' specifies undefined mimetype/servicetype 'image/x-xpixmap'      
kbuildsycoca: WARNING: '/usr/share/applications/kde4/kwordquiz.desktop' specifies undefined mimetype/servicetype 'application/x-kvtml'                                                                                                                      
kbuildsycoca: WARNING: '/usr/share/applications/kde4/ktorrent.desktop' specifies undefined mimetype/servicetype 'application/x-torrent'                                                                                                                     
kbuildsycoca: WARNING: 'knotify.desktop' specifies undefined mimetype/servicetype 'KNotify'                                   
kbuildsycoca: WARNING: '/usr/share/applications/kde4/kmplot.desktop' specifies undefined mimetype/servicetype 'application/x-kmplot'                                                                                                                        
kbuildsycoca: WARNING: '/usr/share/applications/kde4/ksysguard.desktop' specifies undefined mimetype/servicetype 'application/x-ksysguard'                                                                                                                  
kbuildsycoca: WARNING: '/usr/share/applications/kde4/kget.desktop' specifies undefined mimetype/servicetype 'application/metalink+xml'                                                                                                                      
kbuildsycoca: WARNING: '/usr/share/applications/kde4/kdevelop.desktop' specifies undefined mimetype/servicetype 'application/x-kdevelop'                                                                                                                    
kbuildsycoca: WARNING: '/usr/share/applications/gqview.desktop' specifies undefined mimetype/servicetype 'application/x-navi-animation'                                                                                                                     
kbuildsycoca: WARNING: '/usr/share/applications/gqview.desktop' specifies undefined mimetype/servicetype 'image/bmp'          
kbuildsycoca: WARNING: '/usr/share/applications/gqview.desktop' specifies undefined mimetype/servicetype 'image/x-MS-bmp'
kbuildsycoca: WARNING: '/usr/share/applications/gqview.desktop' specifies undefined mimetype/servicetype 'image/x-icon'
kbuildsycoca: WARNING: '/usr/share/applications/gqview.desktop' specifies undefined mimetype/servicetype 'image/x-portable-anymap'
kbuildsycoca: WARNING: '/usr/share/applications/gqview.desktop' specifies undefined mimetype/servicetype 'image/x-portable-graymap'
kbuildsycoca: WARNING: '/usr/share/applications/gqview.desktop' specifies undefined mimetype/servicetype 'image/x-cmu-raster'
kbuildsycoca: WARNING: '/usr/share/applications/gqview.desktop' specifies undefined mimetype/servicetype 'image/x-sun-raster'
kbuildsycoca: WARNING: '/usr/share/applications/gqview.desktop' specifies undefined mimetype/servicetype 'image/x-tga'
kbuildsycoca: WARNING: '/usr/share/applications/gqview.desktop' specifies undefined mimetype/servicetype 'image/vnd.wap.wbmp'
kbuildsycoca: WARNING: '/usr/share/applications/gqview.desktop' specifies undefined mimetype/servicetype 'image/x-xbitmap'
kbuildsycoca: WARNING: '/usr/share/applications/gqview.desktop' specifies undefined mimetype/servicetype 'image/x-xpixmap'
kbuildsycoca: WARNING: '/usr/share/applications/gqview.desktop' specifies undefined mimetype/servicetype 'image/svg'
kbuildsycoca: WARNING: '/usr/share/applications/gqview.desktop' specifies undefined mimetype/servicetype 'image/x-png'
kbuildsycoca: WARNING: '/usr/share/applications/gqview.desktop' specifies undefined mimetype/servicetype 'image/xpm'
kdecore (KMimeType): WARNING: KServiceType::offers : servicetype ThumbCreator not found
kdecore (KMimeType): WARNING: KServiceType::offers : servicetype ThumbCreator not found
Dipende da kbuildsycoca?

Rispondi