LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 03-16-2010, 09:07 AM   #46
Martinezio
Member
 
Registered: May 2009
Location: Warsaw, Poland
Distribution: Slackware64-current
Posts: 191

Rep: Reputation: 32

Hmm... I may be wrong, but is this message tells You, that there is a problem with one of the graphic files used by cube plugin. The file is named "freedesktop.png" and is used as a top cap for the desktop cube. The file may be changed in cube's settings and accepted are png or svg images.
Best regards
 
Old 03-16-2010, 09:13 AM   #47
adamk75
Senior Member
 
Registered: May 2006
Posts: 3,091

Rep: Reputation: 399Reputation: 399Reputation: 399Reputation: 399
But it's still a harmless warning and won't impact whether or not the cube actually works.

Adam
 
1 members found this post helpful.
Old 03-16-2010, 02:38 PM   #48
janas03
LQ Newbie
 
Registered: Apr 2008
Location: Warsaw, Poland
Distribution: Slackware64 14.2
Posts: 29

Rep: Reputation: 4
not to start a new thread, I would like to test compiz but I can't get it to work.

In my xorg.conf I only have
Code:
~$ cat /etc/X11/xorg.conf
Section "ServerLayout"
        Identifier     "aticonfig Layout"
        Screen      0  "aticonfig-Screen[0]-0" 0 0
EndSection

Section "Files"
EndSection

Section "Module"
EndSection

Section "Monitor"
        Identifier   "aticonfig-Monitor[0]-0"
        Option      "VendorName" "ATI Proprietary Driver"
        Option      "ModelName" "Generic Autodetecting Monitor"
        Option      "DPMS" "true"
EndSection

Section "Device"
        Identifier  "aticonfig-Device[0]-0"
        Driver      "fglrx"
        BusID       "PCI:1:0:0"
EndSection

Section "Screen"
        Identifier "aticonfig-Screen[0]-0"
        Device     "aticonfig-Device[0]-0"
        Monitor    "aticonfig-Monitor[0]-0"
        DefaultDepth     24
        SubSection "Display"
                Viewport   0 0
                Depth     24
        EndSubSection
EndSection
No matter whether I run
Code:
compiz --replace ccp&
or
Code:
compiz --replace ccp emerald --replace
I get windows without decorations (no titlebars) and following errors:
Code:
:~$ compiz: /usr/lib64/libxml2.so.2: no version information available (required by compiz)
compiz: /usr/lib64/libxml2.so.2: no version information available (required by compiz)
compiz (core) - Error: Plugin 'text' not loaded.

compiz (thumbnail) - Warn: No compatible text plugin found.
There was a guide on compiz fusion forums how to set properly ati card but now I can't find it. I tried adding different sections to xorg.conf such as extensions composite enable etc. but it doesn't work either.
I use Slackware13 x64 with multilib and fglrx drivers 10.2, all compiz packages I complied by myself using slackbuilds posted in this thread.
 
Old 03-16-2010, 02:45 PM   #49
adamk75
Senior Member
 
Registered: May 2006
Posts: 3,091

Rep: Reputation: 399Reputation: 399Reputation: 399Reputation: 399
Have you checked that the window decoration plugin is enabled? Some essential plugins you should always check for before starting compiz are "resize window", "move window" and "window decoration". If you have emerald installed, place 'emerald' in the Command field in the window decoration plugin, and then try starting compiz again with 'compiz --replace ccp &'... Actually, given that you are using fglrx, I would recommend, 'compiz --replace --indirect-rendering ccp &'

The errors regarding libxml do have me intrigued, though, as I've never seen them before.

Adam
 
Old 03-16-2010, 03:57 PM   #50
janas03
LQ Newbie
 
Registered: Apr 2008
Location: Warsaw, Poland
Distribution: Slackware64 14.2
Posts: 29

Rep: Reputation: 4
I ticked all necessary plugins in ccsm and replaced kde4 window decorator with emerald in decorator plugin. After that kde complained about libpng being outdated so I updated them (with compat) from current. Then there were errors that application was compiled with old libpng and now it is newer and kde crashed. I will rebuild compiz packages later but so far the output is:
Code:
~$ compiz --replace --indirect-rendering ccp &
[1] 7333
janas@slackware:~$ compiz: /usr/lib64/libxml2.so.2: no version information available (required by compiz)
compiz: /usr/lib64/libxml2.so.2: no version information available (required by compiz)
compiz (core) - Error: Plugin 'text' not loaded.

compiz (ring) - Warn: No compatible text plugin found.
compiz (core) - Error: Plugin 'text' not loaded.

compiz (thumbnail) - Warn: No compatible text plugin found.
 
Old 03-16-2010, 04:11 PM   #51
Daedra
Senior Member
 
Registered: Dec 2005
Location: Springfield, MO
Distribution: Slackware64-15.0
Posts: 2,683

Rep: Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375
here is a patch for compiz

http://www.mail-archive.com/pld-cvs-...msg210781.html

Just apply the patch and recompile compiz and you should be set.
 
Old 03-16-2010, 04:53 PM   #52
janas03
LQ Newbie
 
Registered: Apr 2008
Location: Warsaw, Poland
Distribution: Slackware64 14.2
Posts: 29

Rep: Reputation: 4
unfortunately I can't compile it
Code:
Unstable::opacity() const
decorator.cpp:214: error: cannot allocate an object of abstract type 'KWD::Window'
window.h:53: note:   since type 'KWD::Window' has pure virtual functions
decorator.cpp: In member function 'void KWD::Decorator::handleWindowAdded(WId)':
decorator.cpp:678: error: cannot allocate an object of abstract type 'KWD::Window'
window.h:53: note:   since type 'KWD::Window' has pure virtual functions
make[3]: *** [decorator.o] Error 1
make[3]: Leaving directory `/tmp/SBo/compiz-0.8.4/kde/window-decorator-kde4'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/tmp/SBo/compiz-0.8.4/kde'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/tmp/SBo/compiz-0.8.4'
make: *** [all] Error 2
I tried slackbuild script by BrZ and by you.
 
Old 03-16-2010, 05:15 PM   #53
Daedra
Senior Member
 
Registered: Dec 2005
Location: Springfield, MO
Distribution: Slackware64-15.0
Posts: 2,683

Rep: Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375
are you running KDE 4.4?
 
Old 03-16-2010, 05:30 PM   #54
janas03
LQ Newbie
 
Registered: Apr 2008
Location: Warsaw, Poland
Distribution: Slackware64 14.2
Posts: 29

Rep: Reputation: 4
no, almost all packages are from 13.
 
Old 03-17-2010, 06:35 AM   #55
barboolian
Member
 
Registered: Dec 2009
Posts: 32

Rep: Reputation: 15
Quote:
Originally Posted by adamk75 View Post
But it's still a harmless warning and won't impact whether or not the cube actually works.

Adam
I clicked on the button to thank Adam because...

I got the cube! I got the cube!
 
Old 03-17-2010, 06:37 AM   #56
adamk75
Senior Member
 
Registered: May 2006
Posts: 3,091

Rep: Reputation: 399Reputation: 399Reputation: 399Reputation: 399
Quote:
Originally Posted by janas03 View Post
no, almost all packages are from 13.
If I had to guess, I'd say that most/all of your problems here stem from running different packages from different versions.

Adam
 
Old 03-17-2010, 07:24 AM   #57
janas03
LQ Newbie
 
Registered: Apr 2008
Location: Warsaw, Poland
Distribution: Slackware64 14.2
Posts: 29

Rep: Reputation: 4
to be more precise I've installed from -current only ntfs-3g, compiz and libpng packages. The rest is from stock 13.
 
Old 04-04-2010, 08:57 AM   #58
tuxrules
Senior Member
 
Registered: Jun 2004
Location: Chicago
Distribution: Slackware64 -current
Posts: 1,158

Rep: Reputation: 62
Quote:
Originally Posted by Daedra View Post
here is a patch for compiz

http://www.mail-archive.com/pld-cvs-...msg210781.html

Just apply the patch and recompile compiz and you should be set.
Hi Daedra,

Thanks for mentioning the patch. I'm using Slackware -current (13.1) with XFCE on Intel GM45.

I've been a long time Slackware user but got recently interested in compiz and spent past two days hunting this thing like crazy. I have build all the packages by hand and everything went fine except I won't get any window borders.

I had the png image plugin enabled in ccsm but whenever I start compiz, I won't get any window borders and starting from console would sometimes give me an symbol undefined error for libpng.

I also found a libpng 1.4.x patch for compiz here:

https://bugs.launchpad.net/pld-linux/+bug/522344

Once I rebuilt compiz, I've everything working perfectly.

Just want to confirm that you either have to disable the png image plugin in ccsm or apply this patch (and keep the png plugin enabled) for compiz to work.

Thanks for a useful guide.
 
Old 04-23-2010, 08:29 PM   #59
ebineezer
LQ Newbie
 
Registered: Apr 2010
Posts: 4

Rep: Reputation: 0
hey guys in having an issue w/ a Slack64 compiz install any help?

trying to install CF in the order above and getting this error:
Code:
checking for CCS... configure: error: Package requirements (libcompizconfig >= 0.6.99 glib-2.0 >= 2.6 ) were not met:

No package 'libcompizconfig' found

Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.

Alternatively, you may set the environment variables CCS_CFLAGS
and CCS_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.
Yet I did install libcompizconfig first.... noob needing a little help, thx.

Code:
bash-3.1# installpkg /tmp/libcompizconfig-0.7.8-x86_64-1_SBo.tgz 
Verifying package libcompizconfig-0.7.8-x86_64-1_SBo.tgz.
Installing package libcompizconfig-0.7.8-x86_64-1_SBo.tgz:
PACKAGE DESCRIPTION:
# libcompizconfig (a configuration system for compiz)
# 
# CompizConfig is an alternative configuration system for
# compiz.
# 
Executing install script for libcompizconfig-0.7.8-x86_64-1_SBo.tgz.
Package libcompizconfig-0.7.8-x86_64-1_SBo.tgz installed.
 
Old 04-23-2010, 10:21 PM   #60
Daedra
Senior Member
 
Registered: Dec 2005
Location: Springfield, MO
Distribution: Slackware64-15.0
Posts: 2,683

Rep: Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375
how did you install it, slackbuid? src2pkg?
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
installing compiz-fusion on slackware-current Vic1ous Slackware 4 06-18-2009 02:09 AM
compiz-fusion and fusion-icon problems psilo357 Linux - Software 2 12-22-2008 04:41 PM
Skydome background doesn't work with compiz/gnome unless I use the compiz fusion icon The_Trooper Linux - Software 1 07-21-2008 01:08 PM
compiz-fusion problems with slackware ati x1600pro konqi Linux - Software 3 06-27-2008 02:15 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 06:51 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration