Forum     

Go Back   Digit Technology Discussion Forum > Software > Open Source
Register FAQ Calendar Mark Forums Read

Open Source A place where you can talk to like-minded people about the fastest growing software movement today! Discuss anything and everything about Open Source software and Operating Systems.


Closed Thread
 
LinkBack Thread Tools Display Modes
Old 01-01-2008, 11:57 PM   #1 (permalink)
Cool and Calm
 
abhi_10_20's Avatar
 
Join Date: Jul 2006
Location: Bangalore
Posts: 406
Unhappy Desktop effects problem


ok.... i have my PC specs as below...

p4, 1.25 gb ram, Ati raedon x300 128 mb.

i set off to make compiz to work on Ubuntu 7.10

the basic desktop effects were working fine when the graphics driver was NOT enabled...

but now...after enabling it, i am gettin an error like this..
Desktop effects could not be enabled

plz help to get around with this...
__________________
When Roger's at play, opponents pray..!!!!! :twisted:
abhi_10_20 is offline  
Advertisements. Register and be a member of the community to get rid of them.
Advertisement

Old 02-01-2008, 12:49 AM   #2 (permalink)
left this forum longback
 
praka123's Avatar
 
Join Date: Sep 2005
Location: -
Posts: 7,536
Smile Re: Desktop effects problem

as you are using Ubuntu 7.10,may be the Ati drivers cannot be enabled due to lacking of 3D support.u have to install Ati driver from apt.make sure u can connect to internet for downloading drivers.
open a terminal(in menu Applications>Accssrs>terminal) and run below command to see whether ur card DRI or 3D is supported :
Code:
glxinfo |grep direct
for Ati support,u have to edit the /etc/X11/xorg.conf file to fit.
Quote:
ATI users and Compiz

Some ATI cards don't need their proprietary drivers to work with Compiz as the open-sourced driver (radeon) also has support for 3D acceleration. However, the open-sourced driver isn't as fast as the closed-sourced (fglrx) one, so if you need the proprietary one you'll have to tinker around in the terminal a little.

1. After you've installed the driver, either through the proprietary manager or directly from ATI's site, you'll have to setup the Xorg configuration file to work with your new driver. Always remember to back up the original file before altering, in case something goes wrong. Open up a terminal and enter:
sudo cp /etc/X11/xorg.conf /etc/X11/xorg.conf.bak
sudo aticonfig --initial --input=/etc/X11/xorg.conf
This will disable the default radeon driver and replace it with ATI's own.

2. Now, let's tell Compiz not to care about drivers that are blacklisted:
echo SKIP_CHECKS="yes" >> $HOME/.config/compiz/compiz-manager
Alternatively, you could whitelist the driver, which is a much prettier solution. Run this command to edit the Compiz startup-script:
gksudo gedit /usr/bin/compiz
Search for Driver whitelist and add fglrx to the end of the line, like this:
# Driver whitelist
WHITELIST="nvidia intel ati radeon i810 fglrx"

3. Reboot your computer, login and enable Compiz as mentioned above et voilà! Behold Compiz and ATI hugging.
see below link:
http://ubuntuguide.org/wiki/Ubuntu:G...ers_and_Compiz

just look at below thread in ubuntuforums:
http://ubuntuforums.org/showthread.p...&highlight=ATI

if ur new to Linux,u need to be "root"(synonymous to admininstrator in windows) to edit root permission files as is xorg.conf .
so press alt+f2 and in run dialog run:
Code:
gksudo gedit /etc/X11/xorg.conf
and edit ur xorg.conf(which X(display server) relies on to identify ur hardware gfx card etc).when asked give ur "password" for current user while running gksudo.
also,make sure u have xserver-xorg-video-ati installed in via synaptic manager(in menu System>admin>synaptic)

if compiz fails after that also,post the contents of /var/log/Xorg.0.log in http://pastebin.ca and give the link here.
__________________
left this forum long back.Admin Can Delete this Account and posts Permanantly.Thank You
Get GNU/Linux - http://getgnulinux.org
praka123 is offline  
Old 02-01-2008, 01:03 AM   #3 (permalink)
is NOT a PC/Mac
 
debsuvra's Avatar
 
Join Date: Sep 2006
Location: Pondicherry
Posts: 974
Default Re: Desktop effects problem

@ abhi_10_20 You can also use the ENVY utility from http://albertomilone.com/nvidia_scripts1.html for a one click solution to install ATI or NVIDIA drivers in linux. It can automatically detect ur GPU and install appropriate latest drivers. Then it will automatically modify the xorg.conf file according to your GPU features.

Go, give it a try.
debsuvra is offline  
Old 02-01-2008, 01:07 AM   #4 (permalink)
left this forum longback
 
praka123's Avatar
 
Join Date: Sep 2005
Location: -
Posts: 7,536
Smile Re: Desktop effects problem

@abhi:

Ubuntu Feisty Installation Guide

http://wiki.cchtml.com/index.php/Ubu...allation_Guide
^is for old ubuntu version but works!make sure ur /etc/apt/sources.list as below and connect to internet and do a "sudo apt-get update" in terminal or press "reload" in SYNAPTIC manager:
Code:
# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution.
#Repository List based on standard gutsy with many extra packages
# If you get errors about missing keys, lookup the key in this file
# and run these commands (replace KEY with the key number):
#  gpg --keyserver subkeys.pgp.net --recv KEY
#  gpg --export --armor KEY | sudo apt-key add -
#
# If you have a gpg key URL use (replace URL with the key address):
#
#  wget -q URL -O- | sudo apt-key add -
#
# If you have a gpg key file use (replace FILE with the key file):
#
#  sudo apt-key add FILE

deb http://archive.ubuntu.com/ubuntu/ gutsy main restricted
deb-src http://archive.ubuntu.com/ubuntu/ gutsy main restricted

## Major bug fix updates produced after the final release of the
## distribution.
deb http://archive.ubuntu.com/ubuntu/ gutsy-updates main restricted
deb-src http://archive.ubuntu.com/ubuntu/ gutsy-updates main restricted

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team, and may not be under a free licence. Please satisfy yourself as to
## your rights to use the software. Also, please note that software in
## universe WILL NOT receive any review or updates from the Ubuntu security
## team.
deb http://archive.ubuntu.com/ubuntu/ gutsy universe
deb-src http://archive.ubuntu.com/ubuntu/ gutsy universe
deb http://archive.ubuntu.com/ubuntu/ gutsy-updates universe
deb-src http://archive.ubuntu.com/ubuntu/ gutsy-updates universe

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu 
## team, and may not be under a free licence. Please satisfy yourself as to 
## your rights to use the software. Also, please note that software in 
## multiverse WILL NOT receive any review or updates from the Ubuntu
## security team.
deb http://archive.ubuntu.com/ubuntu/ gutsy multiverse
deb-src http://archive.ubuntu.com/ubuntu/ gutsy multiverse
deb http://archive.ubuntu.com/ubuntu/ gutsy-updates multiverse
deb-src http://archive.ubuntu.com/ubuntu/ gutsy-updates multiverse

## Uncomment the following two lines to add software from the 'backports'
## repository.
## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.
deb http://archive.ubuntu.com/ubuntu/ gutsy-backports main restricted universe multiverse
deb-src http://archive.ubuntu.com/ubuntu/ gutsy-backports main restricted universe multiverse

## Uncomment the following two lines to add software from Canonical's
## 'partner' repository. This software is not part of Ubuntu, but is
## offered by Canonical and the respective vendors as a service to Ubuntu
## users.
deb http://archive.canonical.com/ubuntu gutsy partner
deb-src http://archive.canonical.com/ubuntu gutsy partner

deb http://security.ubuntu.com/ubuntu gutsy-security main restricted
deb-src http://security.ubuntu.com/ubuntu gutsy-security main restricted
deb http://security.ubuntu.com/ubuntu gutsy-security universe
deb-src http://security.ubuntu.com/ubuntu gutsy-security universe
deb http://security.ubuntu.com/ubuntu gutsy-security multiverse
deb-src http://security.ubuntu.com/ubuntu gutsy-security multiverse

# Seveas’ packages (GPG key: 1135D466)
# GPG key-file: http://mirror.ubuntulinux.nl/1135D466.gpg
deb http://mirror.ubuntulinux.nl gutsy-seveas all
deb-src http://mirror.ubuntulinux.nl gutsy-seveas all

# Medibuntu - Ubuntu 7.10 "gutsy gibbon"
# GPG key-file: http://packages.medibuntu.org/medibuntu-key.gpg
deb http://packages.medibuntu.org/ gutsy free non-free
#deb-src http://packages.medibuntu.org/ gutsy free non-free

# Debuntu Ubuntu gutsy packages
# GPG Key: http://repository.debuntu.org/GPG-Key-chantra.txt
deb  http://repository.debuntu.org/ gutsy multiverse
#deb-src http://repository.debuntu.org/ gutsy multiverse
http://ati.amd.com/products/catalyst/linux.html
__________________
left this forum long back.Admin Can Delete this Account and posts Permanantly.Thank You
Get GNU/Linux - http://getgnulinux.org
praka123 is offline  
Old 02-01-2008, 02:22 AM   #5 (permalink)
Fresh Stock Since 2005
 
Join Date: Feb 2005
Posts: 1,015
Default Re: Desktop effects problem

Once this happened with OpenSuse.... I enabled hardware acceleration and then the problem was solved!!
__________________
http://www.khattam.info
khattam_ is offline  
Old 02-01-2008, 02:24 AM   #6 (permalink)
The Smaller Bang
 
MetalheadGautham's Avatar
 
Join Date: Sep 2007
Location: Gautham City
Posts: 7,489
Default Re: Desktop effects problem

Quote:
Originally Posted by khattam_ View Post
Once this happened with OpenSuse.... I enabled hardware acceleration and then the problem was solved!!
how to enable in ubuntu?
__________________
http://TheSmallerBang.wordpress.com
eMachines E725 - T4400 2.2GHz, 1GB, 160GB
Nokia 5130XM * T-Sonic 610 2GB
Nokia 2323C * Samsung Galaxy Y
Apple iPad 2 16GB WiFi
MetalheadGautham is offline  
Old 02-01-2008, 09:53 AM   #7 (permalink)
Cool and Calm
 
abhi_10_20's Avatar
 
Join Date: Jul 2006
Location: Bangalore
Posts: 406
Default Re: Desktop effects problem

thanks a lot guys..... will try and post back...
__________________
When Roger's at play, opponents pray..!!!!! :twisted:
abhi_10_20 is offline  
Old 09-01-2008, 09:47 PM   #8 (permalink)
Cool and Calm
 
abhi_10_20's Avatar
 
Join Date: Jul 2006
Location: Bangalore
Posts: 406
Default Re: Desktop effects problem

bump.. ....guys, i now have the compiz settings manager running... how to get the cube effect running on desktop?
__________________
When Roger's at play, opponents pray..!!!!! :twisted:
abhi_10_20 is offline  
Old 09-01-2008, 09:52 PM   #9 (permalink)
left this forum longback
 
praka123's Avatar
 
Join Date: Sep 2005
Location: -
Posts: 7,536
Default Re: Desktop effects problem

^press CTRL+ALT+drag mouse in any direction .else open compiz-settings-manager and customize shortcut!for eg:fire-effect,rain etc can be enabled if u have supported gfx cards.
__________________
left this forum long back.Admin Can Delete this Account and posts Permanantly.Thank You
Get GNU/Linux - http://getgnulinux.org
praka123 is offline  
Old 09-01-2008, 10:02 PM   #10 (permalink)
Cool and Calm
 
abhi_10_20's Avatar
 
Join Date: Jul 2006
Location: Bangalore
Posts: 406
Default Re: Desktop effects problem

^^nothing's happening..
__________________
When Roger's at play, opponents pray..!!!!! :twisted:
abhi_10_20 is offline  
Old 09-01-2008, 10:05 PM   #11 (permalink)
left this forum longback
 
praka123's Avatar
 
Join Date: Sep 2005
Location: -
Posts: 7,536
Default Re: Desktop effects problem

^first, are u running compiz ?what is ur /etc/X11/xorg.conf
__________________
left this forum long back.Admin Can Delete this Account and posts Permanantly.Thank You
Get GNU/Linux - http://getgnulinux.org
praka123 is offline  
Old 09-01-2008, 10:13 PM   #12 (permalink)
Pee into the Wind...
 
shady_inc's Avatar
 
Join Date: May 2007
Location: Mumbai
Posts: 782
Default Re: Desktop effects problem

Quote:
Originally Posted by abhi_10_20 View Post
bump.. ....guys, i now have the compiz settings manager running... how to get the cube effect running on desktop?
In compiz settings manager, go to General Options>Desktop Size>Horizontal Virtual Size.Set it to 4 to get a cube.
__________________
Life is as complicated as you say it is.
shady_inc is offline  
Old 09-01-2008, 10:20 PM   #13 (permalink)
Cool and Calm
 
abhi_10_20's Avatar
 
Join Date: Jul 2006
Location: Bangalore
Posts: 406
Default Re: Desktop effects problem

^^^k... did that...
and xorg.conf...

Code:
# xorg.conf (xorg X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh xserver-xorg

Section "Files"
EndSection

Section "InputDevice"
	Identifier	"Generic Keyboard"
	Driver		"kbd"
	Option		"CoreKeyboard"
	Option		"XkbRules"	"xorg"
	Option		"XkbModel"	"pc105"
	Option		"XkbLayout"	"us"
EndSection

Section "InputDevice"
	Identifier	"Configured Mouse"
	Driver		"mouse"
	Option		"CorePointer"
	Option		"Device"		"/dev/input/mice"
	Option		"Protocol"		"ImPS/2"
	Option		"ZAxisMapping"		"4 5"
	Option		"Emulate3Buttons"	"true"
EndSection

Section "InputDevice"
	Driver		"wacom"
	Identifier	"stylus"
	Option		"Device"	"/dev/input/wacom"
	Option		"Type"		"stylus"
	Option		"ForceDevice"	"ISDV4"		# Tablet PC ONLY
EndSection

Section "InputDevice"
	Driver		"wacom"
	Identifier	"eraser"
	Option		"Device"	"/dev/input/wacom"
	Option		"Type"		"eraser"
	Option		"ForceDevice"	"ISDV4"		# Tablet PC ONLY
EndSection

Section "InputDevice"
	Driver		"wacom"
	Identifier	"cursor"
	Option		"Device"	"/dev/input/wacom"
	Option		"Type"		"cursor"
	Option		"ForceDevice"	"ISDV4"		# Tablet PC ONLY
EndSection

Section "Device"
	Identifier	"ATI Technologies Inc RV370 5B60 [Radeon X300 (PCIE)]"
	Driver		"ati"
	BusID		"PCI:1:0:0"
EndSection

Section "Monitor"
	Identifier	"Generic Monitor"
	Option		"DPMS"
	HorizSync	30-70
	VertRefresh	50-160
EndSection

Section "Screen"
	Identifier	"Default Screen"
	Device		"ATI Technologies Inc RV370 5B60 [Radeon X300 (PCIE)]"
	Monitor		"Generic Monitor"
	DefaultDepth	24
EndSection

Section "ServerLayout"
	Identifier	"Default Layout"
	Screen		"Default Screen"
	InputDevice	"Generic Keyboard"
	InputDevice	"Configured Mouse"

# Uncomment if you have a wacom tablet
#	InputDevice     "stylus"	"SendCoreEvents"
#	InputDevice     "cursor"	"SendCoreEvents"
#	InputDevice     "eraser"	"SendCoreEvents"
EndSection
__________________
When Roger's at play, opponents pray..!!!!! :twisted:
abhi_10_20 is offline  
Old 09-01-2008, 10:23 PM   #14 (permalink)
left this forum longback
 
praka123's Avatar
 
Join Date: Sep 2005
Location: -
Posts: 7,536
Default Re: Desktop effects problem

^I think ur yet to enable compiz!with ATi cards,u have to add few options for optimal performance.
also make sure,below lines are added below section "device"
Code:
Section "Extensions"
    Option "Composite" "Enable"
EndSection
^press ctrl+alt+bkspce and relogin.also,post the o/p of "glxinfo |grep render".
__________________
left this forum long back.Admin Can Delete this Account and posts Permanantly.Thank You
Get GNU/Linux - http://getgnulinux.org
praka123 is offline  
Old 09-01-2008, 10:29 PM   #15 (permalink)
Cool and Calm
 
abhi_10_20's Avatar
 
Join Date: Jul 2006
Location: Bangalore
Posts: 406
Default Re: Desktop effects problem

^^thanks..but bfore doin this... i haven't enabled my gfx card... and i also cant.... bcoz once i do that... all visual settings go back to default and once i apply extra effects.... same error pops up.. " Desktop effects could not be enabled "

and for the other one..
Code:
glxinfo |grep render

direct rendering: Yes
OpenGL renderer string: Mesa DRI R300 20060815 x86/MMX/SSE2 TCL
__________________
When Roger's at play, opponents pray..!!!!! :twisted:

Last edited by abhi_10_20; 09-01-2008 at 10:47 PM.
abhi_10_20 is offline  
Old 09-01-2008, 11:21 PM   #16 (permalink)
left this forum longback
 
praka123's Avatar
 
Join Date: Sep 2005
Location: -
Posts: 7,536
Default Re: Desktop effects problem

^I think may be ur card is blacklisted by compiz!!just google for some info.it should work.
also check that the o/p of fglrxinfo command shows Ati.

also post the o/p of "dmesg |grep fglrx" when u try enabling compiz.
also,go through /var/log/Xorg.0.log for fglrx/ati related errors if any.

edit: OK abhi:read below ubuntu guide:
Gutsy + ATI X300 + Beryl/Compiz
http://ubuntuforums.org/showthread.p...light=ATI+x300
search:
http://ubuntuforums.org/search.php?searchid=34384116
__________________
left this forum long back.Admin Can Delete this Account and posts Permanantly.Thank You
Get GNU/Linux - http://getgnulinux.org

Last edited by praka123; 09-01-2008 at 11:39 PM.
praka123 is offline  
Old 10-01-2008, 02:52 PM   #17 (permalink)
GaurishSharma.com
 
gary4gar's Avatar
 
Join Date: May 2005
Location: Jaipur
Posts: 4,116
Default Re: Desktop effects problem

"Compiz-fusion keyboard shortcuts
gary4gar is offline  
Closed Thread

Bookmarks

Thread Tools
Display Modes

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 On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
3D effects of Fedora Core 6 paragkalra Open Source 2 16-11-2006 04:01 PM
Audio EFFECTS! upendra_gp QnA (read only) 3 28-01-2006 09:57 PM
Auto Effects for Photoshop cheetah Tutorials 4 22-03-2005 10:37 AM
Dolby Surround effects!!! danny_geo QnA (read only) 18 27-08-2004 08:49 PM

 
Latest Threads
- by Charan
- by Charan

Advertisement




All times are GMT +5.5. The time now is 05:34 AM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.

Search Engine Optimization by vBSEO 3.3.2