• Login
  • Register
  • Dolphin Forums
  • Home
  • FAQ
  • Download
  • Wiki
  • Code


Dolphin, the GameCube and Wii emulator - Forums › Dolphin Emulator Discussion and Support › Support v
« Previous 1 ... 584 585 586 587 588 ... 1192 Next »

Cannot compile Dolphin on Linux
View New Posts | View Today's Posts

Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Thread Modes
Cannot compile Dolphin on Linux
01-30-2014, 03:49 PM
#1
Qaazavaca Qaanic
Unregistered
 
I'm using a LMDE 201303/Windows dual-boot and cannot compile Dolphin.
I'm using the Nvidia proprietary drivers with a GTX 660, and I get an X11 error. (OPENGL_gl_LIBRARY)
Cmake output: (Show Spoiler)
-- The C compiler identification is GNU 4.7.3
-- The CXX compiler identification is GNU 4.7.3
-- Check for working C compiler: /usr/bin/cc
-- Check for working C compiler: /usr/bin/cc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Found Git: /usr/bin/git (found version "1.7.10.4")
x86_64
-- Performing Test FLAG_TYPE_LIMITS
-- Performing Test FLAG_TYPE_LIMITS - Success
-- Performing Test FLAG_SIGN_COMPARE
-- Performing Test FLAG_SIGN_COMPARE - Success
-- Performing Test FLAG_IGNORED_QUALIFIERS
-- Performing Test FLAG_IGNORED_QUALIFIERS - Success
-- Performing Test FLAG_UNINITIALIZED
-- Performing Test FLAG_UNINITIALIZED - Success
-- Performing Test FLAG_LOGICAL_OP
-- Performing Test FLAG_LOGICAL_OP - Success
-- Performing Test FLAG_SHADOW
-- Performing Test FLAG_SHADOW - Success
-- Performing Test FLAG_INIT_SELF
-- Performing Test FLAG_INIT_SELF - Success
-- Performing Test FLAG_VISIBILITY_INLINES_HIDDEN
-- Performing Test FLAG_VISIBILITY_INLINES_HIDDEN - Success
-- Performing Test FLAG_VISIBILITY_HIDDEN
-- Performing Test FLAG_VISIBILITY_HIDDEN - Success
-- Found PkgConfig: /usr/bin/pkg-config (found version "0.26")
-- Try OpenMP C flag = [-fopenmp]
-- Performing Test OpenMP_FLAG_DETECTED
-- Performing Test OpenMP_FLAG_DETECTED - Success
-- Try OpenMP CXX flag = [-fopenmp]
-- Performing Test OpenMP_FLAG_DETECTED
-- Performing Test OpenMP_FLAG_DETECTED - Success
-- Found OpenMP: -fopenmp
OpenMP parallelization enabled
[color=#ff3333]-- Could NOT find OpenGL (missing: OPENGL_gl_LIBRARY) [/color]
-- Found ALSA: /usr/lib/x86_64-linux-gnu/libasound.so (found version "1.0.27.1")
ALSA found, enabling ALSA sound backend
ao found, enabling ao sound backend
bluez found, enabling bluetooth support
PulseAudio found, enabling PulseAudio sound backend
-- Could NOT find OpenAL (missing: OPENAL_LIBRARY OPENAL_INCLUDE_DIR)
OpenAL NOT found, disabling OpenAL sound backend
-- checking for modules 'wayland-egl;wayland-client;wayland-cursor'
-- package 'wayland-egl' not found
-- package 'wayland-client' not found
-- package 'wayland-cursor' not found
Wayland support disabled
X11 support disabled
CMake Error at CMakeLists.txt:418 (message):


No suitable display platform found

Requires wayland or x11 to run


-- Configuring incomplete, errors occurred!
Find libGL.so*: (Show Spoiler)
./usr/lib/x86_64-linux-gnu/libGL.so.1
./usr/lib/x86_64-linux-gnu/nvidia/current/libGL.so.1
./usr/lib/x86_64-linux-gnu/nvidia/current/libGL.so.304.88
./usr/lib/x86_64-linux-gnu/nvidia/libGL.so.1
./usr/lib/mesa-diverted/x86_64-linux-gnu/libGL.so.1
./usr/lib/mesa-diverted/x86_64-linux-gnu/libGL.so.1.2.0
./usr/lib/mesa-diverted/x86_64-linux-gnu/libGL.so
./usr/lib/mesa-diverted/i386-linux-gnu/libGL.so.1
./usr/lib/mesa-diverted/i386-linux-gnu/libGL.so.1.2.0
"which libGL.so" returns nothing.
Reply
01-30-2014, 06:37 PM (This post was last modified: 01-30-2014, 06:38 PM by degasus.)
#2
degasus Offline
Developer
**********
Developers (Some Administrators and Super Moderators)
Posts: 1,828
Threads: 10
Joined: May 2012
For compilation, you also need the development packages. iirc it was something like: libgl1-mesa-dev
Find
Reply
01-30-2014, 10:48 PM
#3
artantaaa Offline
Member
***
Posts: 173
Threads: 15
Joined: Jan 2011
If you've already installed all of the packages listed in the compilation instructions, it may be caused by LMDE. I remember once having to make a symbolic link to libGL to get it to compile in Mint. If you're using LMDE to get the Mate desktop, you can easily install Mate in Debian Wheezy by following the instructions at http://forums.mate-desktop.org/viewtopic.php?f=5&t=1506. It worked for me in Wheezy with no trouble, and I'm using Nvidia too.
Find
Reply
01-31-2014, 09:46 AM
#4
Qaazavaca Qaanic
Unregistered
 
@degasus:
libgl1-mesa-dev is installed.
I think the nvidia driver does something. What file is being looked for where, so I can make the proper symlink?

@artantaaa:
I think LMDE is slightly easier to use than Debian. I'm using Cinnamon right now, but I'll switch to MATE if neccesary. (used both before) How easy is KDE to use? Gnome Minus-3?
Reply
01-31-2014, 04:28 PM
#5
artantaaa Offline
Member
***
Posts: 173
Threads: 15
Joined: Jan 2011
Try this command:
Code:
locate libGL.so.
I can't tell you which one to link to, but here's what my system has:
/etc/alternatives/glx--libGL.so.1-x86_64-linux-gnu
/etc/alternatives/nvidia--libGL.so.1-x86_64-linux-gnu/usr/lib/mesa-diverted/x86_64-linux-gnu/libGL.so.1
/usr/lib/mesa-diverted/x86_64-linux-gnu/libGL.so.1.2
/usr/lib/x86_64-linux-gnu/libGL.so.1
/usr/lib/x86_64-linux-gnu/nvidia/libGL.so.1
/usr/lib/x86_64-linux-gnu/nvidia/current/libGL.so.1
/usr/lib/x86_64-linux-gnu/nvidia/current/libGL.so.304.88

Quote:I think LMDE is slightly easier to use than Debian. I'm using Cinnamon right now, but I'll switch to MATE if neccesary. (used both before) How easy is KDE to use? Gnome Minus-3?

I agree with you about LMDE being easier to install, but it's based on testing and requires more of the end user at times. I decided to go with stable Debian the day a little old lady called me to ask whether she should keep the current version or install the package maintainer's version of some CUPS configuration file. I think you can install Cinnamon in stable as well if you prefer it, but if you do it by adding a Mint repository, you're no longer stable. My system with Mate is almost identical to LMDE with Mate, but I did have to manually install a lot of packages that are usually preinstalled for you. Here's the list of all of them if it will help you:

Spoiler: (Show Spoiler)
acl
acpi
acpi-support-base
acpid
adduser
aisleriot
alsa-base
alsa-utils
amd64-microcode
ant
ant-optional
apache2.2-bin
apt
apt-listchanges
apt-utils
apt-xapian-index
aptdaemon
aptdaemon-data
aptitude
aptitude-common
ardour
aspell
aspell-en
at
at-spi2-core
atmel-firmware
atril
atril-common
audacity
audacity-data
autotalent
avahi-daemon
b43-fwcutter
base-files
base-passwd
bash
bash-completion
bc
bind9-host
binutils
blender
blop
bluez
bluez-firmware
bsd-mailx
bsdmainutils
bsdutils
busybox
bzip2
ca-certificates
ca-certificates-java
caja
caja-common
camorama
cdparanoia
cdrdao
cmt
colord
console-setup
console-setup-linux
console-tools
consolekit
coreutils
cpio
cpp
cpp-4.7
cpufrequtils
crda
cron
cryptsetup-bin
cups
cups-bsd
cups-client
cups-common
cups-filters
cups-ppdc
dash
dasher
dasher-data
db5.1-util
dbus
dbus-x11
dc
dconf-gsettings-backend:amd64
dconf-service
dconf-tools
debconf
debconf-i18n
debian-archive-keyring
debian-faq
debianutils
default-jre
default-jre-headless
desktop-base
desktop-file-utils
dictionaries-common
diffutils
discover
discover-data
dmidecode
dmsetup
dmz-cursor-theme
dnsmasq-base
dnsutils
doc-debian
docbook-xml
docbook-xsl
dosfstools
dpkg
dvd+rw-tools
e2fslibs:amd64
e2fsprogs
eject
elinks
elinks-data
enchant
engrampa
engrampa-common
eom
eom-common
espeak-data:amd64
exim4
exim4-base
exim4-config
exim4-daemon-light
extlinux
ffmpegthumbnailer
file
findutils
firmware-atheros
firmware-b43-installer
firmware-bnx2
firmware-bnx2x
firmware-brcm80211
firmware-intelwimax
firmware-ipw2x00
firmware-ivtv
firmware-iwlwifi
firmware-libertas
firmware-linux
firmware-linux-free
firmware-linux-nonfree
firmware-myricom
firmware-netxen
firmware-qlogic
firmware-ralink
firmware-realtek
flashplugin-nonfree
fontconfig
fontconfig-config
fonts-droid
fonts-freefont-ttf
fonts-liberation
fonts-lyx
fonts-opensymbol
fonts-sil-gentium
fonts-sil-gentium-basic
fonts-stix
foomatic-db-compressed-ppds
foomatic-db-engine
foomatic-filters
freepats
frei0r-plugins
ftp
fuse
gcc-4.7-base:amd64
gconf-service
gconf2
gconf2-common
gcr
gdebi
gdebi-core
genisoimage
geoip-database
gettext-base
ghostscript
ghostscript-cups
gimp
gimp-data
gir1.2-atk-1.0
gir1.2-freedesktop
gir1.2-gdkpixbuf-2.0
gir1.2-glib-2.0
gir1.2-gnomebluetooth-1.0
gir1.2-gtk-2.0
gir1.2-gtk-3.0
gir1.2-mate-panel
gir1.2-pango-1.0
gir1.2-vte-2.90
gksu
glib-networking:amd64
glib-networking-common
glib-networking-services
gnome-bluetooth
gnome-disk-utility
gnome-icon-theme
gnome-keyring
gnome-mime-data
gnupg
golly
gparted
gpgv
grep
groff-base
growisofs
grub-common
grub-pc
grub-pc-bin
grub2-common
gsettings-desktop-schemas
gsfonts
gstreamer0.10-alsa:amd64
gstreamer0.10-ffmpeg:amd64
gstreamer0.10-gconf:amd64
gstreamer0.10-plugins-bad:amd64
gstreamer0.10-plugins-base:amd64
gstreamer0.10-plugins-good:amd64
gstreamer0.10-x:amd64
gtk-recordmydesktop
gtk2-engines:amd64
gtk2-engines-murrine:amd64
gtk2-engines-pixbuf:amd64
gtk3-engines-unico:amd64
guile-2.0-libs
gvfs:amd64
gvfs-backends
gvfs-bin
gvfs-common
gvfs-daemons
gvfs-libs:amd64
gzip
hddtemp
hdparm
hicolor-icon-theme
host
hostname
hp-ppd
hpijs
hplip
hplip-data
hunspell-en-us
hydrogen
hydrogen-drumkits
iamerican
ibritish
icedtea-6-jre-cacao:amd64
icedtea-6-jre-jamvm:amd64
icedtea-netx:amd64
icedtea-netx-common
ienglish-common
ifupdown
imagemagick-common
info
initramfs-tools
initscripts
insserv
install-info
installation-report
intel-microcode
iproute
iptables
iputils-ping
isc-dhcp-client
isc-dhcp-common
iso-codes
ispell
iucode-tool
iw
jack-rack
jackd
jackd2
jackd2-firewire
java-common
k3b
k3b-data
kate-data
katepart
kde-runtime
kde-runtime-data
kdelibs-bin
kdelibs5-data
kdelibs5-plugins
kdoctools
keyboard-configuration
klibc-utils
kmines
kmod
krb5-locales
ksudoku
laptop-detect
less
liba52-0.7.4
libaa1:amd64
libaacs0:amd64
libacl1:amd64
libamd2.2.0
libao-common
libao4
libapache-pom-java
libapache2-mod-dnssd
libapr1
libaprutil1
libaprutil1-dbd-sqlite3
libaprutil1-ldap
libapt-inst1.5:amd64
libapt-pkg4.12:amd64
libarchive12:amd64
libart-2.0-2:amd64
libasound2:amd64
libaspell15
libasprintf0c2:amd64
libass4:amd64
libasyncns0:amd64
libatasmart4:amd64
libatk-adaptor:amd64
libatk-adaptor-data
libatk-bridge2.0-0:amd64
libatk-wrapper-java
libatk-wrapper-java-jni:amd64
libatk1.0-0:amd64
libatk1.0-data
libatkmm-1.6-1
libatril
libatspi1.0-0
libatspi2.0-0:amd64
libattica0
libattr1:amd64
libaubio2
libaudio2:amd64
libaudit0
libavahi-client3:amd64
libavahi-common-data:amd64
libavahi-common3:amd64
libavahi-core7:amd64
libavahi-glib1:amd64
libavahi-ui-gtk3-0:amd64
libavc1394-0:amd64
libavcodec53:amd64
libavdevice53:amd64
libavformat53:amd64
libavutil51:amd64
libbabl-0.1-0:amd64
libbind9-80
libblas3
libblkid1:amd64
libbluetooth3:amd64
libbluray1:amd64
libbonobo2-0
libbonobo2-common
libbonoboui2-0
libbonoboui2-common
libboost-iostreams1.49.0
libbsd0:amd64
libbz2-1.0:amd64
libc-bin
libc6:amd64
libcaca0:amd64
libcairo-gobject2:amd64
libcairo-perl
libcairo2:amd64
libcairomm-1.0-1
libcaja-extension
libcanberra-gtk-module:amd64
libcanberra-gtk0:amd64
libcanberra-gtk3-0:amd64
libcanberra-gtk3-module:amd64
libcanberra0:amd64
libcap-ng0
libcap2:amd64
libcap2-bin
libcdaudio1
libcddb2
libcdio-cdda1
libcdio-paranoia1
libcdio13
libcdparanoia0
libck-connector0:amd64
libclass-isa-perl
libclucene0ldbl
libcmis-0.2-0
libcolamd2.7.1
libcolord1:amd64
libcomerr2:amd64
libcommons-beanutils-java
libcommons-collections3-java
libcommons-compress-java
libcommons-digester-java
libcommons-logging-java
libcommons-parent-java
libconfig++9:amd64
libconsole
libcpufreq0
libcroco3:amd64
libcrypt-passwdmd5-perl
libcryptsetup4
libcrystalhd3:amd64
libcups2:amd64
libcupscgi1:amd64
libcupsdriver1:amd64
libcupsfilters1:amd64
libcupsimage2:amd64
libcupsmime1:amd64
libcupsppdc1:amd64
libcurl3-gnutls:amd64
libcwidget3
libdaemon0
libdatrie1:amd64
libdb-java
libdb-je-java
libdb5.1:amd64
libdb5.1-java
libdb5.1-java-jni:amd64
libdbus-1-3:amd64
libdbus-glib-1-2:amd64
libdbusmenu-qt2
libdc1394-22:amd64
libdca0
libdconf0:amd64
libdevmapper-event1.02.1:amd64
libdevmapper1.02.1:amd64
libdirac-decoder0:amd64
libdirac-encoder0:amd64
libdirectfb-1.2-9:amd64
libdiscid0:amd64
libdiscover2
libdjvulibre-text
libdjvulibre21
libdlrestrictions1
libdns88
libdrm-intel1:amd64
libdrm-nouveau1a:amd64
libdrm-radeon1:amd64
libdrm2:amd64
libdv4:amd64
libdvbpsi7
libdvdnav4
libdvdread4
libebml3:amd64
libedit2:amd64
libelf1
libenca0
libenchant1c2a
libencode-locale-perl
libept1.4.12
libescpr1:amd64
libespeak1:amd64
libevent-2.0-5:amd64
libexempi3:amd64
libexif12:amd64
libexiv2-12
libexpat1:amd64
libexttextcat-data
libexttextcat0
libfaad2:amd64
libfam0
libffado2
libffi5:amd64
libffmpegthumbnailer4
libfftw3-3:amd64
libfile-basedir-perl
libfile-copy-recursive-perl
libfile-desktopentry-perl
libfile-listing-perl
libfile-mimeinfo-perl
libflac++6:amd64
libflac8:amd64
libflite1:amd64
libfont-afm-perl
libfont-freetype-perl
libfontconfig1:amd64
libfontenc1:amd64
libfreetype6:amd64
libfribidi0:amd64
libfs6:amd64
libfsplib0
libfuse2:amd64
libgail-3-0:amd64
libgail18:amd64
libgavl1:amd64
libgc1c2
libgcc1:amd64
libgck-1-0
libgconf-2-4:amd64
libgconf2-4:amd64
libgcr-3-1
libgcr-3-common
libgcrypt11:amd64
libgd2-xpm:amd64
libgdbm3:amd64
libgdk-pixbuf2.0-0:amd64
libgdk-pixbuf2.0-common
libgdu-gtk0
libgdu0
libgegl-0.2-0:amd64
libgeoclue0
libgeoip1
libgfortran3:amd64
libgif4
libgimp2.0
libgirepository-1.0-1
libgksu2-0
libgl1-mesa-dri:amd64
libgl1-mesa-glx:amd64
libglade2-0
libglapi-mesa:amd64
libglew1.7:amd64
libglib-perl
libglib2.0-0:amd64
libglib2.0-bin
libglib2.0-data
libglibmm-2.4-1c2a:amd64
libglu1-mesa:amd64
libgme0
libgmp10:amd64
libgnome-bluetooth10
libgnome-keyring-common
libgnome-keyring0:amd64
libgnome-speech7
libgnome2-0
libgnome2-common
libgnomecanvas2-0
libgnomecanvas2-common
libgnomecanvasmm-2.6-1c2a
libgnomeui-0
libgnomeui-common
libgnomevfs2-0
libgnomevfs2-common
libgnomevfs2-extra
libgnutls26:amd64
libgomp1:amd64
libgoocanvas-common
libgoocanvas3
libgpg-error0:amd64
libgpgme11
libgphoto2-2:amd64
libgphoto2-l10n
libgphoto2-port0:amd64
libgpm2:amd64
libgraphite2-2.0.0
libgs9
libgs9-common
libgsm1:amd64
libgssapi-krb5-2:amd64
libgssglue1:amd64
libgstreamer-plugins-bad0.10-0:amd64
libgstreamer-plugins-base0.10-0:amd64
libgstreamer0.10-0:amd64
libgtk-3-0:amd64
libgtk-3-bin
libgtk-3-common
libgtk2-perl
libgtk2.0-0:amd64
libgtk2.0-bin
libgtk2.0-common
libgtkmm-2.4-1c2a
libgtksourceview2.0-0
libgtksourceview2.0-common
libgtop2-7
libgtop2-common
libgudev-1.0-0:amd64
libgusb2
libgutenprint2
libgxps2:amd64
libhpmud0
libhsqldb-java
libhtml-form-perl
libhtml-format-perl
libhtml-parser-perl
libhtml-tagset-perl
libhtml-tree-perl
libhttp-cookies-perl
libhttp-daemon-perl
libhttp-date-perl
libhttp-message-perl
libhttp-negotiate-perl
libhunspell-1.3-0:amd64
libhyphen0
libice6:amd64
libicu48:amd64
libicu4j-java
libid3tag0
libidl0
libidn11:amd64
libiec61883-0
libieee1284-3:amd64
libijs-0.35
libilmbase6
libimobiledevice2
libio-socket-ip-perl
libio-socket-ssl-perl
libiodbc2
libisc84
libisccc80
libisccfg82
libiso9660-8
libjack-jackd2-0:amd64
libjasper1:amd64
libjavascriptcoregtk-1.0-0
libjavascriptcoregtk-3.0-0
libjaxp1.3-java
libjbig0:amd64
libjbig2dec0
libjim0debian2:amd64
libjline-java
libjpeg62:amd64
libjpeg8:amd64
libjson0:amd64
libjtidy-java
libk3b6
libk3b6-extracodecs
libk5crypto3:amd64
libkate1
libkatepartinterfaces4
libkcddb4
libkcmutils4
libkde3support4
libkdeclarative5
libkdecore5
libkdegames5a
libkdesu5
libkdeui5
libkdewebkit5
libkdnssd4
libkemoticons4
libkeyutils1:amd64
libkfile4
libkhtml5
libkidletime4
libkio5
libkjsapi4
libkjsembed4
libklibc
libkmediaplayer4
libkmod2:amd64
libknewstuff3-4
libknotifyconfig4
libkntlm4
libkparts4
libkpathsea6
libkpty4
libkrb5-3:amd64
libkrb5support0:amd64
libkrosscore4
libktexteditor4
liblapack3
liblcms1:amd64
liblcms2-2:amd64
libldap-2.4-2:amd64
liblilv-0-0
liblircclient0
liblo7
liblocale-gettext-perl
liblockfile-bin
liblockfile1:amd64
liblqr-1-0:amd64
liblrdf0
libltdl7:amd64
liblua5.1-0:amd64
liblucene2-java
liblvm2app2.2:amd64
liblwp-mediatypes-perl
liblwp-protocol-https-perl
liblwres80
liblzma5:amd64
liblzo2-2:amd64
libmad0
libmagic1:amd64
libmagickcore5:amd64
libmagickwand5:amd64
libmailtools-perl
libmarco-private0
libmatebluetooth
libmatedesktop
libmatekbd4
libmatekeyring
libmatemenu
libmatepanelapplet
libmatepolkit
libmatesensorsappletplugin
libmateweather
libmateweather-common
libmatewnck
libmatewnck-common
libmatroska5:amd64
libmhash2
libmimic0
libminiupnpc5
libmlt++3
libmlt-data
libmlt5
libmms0:amd64
libmng1:amd64
libmodplug1
libmount1
libmozjs10d
libmp3lame0:amd64
libmpc2:amd64
libmpcdec6:amd64
libmpeg2-4
libmpfr4:amd64
libmtdev1:amd64
libmtp-common
libmtp-runtime
libmtp9:amd64
libmusicbrainz3-6
libmysqlclient18:amd64
libmythes-1.2-0
libnatpmp1
libnautilus-extension1a
libncurses5:amd64
libncursesw5:amd64
libneon27-gnutls
libnepomuk4
libnepomukquery4a
libnepomukutils4
libnet-dbus-perl
libnet-http-perl
libnet-ssleay-perl
libnetfilter-conntrack3:amd64
libnettle4:amd64
libnewt0.52
libnfnetlink0
libnfsidmap2:amd64
libnl-3-200:amd64
libnl-genl-3-200:amd64
libnl-route-3-200:amd64
libnm-glib-vpn1
libnm-glib4
libnm-gtk-common
libnm-gtk0
libnm-util2
libnotify4:amd64
libnspr4:amd64
libnss-mdns
libnss3:amd64
libnss3-1d:amd64
libntrack-qt4-1
libntrack0
libofa0
libogg0:amd64
liboobs-1-5
libopenal-data
libopenal1:amd64
libopencore-amrnb0:amd64
libopencore-amrwb0:amd64
libopencv-calib3d2.3
libopencv-contrib2.3
libopencv-core2.3
libopencv-features2d2.3
libopencv-flann2.3
libopencv-highgui2.3
libopencv-imgproc2.3
libopencv-legacy2.3
libopencv-ml2.3
libopencv-objdetect2.3
libopencv-video2.3
libopenexr6
libopenjpeg2:amd64
libopenobex1
libopenraw1:amd64
libopus0
liborbit2
liborc-0.4-0:amd64
libp11-kit0:amd64
libpam-cap:amd64
libpam-ck-connector:amd64
libpam-gnome-keyring
libpam-modules:amd64
libpam-modules-bin
libpam-runtime
libpam0g:amd64
libpango-perl
libpango1.0-0:amd64
libpangomm-1.4-1
libpaper-utils
libpaper1:amd64
libparted0debian1:amd64
libpcap0.8:amd64
libpci3:amd64
libpciaccess0:amd64
libpcre3:amd64
libpcsclite1:amd64
libperl5.14
libphonon4:amd64
libpipeline1:amd64
libpixman-1-0:amd64
libplasma3
libplist1
libpng12-0:amd64
libpolkit-agent-1-0:amd64
libpolkit-backend-1-0:amd64
libpolkit-gobject-1-0:amd64
libpolkit-qt-1-1
libpoppler-glib8:amd64
libpoppler19:amd64
libpopt0:amd64
libportaudio2:amd64
libportmidi0
libportsmf0
libpostproc52:amd64
libprocps0:amd64
libproxy0:amd64
libpth20
libpulse-mainloop-glib0:amd64
libpulse0:amd64
libpython2.7
libpython3.2
libqca2:amd64
libqt4-dbus:amd64
libqt4-declarative:amd64
libqt4-designer:amd64
libqt4-network:amd64
libqt4-opengl:amd64
libqt4-qt3support:amd64
libqt4-script:amd64
libqt4-sql:amd64
libqt4-sql-mysql:amd64
libqt4-sql-sqlite:amd64
libqt4-svg:amd64
libqt4-xml:amd64
libqt4-xmlpatterns:amd64
libqtcore4:amd64
libqtdbus4:amd64
libqtgui4:amd64
libqtwebkit4:amd64
libquadmath0:amd64
libquicktime2:amd64
libraptor1
libraptor2-0
librarian0
librasqal3
libraw1394-11:amd64
librdf0
libreadline5:amd64
libreadline6:amd64
libregexp-java
libreoffice
libreoffice-base
libreoffice-base-core
libreoffice-calc
libreoffice-common
libreoffice-core
libreoffice-draw
libreoffice-emailmerge
libreoffice-filter-binfilter
libreoffice-filter-mobiledev
libreoffice-gtk
libreoffice-impress
libreoffice-java-common
libreoffice-math
libreoffice-report-builder-bin
libreoffice-style-galaxy
libreoffice-style-tango
libreoffice-writer
libresid-builder0c2a
librpm3
librpmio3
librsvg2-2:amd64
librsvg2-common:amd64
librtmp0:amd64
librubberband2
libsamplerate0:amd64
libsane:amd64
libsane-common
libsane-extras:amd64
libsane-extras-common
libsane-hpaio
libsasl2-2:amd64
libsasl2-modules:amd64
libsbsms10:amd64
libschroedinger-1.0-0:amd64
libsdl-image1.2:amd64
libsdl1.2debian:amd64
libselinux1:amd64
libsemanage-common
libsemanage1:amd64
libsensors4:amd64
libsepol1:amd64
libserd-0-0:amd64
libservlet2.5-java
libsgutils2-2
libshout3:amd64
libsidplay2
libsigc++-2.0-0c2a:amd64
libslang2:amd64
libslp1
libslv2-9
libsm6:amd64
libsmbclient:amd64
libsndfile1:amd64
libsnmp-base
libsnmp15
libsocket-perl
libsolid4
libsonic0:amd64
libsoprano4
libsord-0-0:amd64
libsoundtouch0:amd64
libsoup-gnome2.4-1:amd64
libsoup2.4-1:amd64
libsox-fmt-alsa
libsox-fmt-base
libsox2
libspandsp2
libspectre1:amd64
libspeex1:amd64
libspeexdsp1:amd64
libsqlite3-0:amd64
libsratom-0-0:amd64
libss2:amd64
libssh-4:amd64
libssh2-1:amd64
libssl1.0.0:amd64
libstartup-notification0
libstdc++6:amd64
libstreamanalyzer0
libstreams0
libsuil-0-0:amd64
libswitch-perl
libswscale2:amd64
libsystemd-login0:amd64
libt1-5
libtag1-vanilla:amd64
libtag1c2a:amd64
libtalloc2:amd64
libtar0
libtasn1-3:amd64
libtasn1-3-bin
libtbb2
libtdb1:amd64
libtext-charwidth-perl
libtext-iconv-perl
libtext-wrapi18n-perl
libthai-data
libthai0:amd64
libtheora0:amd64
libthreadweaver4
libtie-ixhash-perl
libtiff4:amd64
libtimedate-perl
libtinfo5:amd64
libtirpc1:amd64
libtokyocabinet9:amd64
libtre5:amd64
libts-0.0-0:amd64
libtwolame0
libudev0:amd64
libumfpack5.4.0
libunique-1.0-0
libunique-3.0-0
libunistring0:amd64
libupnp6
libupower-glib1
liburi-perl
libusb-0.1-4:amd64
libusb-1.0-0:amd64
libusbmuxd1
libustr-1.0-1:amd64
libutempter0
libuuid-perl
libuuid1:amd64
libv4l-0:amd64
libv4lconvert0:amd64
libva-x11-1:amd64
libva1:amd64
libvamp-hostsdk3
libvamp-sdk2
libvcdinfo0
libvirtodbc0
libvisio-0.0-0
libvisual-0.4-0:amd64
libvisual-0.4-plugins:amd64
libvlc5
libvlccore5
libvo-aacenc0:amd64
libvo-amrwbenc0:amd64
libvorbis0a:amd64
libvorbisenc2:amd64
libvorbisfile3:amd64
libvpx1:amd64
libvte-2.90-9
libvte-2.90-common
libvte-common
libvte9
libwavpack1:amd64
libwbclient0:amd64
libwebkitgtk-1.0-0
libwebkitgtk-1.0-common
libwebkitgtk-3.0-0
libwebkitgtk-3.0-common
libwebp2:amd64
libwildmidi-config
libwildmidi1:amd64
libwmf0.2-7:amd64
libwpd-0.9-9
libwpg-0.2-2
libwps-0.2-2
libwrap0:amd64
libwww-perl
libwww-robotrules-perl
libwxbase2.8-0:amd64
libwxgtk2.8-0:amd64
libx11-6:amd64
libx11-data
libx11-protocol-perl
libx11-xcb1:amd64
libx264-123:amd64
libx86-1:amd64
libxalan2-java
libxapian22
libxau6:amd64
libxaw7:amd64
libxcb-composite0:amd64
libxcb-dri2-0:amd64
libxcb-glx0:amd64
libxcb-keysyms1:amd64
libxcb-randr0:amd64
libxcb-render0:amd64
libxcb-shape0:amd64
libxcb-shm0:amd64
libxcb-util0:amd64
libxcb-xfixes0:amd64
libxcb-xv0:amd64
libxcb1:amd64
libxcomposite1:amd64
libxcursor1:amd64
libxdamage1:amd64
libxdmcp6:amd64
libxerces2-java
libxext6:amd64
libxfixes3:amd64
libxfont1
libxft2:amd64
libxi6:amd64
libxinerama1:amd64
libxkbfile1:amd64
libxklavier16
libxml++2.6-2
libxml-commons-external-java
libxml-commons-resolver1.1-java
libxml-parser-perl
libxml-twig-perl
libxml-xpathengine-perl
libxml2:amd64
libxml2-utils
libxmu6:amd64
libxmuu1:amd64
libxpm4:amd64
libxrandr2:amd64
libxrender1:amd64
libxres1:amd64
libxslt1.1:amd64
libxss1:amd64
libxt6:amd64
libxtst6:amd64
libxv1:amd64
libxvidcore4:amd64
libxvmc1
libxxf86dga1:amd64
libxxf86vm1:amd64
libxz-java
libyajl2
libzbar0
libzvbi-common
libzvbi0:amd64
linux-base
linux-image-3.2.0-3-amd64
linux-image-3.2.0-4-amd64
linux-image-amd64
live-boot
live-boot-doc
live-boot-initramfs-tools
live-config
live-config-doc
live-config-sysvinit
live-tools
locales
login
logrotate
lp-solve
lsb-base
lsb-release
lsof
m4
man-db
manpages
marco
marco-common
mate-applets
mate-applets-common
mate-archive-keyring
mate-backgrounds
mate-bluetooth
mate-calc
mate-control-center
mate-core
mate-desktop
mate-desktop-common
mate-desktop-environment
mate-desktop-environment-extra
mate-desktop-gnome
mate-dialogs
mate-icon-theme
mate-keyring
mate-media
mate-media-common
mate-media-gstreamer
mate-menus
mate-netspeed
mate-panel
mate-panel-common
mate-polkit
mate-power-manager
mate-power-manager-common
mate-screensaver
mate-screensaver-common
mate-sensors-applet
mate-session-manager
mate-settings-daemon
mate-settings-daemon-common
mate-settings-daemon-gstreamer
mate-system-monitor
mate-system-tools
mate-terminal
mate-terminal-common
mate-themes
mate-user-share
mate-utils
mate-utils-common
mawk
melt
memtest86+
menu
menu-xdg
mime-support
minissdpd
mixxx
mixxx-data
mlocate
mobile-broadband-provider-info
modemmanager
module-init-tools
mount
mozo
mscompress
mtools
multiarch-support
murrine-themes
mutt
mysql-common
nano
ncurses-base
ncurses-bin
ncurses-term
net-tools
netbase
netcat-traditional
network-manager
network-manager-gnome
nfs-common
notification-daemon
ntfs-3g
ntrack-module-libnl-0
obex-data-server
obexd-client
odbcinst
odbcinst1debian2:amd64
openjdk-6-jre:amd64
openjdk-6-jre-headless:amd64
openjdk-6-jre-lib
openprinting-ppds
openshot
openshot-doc
openssh-blacklist
openssh-blacklist-extra
openssh-client
openssl
os-prober
oxygen-icon-theme
p7zip-full
passwd
patch
pciutils
perl
perl-base
perl-modules
phonon:amd64
phonon-backend-vlc
plasma-scriptengine-javascript
pluma
pluma-common
pm-utils
policykit-1
policykit-1-gnome
poppler-data
poppler-utils
powermgmt-base
ppp
printer-driver-all
printer-driver-c2050
printer-driver-c2esp
printer-driver-cjet
printer-driver-escpr
printer-driver-foo2zjs
printer-driver-gutenprint
printer-driver-hpcups
printer-driver-hpijs
printer-driver-m2300w
printer-driver-min12xxw
printer-driver-pnm2ppa
printer-driver-postscript-hp
printer-driver-ptouch
printer-driver-pxljr
printer-driver-sag-gdi
printer-driver-splix
prism2-usb-firmware-installer
procmail
procps
psmisc
python
python-apt
python-apt-common
python-aptdaemon
python-aptdaemon.gtk3widgets
python-cairo
python-central
python-chardet
python-crypto
python-dbus
python-dbus-dev
python-debian
python-debianbts
python-defer
python-fpconst
python-gi
python-gnupginterface
python-gobject
python-gobject-2
python-gst0.10
python-gtk2
python-gtksourceview2
python-httplib2
python-imaging
python-libxml2
python-mate-menu
python-minimal
python-mlt5
python-notify
python-numpy
python-openssl
python-pam
python-pexpect
python-pkg-resources
python-pyasn1
python-pycurl
python-pygoocanvas
python-renderpm
python-reportbug
python-reportlab
python-reportlab-accel
python-serial
python-soappy
python-software-properties
python-support
python-twisted
python-twisted-bin
python-twisted-conch
python-twisted-core
python-twisted-lore
python-twisted-mail
python-twisted-names
python-twisted-news
python-twisted-runner
python-twisted-web
python-twisted-words
python-uno
python-xapian
python-xdg
python-zope.interface
python2.6
python2.6-minimal
python2.7
python2.7-minimal
python3.2
python3.2-minimal
qdbus
qjackctl
rarian-compat
readline-common
recordmydesktop
refractainstaller-base
refractainstaller-gui
refractasnapshot-base
refractasnapshot-gui
reportbug
rpcbind
rpm-common
rpm2cpio
rsync
rsyslog
rubberband-cli
samba-common
samba-common-bin
sane-utils
sed
sensible-utils
sgml-base
sgml-data
shared-desktop-ontologies
shared-mime-info
simple-scan
slim
smbclient
software-properties-common
software-properties-gtk
soprano-daemon
sound-theme-freedesktop
squashfs-tools
ssl-cert
sudo
swh-plugins
synaptic
syslinux
syslinux-common
syslinux-themes-debian
syslinux-themes-debian-wheezy
system-tools-backends
sysv-rc
sysvinit
sysvinit-utils
tar
task-english
task-print-server
tasksel
tasksel-data
tcpd
telnet
texinfo
time
traceroute
transmission-common
transmission-gtk
tsconf
ttf-dejavu
ttf-dejavu-core
ttf-dejavu-extra
ttf-freefont
ttf-liberation
ttf-sil-gentium-basic
tzdata
tzdata-java
ucf
udev
udisks
unattended-upgrades
unetbootin
unetbootin-translations
uno-libs3
unzip
update-inetd
upower
ure
usb-modeswitch
usb-modeswitch-data
usbmuxd
usbutils
user-setup
util-linux
util-linux-locales
uuid-runtime
vbetool
vcdimager
vim-common
vim-tiny
virtuoso-minimal
virtuoso-opensource-6.1-bin
virtuoso-opensource-6.1-common
vlc
vlc-data
vlc-nox
vlc-plugin-jack
vlc-plugin-notify
vlc-plugin-pulse
w3m
wamerican
wget
whiptail
whois
wireless-regdb
wodim
wpasupplicant
x11-apps
x11-common
x11-session-utils
x11-utils
x11-xfs-utils
x11-xkb-utils
x11-xserver-utils
xauth
xbitmaps
xdg-utils
xfonts-100dpi
xfonts-75dpi
xfonts-base
xfonts-encodings
xfonts-mathml
xfonts-scalable
xfonts-utils
xinit
xkb-data
xml-core
xorg
xorg-docs-core
xserver-common
xserver-xorg
xserver-xorg-core
xserver-xorg-input-all
xserver-xorg-input-evdev
xserver-xorg-input-mouse
xserver-xorg-input-synaptics
xserver-xorg-input-vmmouse
xserver-xorg-input-wacom
xserver-xorg-video-all
xserver-xorg-video-apm
xserver-xorg-video-ark
xserver-xorg-video-ati
xserver-xorg-video-chips
xserver-xorg-video-cirrus
xserver-xorg-video-fbdev
xserver-xorg-video-i128
xserver-xorg-video-intel
xserver-xorg-video-mach64
xserver-xorg-video-mga
xserver-xorg-video-neomagic
xserver-xorg-video-nouveau
xserver-xorg-video-openchrome
xserver-xorg-video-r128
xserver-xorg-video-radeon
xserver-xorg-video-rendition
xserver-xorg-video-s3
xserver-xorg-video-s3virge
xserver-xorg-video-savage
xserver-xorg-video-siliconmotion
xserver-xorg-video-sis
xserver-xorg-video-sisusb
xserver-xorg-video-tdfx
xserver-xorg-video-trident
xserver-xorg-video-tseng
xserver-xorg-video-vesa
xserver-xorg-video-vmware
xserver-xorg-video-voodoo
xterm
xz-utils
zd1211-firmware
zenity
zenity-common
zlib1g:amd64

I like the current version of KDE more than Gnome3, but I don't really care for either of them. I don't like the whole smartphone style, the desktop is no longer a desktop thing. If I want things to be pretty, I just install Docky and Compiz along with Mate, but maybe I'm just resistant to change.
Find
Reply
02-01-2014, 09:17 AM
#6
Qaazavaca Qaanic
Unregistered
 
Fixed: "sudo ln -s /usr/lib/x86_64-linux-gnu/libGL.so.1 /usr/lib/x86_64-linux-gnu/libGL.so"
Reply
« Next Oldest | Next Newest »


  • View a Printable Version
  • Subscribe to this thread
Forum Jump:


Users browsing this thread: 1 Guest(s)



Powered By MyBB | Theme by Fragma

Linear Mode
Threaded Mode