LinuxCommandLibrary

aticonfig

TLDR

Display current GPU configuration

$ aticonfig --query-monitor
copy
Set up initial X configuration
$ sudo aticonfig --initial
copy
Enable dual monitors in extended mode
$ sudo aticonfig --initial=dual-head --screen-layout=right
copy
Set resolution for display
$ aticonfig --resolution=0,1920x1080
copy
Enable or disable Vsync
$ aticonfig --set-pcs-str="DDX,EnableVSync,1"
copy
Show GPU temperature and fan speed
$ aticonfig --odgt
copy
List all displays
$ aticonfig --list-adapters
copy
Set GPU clock speeds (overclocking)
$ aticonfig --odsc=950,1200
copy

SYNOPSIS

aticonfig [options]

DESCRIPTION

aticonfig is a configuration utility for AMD/ATI proprietary graphics drivers (Catalyst/fglrx). It provides command-line control over display settings, GPU parameters, and X.org configuration for AMD Radeon graphics cards.
The tool generates and modifies X configuration files, manages multi-monitor setups, and provides access to OverDrive features for monitoring temperatures and adjusting clock speeds. It serves as the CLI counterpart to the AMD Catalyst Control Center graphical tool.
Configuration changes for X.org typically require restart of the X server to take effect. OverDrive settings for clocks and fan control can be applied at runtime.

PARAMETERS

--initial

Generate a basic X configuration for the AMD GPU.
--initial=dual-head
Configure for dual monitor setup.
--query-monitor
Display connected monitors and their status.
--list-adapters
List all detected graphics adapters.
--resolution adapter,resolution
Set screen resolution for an adapter.
--screen-layout position
Set layout for dual monitors (left, right, above, below).
--odgt
Display GPU temperature (OverDrive Get Temperature).
--odgc
Display GPU clock information.
--odsc core,memory
Set GPU core and memory clock speeds.
--od-enable
Enable OverDrive (overclocking features).
--set-pcs-str path,value
Set a persistent configuration string.
--lsa
List adapters with detailed information.

CAVEATS

aticonfig is only for the legacy proprietary fglrx/Catalyst driver, which is discontinued and incompatible with modern Linux kernels (4.2+) and X.org versions. Modern AMD GPUs should use the open-source amdgpu driver with radeon-profile or corectrl for similar functionality. The tool is documented here for legacy systems only.

HISTORY

The aticonfig utility was part of AMD's proprietary Catalyst driver package for Linux, supporting Radeon HD series and earlier GPUs. AMD discontinued the Catalyst driver in 2015, pivoting to the open-source AMDGPU driver for newer hardware. The tool remains relevant only for users maintaining older systems with legacy hardware that cannot use the open-source stack.

SEE ALSO

Copied to clipboard