Ubuntu 14.04 does not support 2560x1080 resolution.

Bug #1357804 reported by Ian Shaw
82
This bug affects 16 people
Affects Status Importance Assigned to Milestone
xorg-server (Ubuntu)
Won't Fix
Undecided
Unassigned

Bug Description

I recently installed Ubuntu 14.04 on a mac mini and bought a 2560 x 1080 ultrawide LG monitor for it. Problem is that it doesn't display the proper resolution, the maximum being 1920 x 1080 under ubuntu settings.

Any suggestions on what I should do?

Please give clear instructions as I am not an Ubuntu expert.

My graphics card: NVIDIA Corporation C79 [GeForce 9400]

If there is currently no solution, would someone please pass this on to the Ubuntu developers so that they start working on implementing this resolution into the operating system?

Thank you,
Ian

Tags: bot-comment
Revision history for this message
Ubuntu Foundations Team Bug Bot (crichton) wrote :

Thank you for taking the time to report this bug and helping to make Ubuntu better. It seems that your bug report is not filed about a specific source package though, rather it is just filed against Ubuntu in general. It is important that bug reports be filed about source packages so that people interested in the package can find the bugs about it. You can find some hints about determining what package your bug might be about at https://wiki.ubuntu.com/Bugs/FindRightPackage. You might also ask for help in the #ubuntu-bugs irc channel on Freenode.

To change the source package that this bug is filed about visit https://bugs.launchpad.net/ubuntu/+bug/1357804/+editstatus and add the package name in the text box next to the word Package.

[This is an automated message. I apologize if it reached you inappropriately; please just reply to this message indicating so.]

tags: added: bot-comment
Revision history for this message
Ian Shaw (ianshawd) wrote :

I don't know that much about packages... I hope "xrandr" covers it...

affects: ubuntu → xrandr (Ubuntu)
Revision history for this message
Launchpad Janitor (janitor) wrote :

Status changed to 'Confirmed' because the bug affects multiple users.

Changed in xrandr (Ubuntu):
status: New → Confirmed
Revision history for this message
Vpispanen (vpispanen) wrote :

Also affected on Nvidia GeForce 330M (with proprietary driver v. 331, maybe with nouveau) on Ubuntu 14.10

Revision history for this message
Payam Nab (papampi) wrote :

Not working on 14.10 either

Revision history for this message
Payam Nab (papampi) wrote :

Max res I could get for my 29" ultra wide is 2160x912

Revision history for this message
Jaufré Aligé (jaufre) wrote :

now you can use nvidia proprietary driver 346

Just use our friend Michael Marley's ppa :

Add ppa, update cache, install nvidia-346 and reboot :
sudo bash -c "sudo add-apt-repository ppa:mamarley/nvidia -y && apt-get update && apt-get install nvidia-346 -y && reboot"

I hope nouveau will improve...

Revision history for this message
Evgeny (e-v-vetrov) wrote :

Do you have any solution for ATI graphics card?

Revision history for this message
Jaufré Aligé (jaufre) wrote :

I tested it with hdmi display. However, I can't guarantee it will work with a pre-kepler card.

Revision history for this message
freeman (wielki-freeman) wrote :

I have Nvidia GT330M and I have very similar issue: http://askubuntu.com/questions/665566/ubuntu-15-04-sees-2560x1080-resolution-only-sometimes

but the latest graphic driver for my card is 340.76.

Do you have any solution in this situation?

Revision history for this message
hodja (ehodja) wrote :

Any update for this bug?

Revision history for this message
mohsen (sm-zahraee) wrote :

i also have this problem, is there any solution? i use dvi port.

Revision history for this message
William O'Meallain (mealyman) wrote :

Also problem, running 14.04 LTS with 9800GT and LG 2560x1080 monitor as my primary in a dual-display setup. I was able to get that res by reverting to non-nvidia drivers, but otherwise, still a bug.

Revision history for this message
Michael Roberts (hu6hzq0zv-7aoyaz9-t16qijz8x) wrote :

Same here on 14.04 LTS with an LG 29UM58 ultrawide monitor through a Radeon Cedar graphics card and HDMI. Thanks to @papampi for the 2160x912 workaround, I can actually use this rather nice new monitor, though.

Revision history for this message
Haemin Yoo (mariceles) wrote :

Seems like a long-lasting bug, and it seems I've stuck with it too. I am using an HDMI cable to connect my laptop with the monitor. Hope it gets a fix soon so I will be able to come back to linux once again.

Revision history for this message
CarcaBot (carcabot) wrote :

Seems that also on LG ULTRA WIDE it is a problem to use it's resolution using GTS 250 GeForce.
I was almost convinced that my video card was the problem.

ubuntu 16.04
maximum resolution allowed on ultrawide is 1920x1080, I was able in the past to see 2560x1440 resolution but when changed screen goes to black.
video driver: nVidia 340

Revision history for this message
Stan Syritsyn (staleo) wrote :

A 29-inch LG 29um67-p with an on-board piece of legacy Radeon Sapphire 6670, don't work all together.

Ubuntu 16.04, max resolution in settings is 1920x1080. I try to manually include a 2560x1080 mode via xrandr, but after I apply a mode in terminal, the screen turns weird just like if I picked random digits for the resolution. Completely impossible to work.

Sad to see a bug was submitted almost 2 yrs ago, and seems no result yet. :/

Revision history for this message
Simon Brodeur (sbrodeur) wrote :

I have an external LG ultrawide monitor (21:9 ratio) connected through HDMI on my laptop with integrated Intel graphics. I adapted a script from this thread to support for 2560x1080 (60Hz) resolution:
http://askubuntu.com/questions/727753/how-do-i-configure-ubuntu-for-a-219-screen

It would be useful if the resolution was automatically supported. It works perfectly in Debian Jessie (Gnome).

--------------------------

#!/bin/bash

# Setup external monitor resolution at 2560x1080 (60Hz), if connected
RESOLUTION="2560 1080 60"
OUTPUT="HDMI-1"

CONNECTED=$(xrandr --current | grep -i $OUTPUT | cut -f2 -d' ')
if [ "$CONNECTED" = "connected" ]; then
    MODELINE=$(cvt $RESOLUTION | cut -f2 -d$'\n')
    MODEDATA=$(echo $MODELINE | cut -f 3- -d' ')
    MODENAME=$(echo $MODELINE | cut -f2 -d' ')

    echo "Adding mode - " $MODENAME $MODEDATA
    xrandr --newmode $MODENAME $MODEDATA
    xrandr --addmode $OUTPUT $MODENAME
    xrandr --output $OUTPUT --mode $MODENAME
else
    echo "Monitor is not detected"
fi

Revision history for this message
Daniel van Vugt (vanvugt) wrote :

Ubuntu 14.04 and 16.04 are no longer supported. Anyone using Intel graphics and a newer release should refer to bug 1901470 instead. Everyone else, please open a new bug if you encounter problems.

affects: xrandr (Ubuntu) → xorg-server (Ubuntu)
Changed in xorg-server (Ubuntu):
status: Confirmed → Won't Fix
To post a comment you must log in.
This report contains Public information  
Everyone can see this information.

Other bug subscribers

Remote bug watches

Bug watches keep track of this bug in other bug trackers.