Q. I would like to setup 1920×1200 resolution for my XFree86 X windows system. How do I setup in XFree86? I am using Fedora Linux v5.0.
A. XFree86 is an X server that was originally designed for UNIX and UNIX like (BSD/Linuix) operating systems running on Intel x86 hardware. It now runs on a wider range of hardware and OS platforms.
File /etc/X11/XF86Config is a server configuration file for XFree86. You need to edit this file using vi text editor.
Login as the root
Open file:
# vi /etc/X11/XF86Config
Since 1920×1200 is a non-standard resolution you need to locate Section called “Screen”. Then find out Modes directive of the Screen section, add 1920×1200 to the list (the beginning of the list). At the end it should look as follows:
Modes “1920×1200” “1600×1200” “1024×768” “800×600” “640×480”
Here is the complete entry:
SubSection “Display”
Depth 24
Modes “1920×1200” “1600×1200” “1024×768” “800×600” “640×480”
EndSubSection
SubSection “Display”
Depth 16
Modes “1920×1200” “1600×1200” “1024×768” “800×600”
EndSubSection
Save the file and restart the system or restart the X server by logging out (or by pressing
CTRL+ALT+BkSpace keys)
🐧 0 comments... add one ↓
Category | List of Unix and Linux commands |
---|---|
File Management | cat |
Firewall | Alpine Awall • CentOS 8 • OpenSUSE • RHEL 8 • Ubuntu 16.04 • Ubuntu 18.04 • Ubuntu 20.04 |
Network Utilities | dig • host • ip • nmap |
OpenVPN | CentOS 7 • CentOS 8 • Debian 10 • Debian 8/9 • Ubuntu 18.04 • Ubuntu 20.04 |
Package Manager | apk • apt |
Processes Management | bg • chroot • cron • disown • fg • jobs • killall • kill • pidof • pstree • pwdx • time |
Searching | grep • whereis • which |
User Information | groups • id • lastcomm • last • lid/libuser-lid • logname • members • users • whoami • who • w |
WireGuard VPN | Alpine • CentOS 8 • Debian 10 • Firewall • Ubuntu 20.04 |