Catalyst 8.3 vel 8.47 drivers released!

AMD/ATI has released a new version of it's fglrx driver - Catalyst 8.3 vel. 8.47. There are some bug fixes, like:
---> fixed FireGL 3D application corruption when running at some resolutions
---> fixed  display flickering when gnome-screen-saver starts
---> fixed some image brightness and gamma correction issues
---> fixed diagonal tearing when using X-Video, and video playback is no longer "blocky" when using X-Video
The only new feature is X-Video support for the Xpress 1200 hardware.
Hope we will have them soon in [extra]

I knew that I could do those 2 things, but maybe there was something else aswell that is needed to be changed. Easier than I thought then
Thanks, I so hope fglrx will work this time around..
EDIT: If you change it to 8.03 it won't work, because ATI hasn't uploaded their driver with the same structure of the filename.
This is what ATI has done with their filenames:
ATI Catalyst 7.11: ati-driver-installer-7-11-x86.x86_64.run
ATI Catalyst 7.12: ati-driver-installer-8.443.1-x86.x86_64.run
ATI Catalyst 8.1: ati-driver-installer-8-01-x86.x86_64.run
ATI Catalyst 8.2: ati-driver-installer-8-02-x86.x86_64.run
ATI Catalyst 8.3: ati-driver-installer-8.3-x86.x86_64.run
So you see that you need a different structure in the filename.
Working PKGBUILD for catalyst-utils:
# $Id: PKGBUILD,v 1.4 2008/02/18 01:52:22 travis Exp $
# Maintainer: Travis Willard <[email protected]>
# Thanks to dibblethewrecker for the original work and packages.
# Thanks to testing monkey S1G1 for contributions
pkgname=catalyst-utils
pkgver=8.3
pkgrel=1
pkgdesc="Proprietary AMD/ATI userspace tools and libraries for Radeon brand cards."
arch=('i686' 'x86_64')
url="http://www.ati.amd.com"
license=('custom')
#finger required for acpi scripts
depends=('xorg-server>=1.1.1' 'libdrm' 'libstdc++5' 'netkit-bsd-finger' \
'libxrandr' 'libsm' 'fontconfig' 'libxcursor' 'libxi' 'gcc-libs')
replaces=('ati-drivers' 'ati-fglrx-utils' 'fglrx-utils')
conflicts=('libgl' 'ati-drivers-module' 'ati-drivers' 'nvidia')
provides=('libgl')
install=${pkgname}.install
source=(http://www2.ati.com/drivers/linux/ati-driver-installer-${pkgver/./-}-x86.x86_64.run \
amdcccle.desktop catalyst.sh atieventsd.sh ati-powermode.sh.patch)
#md5sums=('bcdf3c19c0b7a7c2051d751d5131d426'
# '1f4b870e977b155af549442932e8ce6f'
# 'bdafe749e046bfddee2d1c5e90eabd83'
# 'f729bf913613f49b0b9759c246058a87'
# 'b157eecaf2e26b386c427f3a64672dbc')
options=('!strip')
build() {
cd $startdir/src
[ "$CARCH" = "i686" ] && _arch="x86";
[ "$CARCH" = "x86_64" ] && _arch="x86_64";
/bin/sh ./ati-driver-installer-${pkgver-x86.x86_64.run --extract archive_files
# Grab the example ACPI scripts for lid close and AC plugged/unplugged
mkdir -p $startdir/src/etc/
cp $startdir/src/archive_files/common/usr/share/doc/fglrx/examples/etc/acpi $startdir/src/etc -r
cd $startdir/src/etc/acpi
sed -i "s#/usr/X11R6/bin/aticonfig#/usr/bin/aticonfig#g" $startdir/src/etc/acpi/ati-powermode.sh || return 1
sed -i "s#--effective=now##g" $startdir/src/etc/acpi/ati-powermode.sh || return 1
patch -Np0 -i $startdir/src/ati-powermode.sh.patch
cd ../..
# Get our architecture files and common files all in one place
cp $startdir/src/archive_files/arch/${_arch}/* $startdir/src/ -r
cp $startdir/src/archive_files/common/* $startdir/src/ -r
if [ "$CARCH" = "x86_64" ]; then
cp $startdir/src/archive_files/x710_64a/* $startdir/src/ -r
else
cp $startdir/src/archive_files/x710/* $startdir/src/ -r
fi
# Remove src and documents - install remaining files
mkdir -p $startdir/src/usr/share/pixmaps
mv $startdir/src/usr/share/icons/* $startdir/src/usr/share/pixmaps/
rm -rf $startdir/src/usr/{src,share/{icons,doc,applnk,gnome}}
# Install into correct paths for Xorg7
install -d -m 755 $startdir/pkg/usr/include $startdir/pkg/usr/bin \
$startdir/pkg/usr/lib/xorg/modules $startdir/pkg/etc \
$startdir/pkg/usr/share $startdir/pkg/usr/sbin \
$startdir/pkg/etc/rc.d $startdir/pkg/etc/acpi
mv $startdir/src/etc/* $startdir/pkg/etc/
mv $startdir/src/usr/sbin/* $startdir/pkg/usr/sbin/
mv $startdir/src/usr/include/* $startdir/pkg/usr/include/
mv $startdir/src/usr/share/* $startdir/pkg/usr/share/
mv $startdir/src/usr/X11R6/include/* $startdir/pkg/usr/include/
mv $startdir/src/usr/X11R6/bin/* $startdir/pkg/usr/bin/
if [ "$CARCH" == "x86_64" ]; then
mv $startdir/src/usr/X11R6/lib64/modules/* $startdir/pkg/usr/lib/xorg/modules/
rm -rf $startdir/src/usr/X11R6/lib64/modules
mv $startdir/src/usr/X11R6/lib64/* $startdir/pkg/usr/lib
else
mv $startdir/src/usr/X11R6/lib/modules/* $startdir/pkg/usr/lib/xorg/modules/
rm -rf $startdir/src/usr/X11R6/lib/modules
mv $startdir/src/usr/X11R6/lib/* $startdir/pkg/usr/lib/
fi
# correct dir permissions
find $startdir/pkg/usr -type d -exec chmod 755 {} \;
# correct FILE permissions - >=8.39.4 has nearly every file marked 0744. This
# is dumb, and previous versions of the drivers had no files marked this
# way. Fixing permissions of files to what they were in 8.38.6
find $startdir/pkg/etc -not -type d -exec chmod 0444 {} \;
find $startdir/pkg/etc -name '*.sh' -not -type d -exec chmod a+x {} \;
chmod u+w $startdir/pkg/etc/{ati/control,acpi/ati-powermode.sh}
find $startdir/pkg/usr/{bin,lib,sbin} -not -type d -exec chmod 0755 {} \;
chmod 0555 $startdir/pkg/usr/sbin/atigetsysteminfo.sh
find $startdir/pkg/usr/lib -name '*.a' -not -type d -exec chmod 0644 {} \;
find $startdir/pkg/usr/{share,include} -not -type d -exec chmod 0444 {} \;
find $startdir/pkg/usr/share/ati/amdcccle/ -name '*.qm' -not -type d -exec chmod 0644 {} \;
find $startdir/pkg/usr/share/man -not -type d -exec chmod 0644 {} \;
# create proper symlinks to libGL.so, libfglrx_pp.so, and libfglrx_gamma.so
cd $startdir/pkg/usr/lib
ln -s libGL.so.1.2 libGL.so
ln -s libGL.so.1.2 libGL.so.1
ln -sf /usr/lib/libfglrx_pp.so.1.0 libfglrx_pp.so.1
ln -sf /usr/lib/libfglrx_gamma.so.1.0 libfglrx_gamma.so.1
mkdir -p ${startdir}/pkg/usr/lib/xorg/modules/extensions
cd ${startdir}/pkg/usr/lib/xorg/modules/extensions
ln -sf libGLcore.xorg libGLcore.so
ln -sf libglx.xorg libglx.so
# install licenses
install -m 0644 -D $startdir/src/archive_files/ATI_LICENSE.TXT \
$startdir/pkg/usr/share/licenses/${pkgname}/AMD_ATI_LICENSE.TXT
# create DE file
install -m 0755 -D $startdir/src/amdcccle.desktop \
$startdir/pkg/usr/share/applications/amdcccle.desktop
# thanks to cerebral, we dont need that damned symlink
install -m 0755 -D $startdir/src/catalyst.sh \
$startdir/pkg/etc/profile.d/catalyst.sh
# Add ATI Events Daemon launcher
install -m 0755 -D $startdir/src/atieventsd.sh \
$startdir/pkg/etc/rc.d/atieventsd
Working PKGBUILD for catalyst: (I know this isn't the prettiest way but it works:p)
# $Id: PKGBUILD,v 1.8 2008/02/18 01:47:54 travis Exp $
# Maintainer: Travis Willard <[email protected]>
# Contributor: amdviaman
pkgname=catalyst
pkgver=8.3
_kernel_version=2.6.24
pkgrel=1
pkgdesc="Proprietary AMD/ATI kernel drivers for Radeon brand cards. Stock kernel."
arch=('i686' 'x86_64')
url="http://www.ati.amd.com"
license=('custom')
depends=("catalyst-utils>=${pkgver}" "kernel26>=${_kernel_version}-2" "kernel26<=${_kernel_version}.9999")
makedepends=()
replaces=('ati-fglrx' 'fglrx') # Yay rebranding
install=${pkgname}.install
source=(http://www2.ati.com/drivers/linux/ati-driver-installer-${pkgver/./-}-x86.x86_64.run)
#md5sums=('bcdf3c19c0b7a7c2051d751d5131d426')
_kernver=${_kernel_version}-ARCH
build() {
cd $startdir/src
[ "$CARCH" = "i686" ] && _arch="x86"
[ "$CARCH" = "x86_64" ] && _arch="x86_64"
/bin/sh ./ati-driver-installer-8-3-x86.x86_64.run --extract archive_files
cp $startdir/src/archive_files/arch/${_arch}/* $startdir/src/ -r
cp $startdir/src/archive_files/common/* $startdir/src/ -r
if [ "$CARCH" == "x86_64" ]; then
cp $startdir/src/archive_files/x710_64a/* $startdir/src/ -r
else
cp $startdir/src/archive_files/x710/* $startdir/src/ -r
fi
cd $startdir/src
cd $startdir/src/lib/modules/fglrx/build_mod/
# Build the kernel module
cp 2.6.x/Makefile .
make -C /lib/modules/${_kernver}/build SUBDIRS="`pwd`" modules || return 1
# Install the kernel module
install -m 644 -D $startdir/src/lib/modules/fglrx/build_mod/fglrx.ko \
$startdir/pkg/lib/modules/${_kernver}/video/fglrx.ko
sed -i -e "s/KERNEL_VERSION=.*/KERNEL_VERSION=${_kernver}/g" $startdir/$install
# install licenses
install -m 0644 -D $startdir/src/archive_files/ATI_LICENSE.TXT \
$startdir/pkg/usr/share/licenses/${pkgname}/AMD_ATI_LICENSE.TXT
EDIT:
Last edited by kevin89 (2008-03-06 14:45:31)

Similar Messages

  • ATI Catalyst 5.5 Motherboard/IGP Drivers Released

    https://support.ati.com/ics/support/default.asp?deptID=894&task=knowledge&folderID=27
    See Release Notes for list of Resolved and remaining Known Issues for this release.
    I've installed and tested the XP set with no apparent problems.
    Danno

    Sheesh, use the official driver page:
    http://www.ati.com/support/driver.html
    Select Windows 2000, graphic driver and Radeon.  You get:
    Catalyst 5.1 for Windows 2000

  • ATI Catalyst 8.5 Proprietary Linux Display Driver released

    New ATI Catalyst™ 8.5 Proprietary Linux Display Driver was released the day before yesterday and according to release notes it has many improvements.
    New Features
    This release of the Catalyst™ Linux software driver introduces Mipmap Detail, Catalyst A.I., and AA Filters in the 3D ORCA page of the Catalyst™ Control Center Linux Edition.
    Resolved Issues
    * The following section provide a brief description of resolved issues with the latest version of the ATI Catalyst™ Linux software suite. These include:
    * Support for video playback on the second head in dual head mode is now available. Further details can be found in topic number 737-26985
    * Unresolved symbols in Xorg log under RHEL 4u6 32 and 64 bit no longer occur. Further details can be found in topic number 737-34284
    * The desktop background color is no longer displayed incorrectly when using xcommgr. Further details can be found in topic number 737-34285
    * Change VT no longer fails when kernel module is not loaded. Further details can be found in topic number 737-34286
    * Switching to the virtual terminal multiple times no longer results in X displaying corruption. Further details can be found in topic number 737-34287
    * Catalyst Control Center: The Preference page is now localized for all supported languages. Further details can be found in topic number 737-34275
    * The Linux kernel module is no longer installed to wrong location if the Linux kernel is updated. Further details can be found in topic number 737-34288
    * Random system hangs no longer occur when calls to the ATI driver are made from Ring3. Further details can be found in topic number 737-34289
    * X window no longer fails to respond when GoogleEarth is maximized. Further details can be found in topic number 737-34290
    * A segmentation fault no longer occurs when running SPECViewperf on systems containing an ATI FireGL V5100 series product and running SUSE 10.3 x86. Further details can be found in topic number 737-34276
    * Enabling Composite extension no longer displays 8x AA for graphic cards that do not support 8x AA under the Ubuntu 7.10 operating system. Further details can be found in topic number 737-34291
    * Display corruption is no longer noticed at logon when compiz is enabled. Further details can be found in topic number 737-34292
    * Launching the glxgears application no longer results in segmentation faults. Further details can be found in topic number 737-34293
    * GoogleEarth: Launching the application in horizontal mode on a system running X no longer results in corruption being noticed. Further details can be found in topic number 737-34293
    * Specviewperf 8.1 64 bit version: Segmentation faults no longer occurs on IGP systems. Further details can be found in topic number 737-34294
    * Maya 2008: Moving the render window no longer results in the operating system failing. Further details can be found in topic number 737-34295
    * Glxgears corruption is no longer noticed in big desktop mode. Further details can be found in topic number 737-34296
    Known Issues
    * The following section provides a brief description of known issues associated with the latest version of ATI Catalyst™ Linux software suite. These issues include:
    * Desktop corruption may be noticed when dragging the overlay/video when using dual-display mode. Further details can be found in topic number 737-29578
    * Bandwidth corruption may be noticed when setting the desktop resolution to 2048x1536 on systems containing an ATI Radeon HD 3200 series of product. Further details can be found in topic number 737-33499
    * SECAM, NTSC or PAL signal changes when using aticonfig or Catalyst Control Center but does not apply to the TV display output. Further details can be found in topic number 737-34297
    * Running X server without a window manager may result in the X server flashing green for a moment, going black, and the computer becoming unresponsive. Further details can be found in topic number 737-34299
    * Desktop corruption may be noticed when dragging the overlay/video when using dual-display mode. Further details can be found in topic number 737-34298
    * Connecting a CRT display device to a system containing an ATI Mobility Radeon X1600 product may result in the display device flashing multiple times or failing to display an image when attempting to launch the Catalyst Control Center. Further details can be found in topic number 737-34300
    * Corruption may be noticed when connecting a DFP display device to a system running X after setting the TV mode to 1080i. Further details can be found in topic number 737-34301
    * Quake 3 Arena (demo): Segmentation faults may occur when attempting to play the game. Further details can be found in topic number 737-34302
    * Specviewperf: Launching the application may result in the Linux operating system failing to respond. Further details can be found in topic number 737-34282
    * Opening a terminal and running semi-automated DPPT tests via lnxtest.sh may result in the operating system failing to respond. Further details can be found in topic number 737-34283
    * A segmentation fault may occur when running SPECViewperf on systems containing an ATI FireGL V5100 series product and running SUSE 10.3 x86. Further details can be found in topic number 737-34319
    * FGL_GLXGEARS or GLXGEARS: X may fail to respond when launching either of the applications. Further details can be found in topic number 737-34316
    * Maya 2008: Various comparison failures may be noticed. Further details can be found in topic number 737-34277
    * The X Server may fail to reset clearly when AIGLX is enabled. Further details can be found in topic number 737-34317
    * DiscoveryStudio1.7: The print preview and save as functions may fail to work properly. Further details can be found in topic number 737-34278
    * SPEC Viewperf 8.1: A performance drop may be noticed when running the application under Linux. Further details can be found in topic number 737-34279
    * Maya2008: The hardware render buffer may fail to render/display the image. Further details can be found in topic number 737-34280
    * May2008: The hardware render Perl script may display an error message when rendering. Further details can be found in topic number 737-34281
    I wonder when it will appear in Arch's repositories

    Yea, it would be great as at Phoronix forums some people are reporting 10% performance increase in games
    EDIT: Some release notes from AMD
    New Features
    This release of the Catalyst™ Linux software driver introduces UYVY and YUY2 pixel format support. This support provides interleaved stream support for video playback applications such as TVTime and MythTV.
    Resolved Issues
    The following section provide a brief description of resolved issues with the latest version of the ATI Catalyst™ Linux software suite. These include:
    *Enemy Territory: Quake Wars: Playing the demo on a system running X no longer results in corruption being noticed. Further details can be found in topic number 737-35208
    *Maya 2008: An incorrect colormap is no longer displayed for texture selector on systems running X. Further details can be found in topic number 737-35207
    *Quake 3 Arena (demo): Segmentation faults no longer occur when attempting to play the game. Further details can be found in topic number 737-35206
    *Quake3: Corruption is no longer noticed when changing the display resolution when the game is running. Further details can be found in topic number 737-35209
    *SECAM, NTSC or PAL signal changes when using aticonfig or Catalyst Control Center and now gets applied to the TV display output. Further details can be found in topic number 737-34297
    *Running X server without a window manager no longer results in the X server flashing green for a moment, going black, and the computer becoming unresponsive. Further details can be found in topic number 737-34299
    *Corruption is no longer noticed when connecting a DFP display device to a system running X after setting the TV mode to 1080i. Further details can be found in topic number 737-34301
    *Clock Gating is now supported and enable under the Linux operating system. Further details can be found in topic number 737-35191
    *The desktop background color is no longer displayed incorrectly when using xcommgr. Further details can be found in topic number 737-35192
    *Using the wrong delimiter in aticonfig --set-dispattrib=<disp>,<attr>, <value> no longer results in a segmentation fault. Further details can be found in topic number 737-35194
    *Audio out is now functioning after the installation of the ATI graphics drivers for Ubuntu 7.10. Further details can be found in topic number 737-35196
    *Bandwidth corruption is no longer noticed when setting the desktop resolution to 2048x1536 on systems containing an ATI Radeon HD 3200 series of product. Further details can be found in topic number 737-33499
    *Playing a video clip using mplayer with the Xv extension enabled no longer results in an error indicating that Xv could not find a free Xv port. Further details can be found in topic number 737-35198
    *Corruption is no longer noticed when enabling Big Desktop on systems containing an ATI FireGL X1 series of product and running X. Further details can be found in topic number 737-35199
    *Running the X server generations test no longer results in the operating system failing to respond or a Kernel panic to occur after first server generation on SuSE 10.3 64 bit. Further details can be found in topic number 737-35200
    *Attempting to resize a 2D application window no longer results in poor performance being noticed when composing is enabled. Further details can be found in topic number 737-35201
    *Screen flicker is no longer noticed after running amdcccle in X. Further details can be found in topic number 737-35202
    *Corruption is no longer noticed when connecting a DFP display device to a system running X after setting the TV mode to 1080i. Further details can be found in topic number 737-35203
    *Glxgears corruption is no longer noticed in big desktop mode. Further details can be found in topic number 737-35204
    *Starting glxgears and/or fgl_glxgears no longer results in the gears failing to render on SuSE 10.2 x86_64. Further details can be found in topic number 737-35205
    *FGL_GLXGEARS or GLXGEARS: X no longer fails to respond when launching either of the applications. Further details can be found in topic number 737-35210
    Known Issues
    The following section provides a brief description of known issues associated with the latest version of ATI Catalyst™ Linux software suite. These issues include:
    *DiscoveryStudio1.7: The print preview and save as functions may fail to work properly. Further details can be found in topic number 737-35219
    *Desktop corruption may be noticed when dragging the overlay/video when using dual-display mode. Further details can be found in topic number 737-29578
    *Bandwidth corruption may be noticed when setting the desktop resolution to 2048x1536 on systems containing an ATI *Radeon HD 3200 series of product. Further details can be found in topic number 737-33499
    *Connecting a CRT display device to a system containing an ATI Mobility Radeon X1600 product may result in the display device flashing multiple times or failing to display an image when attempting to launch the Catalyst Control Center. Further details can be found in topic number 737-34300
    *DiscoveryStudio1.7: The print preview and save as functions may fail to work properly. Further details can be found in topic number 737-34278
    *Setting the Overscan to an invalid value may result in segmentation faults. Further details can be found in topic number 737-35211
    *An incorrect error message may be returned when applying an unsupported TV geometry in a console terminal. Further details can be found in topic number 737-35212
    *Desktop corruption may be noticed when dragging the overlay/video when using dual-display mode. Further details can be found in topic number 737-35213
    *An X segmentation fault may occur when launching SUZI/textured video. Further details can be found in topic number 737-35214
    *Creating two successive connections may result in direct GL context to fail. Further details can be found in topic number 737-35215
    *Moving the mouse or tapping a key may fail to close an OpenGL screen-saver and bring the user back to the x desktop. Further details can be found in topic number 737-35216
    *The X Server may fail to reset clearly when AIGLX is enabled. Further details can be found in topic number 737-35217
    *Opening a terminal and running semiautomated DPPT tests via lnxtest.sh may result in the operating system failing to respond. Further details can be found in topic number 737-35218
    Last edited by Zibi1981 (2008-06-19 15:42:23)

  • Updated HPIJS drivers released

    OpenPrinting.org has just released a new Mac OS X package for the HPIJS drivers. It can be found at _http://www.linuxfoundation.org/collaborate/workgroups/openprinting/macosx/hpijs_
    Beginning with this release the PPDs for HP printers will be sourced from the HPLIP package rather than the OpenPrinting.org database. This means that many more printers will be found in the package. The PPDs for non-HP printers are still sourced from the OpenPrinting.org database.
    This release also fixes a problem with the PPDs that caused many job options such as page orientation, color/grayscale mode, duplex printing, etc. to fail.

    so all i have to do is install that driver from this link
    <http://www.nvidia.com/object/macosx-cuda-3.1-driver.html>
    and i have the latest Nvidia driver ?
    sorry i am new just trying to get an understanding on how it works

  • Satellite P200: Question about ATI HD 2600 drivers release

    Will there be a release for a FULL XP HD2600 driver for the P200?
    I am waiting, since I bought my laptop for drivers, but it is still a BETA.
    I wrote several mails to Toshiba. I am seriously thinking of buy an other laptop with an NVIDIA card:
    1 & 2. Answer:
    There is a new driver available ---- no, it was every time the same driver, it has been only re-uploaded, there were NO changes
    3. Answer:
    use omega drivers --- haha, they dont work with 2k cards
    4. Answer:
    go to laptopvideo2go.com --- lol, they only have NVIDIA drivers!!!
    Because of that I want to ask here:
    Are there any informations for a driver release for a P200 XP Ati HD 2600 driver?
    I only want to know, if they will release a driver?

    Hi guys
    I have already provided answered your first thread in the gaming area!!!
    http://forums.computers.toshiba-europe.com/forums/thread.jspa?threadID=27484&tstart=0
    One more info;
    Many different Toshiba notebooks series are delivered with the same graphic cards.
    So sometimes the newer drivers can be found in other notebook series area on the Toshiba driver page. Just take a look into different notebook series which were delivered with the same GPU and check for newer version.
    But there should be also a possibility to use the ATI drivers.
    You have to download the driver package from ATI and should install the driver from device manager.
    There choose Install from a list or specific location -> Dont search. I will choose the driver to install.
    Then choose simply the INF file which was downloaded with the package.
    But note; such drivers can be used only at your own risk!!!
    regards

  • Photoshop Users With ATI Video Cards - Catalyst 11.9 Release Seems Good

    I've been using Photoshop all day with the Catalyst 11.9 display drivers, released yesterday by AMD.  My system is Windows 7 x64 and I have a VisionTek Radeon HD 5670 card with 1 GB, and Photoshop CS5 is set to Use OpenGL Drawing in Advanced mode.
    Their version 11.8 release seemed buggy, so I had stayed with 11.7 until last night, when I upgraded to 11.9. I did nothing special to install the prior version; I just ran the 11.9 installer.
    So far, I've had zero problems processing images in Photoshop today.  My display has been smooth and quick, with no crashes or faults.
    -Noel

    The Catalyst version number is a package number that's basically year.month of release.
    Looking in the Catalyst Control Center in the Information section, the detailed version info for Catalyst 11.9 is the following:
    -Noel

  • Confused I Need help trying to install catalyst proprietary drivers

    I am all confused I want to install the actual ATI drivers because they will allow 3d acceleration but I don't seem to be able to. I know that to install ATI's fglrx drivers I  need to install the catalyst package. like so pacman -S catalyst then I downloaded the newest drivers from ATI not sure how to install them I tried   ati-driver-installer-8-5-x86.x86_64.run but nothing seems to happen . Do I need to build a catalyst kernel package?

    The configuration for the catalyst driver is a little more complicated than just substituting fglrx for the driver.
    fortunately, ati provides a utility called aticonfig for doing this. after you install the catalyst package, do:
    modprobe fglrx # (this will load the kernel modules, without which the xorg driver won't work)
    aticonfig --initial --input=/etc/X11/xorg.conf
    I have found that sometimes (actually, every time I've tried it) I've had to also pass the --force option to aticonfig. do aticonfig --help for more detail. (also, my instructions assume you're only using one monitor.)

  • Release dates of Audigy drivers for Windows 64bit Edit

    Hello,
    Just wondering if anyone has a more accurate date of when x64 drivers will become available for Audigy cards (I own a SB0090 if that is of any use.) I don't know how long I'm going to last with no sound
    Thanks!

    Hi Milstark,
    Welcome to the HP Forums, I hope you enjoy your experience!
    I understand you want to know if there will be Win 8.1 drivers released.
    I will be happy to help you.
    Here is the URL for Win 8.1 32 bit drivers that are available.
    HP LaserJet Full Feature Software and Driver.
    This is a Link for the Win 8.1 64 bit drivers.
    HP LaserJet Full Feature Software and Driver.
    Please clarify if you aren't able to install the printer.
    Are you getting any error mesages?
    Printer isn't being detected?
    Thank you for posting on the HP Forums.
    Have a nice day!
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • AMD's "in box" windows 64 drivers

    I'm a little confused by the info in this link    http://www.amd.com/us-en/Processors/DevelopWithAMD/0,,30_2252_875_10454,00.html
    First, are all the drivers in the list "64 bit drivers"?  Or does it just mean the drivers are compatible with the OS?  
    ATI has "in box" drivers -- same question as above -- 64bit or merely compatible?
    And VIA lists KT800 chipset drivers as in box -- is there any need to install the hyperion pro drivers?        
    Thx,  mark

    Quote
    Originally posted by JLP
    Well ATI is working on 64-bit drivers. It is just so that they decided not to offer beta drivers for download like nVidia. Official beta testers for ATI have access to them.
    Also companies tend to send fully functional drivers to Microsoft to include them on Windows CDs and Windows Update page. So the drivers in this beta are some older build of Catalysts, in 64-bits.
    ATI will release official 64-bit drivers when the final version of Windows XP 64 is out. And I think that only then the situation could be analyzed. It is now to early to base your buying decision on beta OS and beta or no drivers.
    For sure a lot of users would like to se that ATI and Creative and others release their beta 64-bit drivers to public. I would also like to see them as I think it wouldn't hurt anybody and would make a lot of people happy. But if we have to wait for the final version, so be it.
    I wouldnt rely on ATI releasing drivers when XP-64 is out of Beta.
    In April 2003 they issued a press release detailing their support for AMD64 in both windows and linux.
    There have been mainstream non-beta 64bit linux distributions in existance for ~4 months (ok, in reality there have been less general non-beta 64bit distributions for opteron around for nearly 8 months) and ATI have not even so much as announced a release date for their in-house binary drivers in 64bit (JFYI, porting a well written glibc program to 64bit involves adding -fpic -m64 as compiler options for the *SAME* source code; I imagine the effort for 64bit development in windows is equally trivial), so I am tempted to assume ATI have no clue.
    Whilst we will no doubt see some future optimisations through making use of 64bit words and the additional registers; there is *NO* functional difference in assembler code between x86 and x86_64!!!, all the compiler needs to do is be aware of the linking methodologies, the different register count  and the use of 64bit words and addresses.  There should be no development time per-se to make equally functional software for the x86_64 platform.  Of course, it is rare to find windows kiddies who actually write clean code ;P
    Further note : the in-box ati drivers for winXP64 beta do not appear to support DVI output on ati radeon 9600pro (I had to change to an old analog cable to get video out) and do not appear to support direct3D at all.
    I feel it is safe at this stage to recommend nvidia as the card of choice for 64bit in the forseeable future; which is a shame since ATI are IMHO technically superior, but their driver development team have consistently been a let down throughout their entire history (the last two years of XP drivers notwithstanding).
    I have just made the painful descision to ditch my powercolor 9600pro bravo edition (radeon 9600pro) for a leadtek a380 ultra TDH (5950) since I have not recieved a single indication from ATI after 38 emails over the past 4 months which would lead me to conclude that they have 64bit drivers under development, let alone intend to provide any at launch time.
    btw, all of the drivers I have inspected to date that are included with winXP-64 report themselves to be windows ia32 executeables (all of the ati and soundblaster drivers and some of the wireless network drivers) when inspected with the "file" command under linux, so I suspect MS have some whacky means of piping drivers through their WoW subsystem.
    err!
    jak.

  • Will new Ati Driver be released?

    Hello together,
    will there ever be new ati driver be released for the T500 (I’m running xp on it). The 8.5 one is nearly 9 months old and catalyst 9.3 which has recently been released should bring series performance improvements with it.  
    A few years ago I remember that my 9200 had to be updated through unofficial “omega” drivers but this seems to be ages ago so I’m my Information is a little outdated. Might there be a similar way to update the 3650 “unofficially”?
    Kind Regards,
    Teal

    The special ATI switchable graphics driver is for Vista only. For XP just install the modified ATI driver with BIOS set to discrete graphics mode. Download the latest HD3650 driver (for stationary computers) from the AMD/ATI website and modify it with the Mobility Modder from here .
    T500: Vista 32, 2.8GHz, 4GB RAM, 15.4" 1680x1050, 500GB 7200rpm, ATI Radeon HD3650 + Intel 4500MHD. T42: XP, 1.7GHz, 2GB RAM, 14.1" 1024x768, 250GB PATA, ATI Radeon 7500.

  • ATI Catalyst 7.9

    ATI Catalyst™ Software Suite Version 7.9
    Caution: Installing the Catalyst software suite 7.8 or 7.9 on a system containing the ATI Radeon™ X1950 AGP series of product may result in either the desktop failing to be drawn properly or the operating system failing to boot. It is recommended to continue using Catalyst 7.7 for this product at this time.
    Performance Improvements
    The following performance improvements are noticed with Catalyst™ 7.9:
        * Far Cry performance improves up to 14 % on the ATI Radeon™ HD2900XT CrossFire™, ATI Radeon™ HD2600XT single card, and ATI Radeon™ HD2400XT CrossFire™ configurations
        * Call of Duty 2 performance improves as much as 12% with Anti-Aliasing enabled on the ATI Radeon™ HD2600XT CrossFire™ and single card configurations
        * Half-Life 2: Episode 1 performance improves at most 9% on ATI Radeon™ HD2600XT CrossFire™ and as much as 6% on the ATI Radeon™ HD2400XT CrossFire™ configurations.
        * Serious Sam 2 performance improves up to 46% on the ATI Radeon™ HD2400XT CrossFire™ and up to 27% on the ATI Radeon™ HD2600XT single card and CrossFire™ configurations with Anti-Aliasing enabled.
        * Quake 4 performance with Anti-Aliasing improves 9% or more on the ATI Radeon™ X1600/X1650Pro and ATI Radeon™ X1300/X1550 products in both single and CrossFire™ configurations
    New Features
    Catalyst 7.9 introduces the following new features:
        * Avivo Video Converter for Windows Vista (64-bit)
        * Catalyst Control Center: Color Temperature Control
    Avivo Video Converter for Windows Vista (64-bit)
    This release of Catalyst™ introduces the Avivo Video Converter for the Windows Vista (64 bit) operating system. The Avivo Video Converter is a transcoder tool that provides a quick and easy way of converting videos from one format to another. The Avivo Video Converter found within the Catalyst™ Control Center, allows the user to select the input file, and output format, along with the quality level and file location. The Avivo. Video Converter accepts a wide variety of file formats as a source, and outputs to file formats such as MPEG-1, MPEG-2, MPEG-4/DivX, WMA, H.264/AVC and more.
    Catalyst Control Center: Color Temperature Control
    This release of Catalyst™ introduces Color Temperature Control within the Catalyst Control Center, allowing users to adjust the chromatic level shown on their display. Supported on the ATI Radeon™ X1000 Series and Radeon™ HD 2000 Series of products.
    Download: http://ati.amd.com/support/driver.html
    kind regards

    Hi Rudinho
    If you check graphic cards manufacturers download page you will find instructions that for mobile computing the drivers are provided by notebook manufacturers. Unfortunately graphic drivers can not be updated so often as on desktops.
    The reason is simply. With new driver the graphic card will be forced to run on the limit and the result is high temperature. High temperature can be responsible for suddenly shut downs or even for hardware damage. Because of that notebook manufacturers must deal with great care. Can you imagine what will happen if Toshiba offer some driver and result is graphic card damage?
    Satellite M30x is pretty old notebook and I do not believe the driver will be updated. The same situation is for my old Satellite P20.

  • Upgraded Qosmio X500-10T to Win 8.1: Sound drivers for 5.1 over HDMI

    Hello *brilliant* Toshiba community,
    I have recently upgraded my Qosmio X500-10T from 64-bit Windows 7 to 64-bit Windows 8.1.
    I have left Windows to download driver updates.
    My setup: Qosmio (HDMI) => Yamaha AV receiver (HDMI) => Samsun LCD TV.
    _The Problem:_ Playing a video file (in MPC-HC) with 5.1 sound only outputs 2 channel PCM.
    Would it be better to install the Win 7 drivers from Toshiba even though they are older and for a different OS, or install windows 8.1 drivers from another Qosmio, or leave the Win 8.1 drivers found by Microsoft?
    This driver issue is made more problematic as I don't actually know what the technical hardware components are in the machine so its not as though I can find a win 8 driver for them.
    As always any help or suggestions are greatly appreciated.
    Buzz

    Hi
    From my knowledge the Win 7 drivers are totally different from Win 8.1 drivers and I doubt that Win 7 driver would work properly on Windows 8.1 system. However, you can test such Win 7 drivers too. But of course I would recommend you to use the Win 8.1 drivers released for other notebook series.
    As Im not mistaken the Qosmio X500 needs 2 sound drivers: Conexant (chip CX20583-10Z) sound driver as well as the nVidia sound driver (for HDMI)

  • RELEASE NOTES R180 - scheduled for September 25th 2012

    We are announcing a new Business Catalyst release, scheduled to go live on Tuesday, September 25th.
    This release includes some great improvements to our module templates, new features for our email marketing system, admin interface improvements, a few infrastructure updates and lots of bug corrections.
    Read through the following sections to get detailed information about this release:
    Features and enhancements
    Issues fixed by this release
    You can jump to the corresponding section by clicking the above links.
    Features and enhancements
    Modules improvement
    Starting with our September release, we have enabled users to use a html page or a static template as a module list template (layout) for all modules that are using templates today. The new addition allows partners to create different views for the same data for a personalize experience. To use this new functionality, just create a new module template and update your module properties by specifying the template to use.
    Ex: {module_blogsitepost,2 template="/ModuleTemplates/Custom/MyTemplate.tpl"}
    Note: although you can use any extension you feel comfortable with, we recommend using a .tpl extension for two reasons: help locate the template better and avoid having these templates being displayed in Page list.
    Email marketing application improvements
    This is release is packed with new features and enhancements to our email marketing system.
    Dynamic modules in email campaign - you can include modules (a subset of 19 modules) in the Email Campaigns content; the system will render these modules right before the campaign is sent, making sure your customers always receive the latest content;
    Fresh, new email templates - the release includes a set of new of new email templates that look much better; along with these new templates, the template selection page was re-done to show better thumbnails;
    Improved recipients selection - we have improved the recipients wizard step, replacing the checkbox list with a smart search and select control; additionally, with this release you will be able to  select multiple lists (including Customer Reports) to exclude from your campaign.
    Improved campaign status screen - before sending the campaign, you will now be able to view the exact number of recipients before sending the campaign (Note: reports and list requiring a long time to compute will be approximated); additionally, while the campaign is sending, we are displaying a meaningful status, that indicates that the campaign is being sent.
    Email clients reporting - the campaign report screen has also been improved to include a report showing you the email clients used to read your campaigns.
    Admin console improvements
    We have updated our new admin user interface and replaced the insert module and insert tag panels with the new Business Catalyst toolbox almost everywhere. With the new toolbox we'll make it easier for partners and business owners to insert and customize module or tags into pages, templates or system emails. The toolbox user interface will opened by default for partners for faster access to tags and modules.
    Other changes
    Some  FTP improvements (better error codes, performance, etc) and SFTP support
    DNS improvements (support for setting up Google Apps email out of the box, several bug fixes)
    When you change your email address on adobe.com, it syncs automatically with BC
    Various improvements of the caching engine for static assets
    Issues fixed by May release
    Issue 2869695 - Fixed an issue that broke the comments submitted by visitors by placing <br> tags after a random number of characters;
    Issue 3317538 -     Fixed an issue preventing the social media modules from being reinitialized after pressing "Add to cart"
    Issue 3317105 -     Files with spaces in the name do not get invalidated properly on FTP/API delete
    Issue 3317478 -     Fixed an issue causing hardcoded http paths to generate security alerts when on https
    Issue 2567045 -     Fixed an issue with Product Purchased with Details data field
    Issue 2567131 -     Fixed an issue causing web app creation forms to generate  [No Name] duplicates
    Issue 3319245 -     Fixed the search function on Help & Support
    Issue 3320623 -     Fixed an issue causing decimal prices to be incorrectly saved when editing/creating an order in admin and having the site admin language set to a country language that uses "," as decimal separator instead of "."
    Issue 3325526 -     Fixed an issue causing the CRM Session verification to fail for session IDs that contain +
    Issue 3162093 - Fixed a problem [AdminV4] HTML files for campaigns can't be edited
    Issue 3009528 -     Updated multiline fields to allow line breaks
    Issue 3010606 -     Changed FTP blog layouts  listing  to properly handle cases of invalid layout group names
    Issue 3315646 -     Fixed an issue causing {tag_blogcategorylist}to not limit the number of results as set
    Issue 3316323 -     Small bug/improvement at offline payments on copy/pasting the PDF password
    Issue 2900590 -     Fixed an issue causing a correct web app item address to change to another one on some sites
    Issue 3319299 -     Fixed some performance problems causing Edit Web Apps Settings -> Autoresponder  interface to freeze
    Issue 3320422 -     "Free shipping" not validated when enforcing shipping validation
    Issue 2918069 -     Cannot save values properly for webapp items when the custom field uses comma separated checkbox list, and it has more then 265 characters for the list of values
    Issue 2925458 -     Web App edit form is adding "X_" to the existing classes inside the description field. Every edit will add another x_ ending up in something like class="x_x_x_classname"
    Issue 2567035 -     Can not list files in FTP when there are invalid characters or similar in the directory
    Issue 3313655 -     Import fails if the username column values are already in the CRM
    Issue 3315485 -     Varnish cache is not invalidated when overwriting files with %20 in the path
    Issue 3315372 -     When adding a new item in the admin the address fields is pre-populated
    Known issues and limitations
    Product list layout outputs the products using an unordered list, requiring CSS for better formatting
    Favorites module does not support multiple templates (layouts)
    Module detail views do not support multiple templates (layouts)
    Recursive modules are not supported in email campaign preview
    Dreamweaver design view, ignores the custom template and always renders the tags from the default template (layout)
    For more information about this, follow the release announcement on the Business Catalyst blog: Introducing our feature packed September release!

    Thanks Mario, what is missing from the post and this notification is a fundamental pieces of information "TIMES". This is not just your info but also the release by Jackson Palmer on the blog - totally missed there also
    We need to be notified of the sceduled timing of this release not just a vague date which is not specific globally
    25th but we are global - what time specifically 0100am PST is very different to 1030pm PST , the latter being 26th in AU
    Why - because campaigns scheduled for around this time can be impacted, and also if the sites go offile during the maintenance window campaigns can be a wasted exercise.
    Previously mid week schedules have been a matter of heated discussion, yet the support guys say that schedule ahas not been decided upon
    Not planning is planning to fail, and we have witnessed that all to ofetn in the past. BC unfortunately has a history of failing to plan and inform, and this does little to activate confidence in the community.
    I have discussed with Dragos on numerous occassion how the missing ingridents at BC like communication, UX, planning and most importantly understanding from the customer perspective (rather than backroom coders).
    eg at 645am 26th of Sept 2012 we have a email campaign scheduled ( and can be rescheduled ), the issue I see is without your maintenance window timings being published in a timely manner how can we tell if we move to a sooner or later timing. You have to agree it is disasterious marketing to blast out a campaign and find systems down when customers open newsletter offers and want to shop then.
    If the time schedule is listed somewhere else even more shame that it is overlooked as an inclusion here plus that Chat team are not informed and kept up to date and the blog is just fluff sales and chest beating. That is not support of partners regargless of paid or free status.
    To much time is wasted with this sort of unthinking about unpublished / incomplete notifications, Live chat guy wasted > 15 min of his and my time becuase they don't know either, how many others are being inconvenienced by fialing to plan and notify information to  act upon, this communication in the blog is good info but by itself useless and creates more doubt and lack or faith. Just look at the "hope in the comments"

  • New AJA Kona drivers for CS6

    New AJA  Kona drivers for CS6 are posted for download.
    Link to PC version.
    http://www.aja.com/en/support/kona/pc/kona-3/
    Link to Mac version
    http://www.aja.com/en/support/kona/mac/kona-3/

    Yay, so glad to hear it. I posted on creative cow under the AJA KONA Mac and received this response yesterday. As always, thanks for posting updates lasvideo!!
    Forum: AJA Kona - Mac
    User Name: walter biscardi
    Post Subject: Re: LHe Plus & Premiere CS6 success?
    Two of our systems are LHi boards with zero issues to report other than we cannot lay back to tape properly yet.   Though the new drivers released today promise to address that problem, we haven't had a chance to download and test yet.

  • Clean Install - use MSI System Drivers?

    I have a question regarding a clean install.
    Install operating system -> MSI Chipset Drivers then update on top using ATI Catalyst 8.4?, Realtek Audio Drivers and finally Realtek PCI-E Lan Drivers.
    What is difference between the MSI Drivers and the Catalyst suite?  They same to be the same:
    Catalyst Control Centre
    ATI Install Manager
    North Bridge Filter Driver
    ATI Display Manager
    IDE Driver
    Microsoft Visual C++
    ATI Unified Stream Driver
    except the MSI Drivers adds Avivo64 Driver
    Also, I thought it was always best to unistall all ATI drivers before upgrading? - at least that is the concensus on the AMD forum.
    Any advice is appreciated.
    Vista x64 Premium
    Antec P182B Case
    MSI K9A2CF BIOS ver 1.5B1
    AMD Phenom 9500
    Thermaltake ToughPower 750w
    ATI Radeon 2900XT
    OCZ PC2-6400 800Mhz 2 x 1024
    Seagate 500GB 16MB cache SATA-2 HD
    Mitsumi 1.44 internal 3.5 floppy / 6 in 1 card reader
    Samsung 206BW

    I guess that's where I'm confused.
    It dosen't appear that the MSI system drivers are any different than the ATI catalyst drivers.  The only difference is that the MSI drivers wanted to install Avivo64 on my system.  Going to the ATI Catalyst site, it offers Avivo64 as a seperate download, but "Avivo Video Converter will only work with X1000 series products."   http://game.amd.com/us-en/drivers_catalyst.aspx?p=vista64/common-vista64  I have a 2900XT.
    The Realtek audio and PCIe Ethernet drivers to install from the MSI site are in this case up to date and make sense.
    So to ask in a different way, is there a problem with:  OS first -> then the ATI Catalyst Suite (system drivers and display driver) - NOT install the MSI system drivers which appear to be outdated and the same as the ATI Catalyst Suite- then the Realtek Audio Driver, and finally the Realtek PCIe Ethernet driver.
    Thanks
    Vista x64 Premium
    Antec P182B Case
    MSI K9A2CF BIOS ver 1.5B1
    AMD Phenom 9500
    Thermaltake ToughPower 750w
    ATI Radeon 2900XT
    OCZ PC2-6400 800Mhz 2 x 1024
    Seagate 500GB 16MB cache SATA-2 HD
    Mitsumi 1.44 internal 3.5 floppy / 6 in 1 card reader
    Samsung 206BW

Maybe you are looking for

  • FBL5N t code and BSEG table is showing wrong contract number

    Hi, The proces flow is contract number>sales order>DMR-->Invoice Now when I am checking the VBFA table it's showing correct contract number against invoices but FBL5N t code and BSEG table are showing wrong contract numbers. Why FBL5N and BSEG table

  • Could not resolve mx:AdvancedDataGrid to a component implementation

    Hi, I receive this error msg: "Could not resolve <mx:AdvancedDataGrid> to a component implementation" whenever i try to compile my application using the Flex 3 application command line compile tool. I've gone through the folder where i exctracted the

  • Re: STMS

    Folks, Does the BW folks will have access to STMS tcode in development system? I do not have access to STMS, is there a way to re-import the failed transport? do I need to request basis to re-import the transport? I had access to STMS in the past, re

  • How to download the update

    how to donwlaod the update?

  • Selecting multiple checkboxes...Please Help!!!

    I am having an issue I have multiple checkboxes - once the checkboxes are selected, I would like some information to appear in a field and if checkbox is deselected I would like the text to disappear. My major problem is if all the checkboxes are sel