LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 12-29-2014, 01:33 AM   #1
Kuriibaa
Member
 
Registered: Jul 2014
Posts: 53

Rep: Reputation: Disabled
Display/desktop too big for screen on several distros


Hi,

I got a new monitor a few days ago that's 1080p and can't figure out how to adjust the display to fit it properly. Everything is too big in the sense that the toolbars/menus are mostly off-screen now across all distros. Strangely, Windows 7 is the only one I've been able to fix this with, as I have an NVidia program that allows such settings to be adjusted(the card is a GTX 440.)

Long story short, I multiboot for some sane reasons and some possibly crazy ones. Among those are Ubuntu and Mint, which I mention because I figure they're widely used and most likely to have users that could have a solution for me on here. I could reinstall each of these, but would rather learn how to fix this display issue for now and in the future.

Anyone have some tips on how I might fix this in general across distros or even just for one or some of them? Display settings in, for example, Mint and Ubuntu, do not provide me with any options to change the output to fit the screen. Thanks!

Sorry if this post is long-winded. My head's kind of spinning now from trying a lot of options and getting no results.
 
Old 12-29-2014, 02:02 AM   #2
sidzen
Member
 
Registered: Feb 2014
Location: GMT-7
Distribution: Slackware64, xenialpup64, Slacko5.7
Posts: 204

Rep: Reputation: 36
Looks like you need the nVidia 340.65 driver for linux.
Look here to double-check, because there is no listing for GTX-440 (only GT-440) card.

Driver and uility you speak of may be in ubuntu repository -- check https://help.ubuntu.com documentation, as a suggestion.
(I dont do PPAs).

Or do
PHP Code:
apt-get update 
then
PHP Code:
apt-cache search nvidia-340.65 
and see if it's there.

[You may have to edit your /etc/apt/sources.list and add the deb-src lines yourself to enable sources]

In short, I don't know if 1080p is a problem wih the card, but would think it is a driver problem, since you did not mention loading any;
I do know nVidia works best with its proprietary driver, . . .

EDIT: . . . but that would mean unloading the nouveau driver and blacklisting it. Check distro documentation, though, since the 'buntus (and Mint uses ubuntu repos, too) may have an easier solution for you to follow. I don't keep up with them much, anymore.

Have fun!

Last edited by sidzen; 12-29-2014 at 02:40 AM. Reason: typo, addendum
 
Old 12-29-2014, 02:35 AM   #3
Kuriibaa
Member
 
Registered: Jul 2014
Posts: 53

Original Poster
Rep: Reputation: Disabled
Maybe it is GT 440, actually. Makes more sense.

I DLed the driver, but I can't seem to figure out how to execute it, probably due to my lack of much basic knowledge within Linux. I tried the terminal command in the NVidia page you linked to, but it gave me a pretty generic message simply saying it couldn't run the file. Something tells me that when I do run it, though, there's a good chance it'll fix this issue, though the PPA thing may confuse matters further(I've yet to find the needed info in that documentation page.)

Also, when using the commands you suggested, it didn't return any text--just went to the prompt immediately.

Thanks for the quick reply!
 
Old 12-29-2014, 07:40 AM   #4
Head_on_a_Stick
Senior Member
 
Registered: Dec 2014
Location: London, England
Distribution: Debian stable (and OpenBSD-current)
Posts: 1,187

Rep: Reputation: 285Reputation: 285Reputation: 285
Sounds like a DPI issue to me.
https://wiki.archlinux.org/index.php...y_size_and_DPI
 
Old 12-29-2014, 10:00 AM   #5
suicidaleggroll
LQ Guru
 
Registered: Nov 2010
Location: Colorado
Distribution: OpenSUSE, CentOS
Posts: 5,573

Rep: Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142
Quote:
Originally Posted by Kuriibaa View Post
Maybe it is GT 440, actually. Makes more sense.

I DLed the driver, but I can't seem to figure out how to execute it, probably due to my lack of much basic knowledge within Linux. I tried the terminal command in the NVidia page you linked to, but it gave me a pretty generic message simply saying it couldn't run the file. Something tells me that when I do run it, though, there's a good chance it'll fix this issue, though the PPA thing may confuse matters further(I've yet to find the needed info in that documentation page.)

Also, when using the commands you suggested, it didn't return any text--just went to the prompt immediately.

Thanks for the quick reply!
You need to add execute permissions to the file
Code:
chmod +x file
You also need to kill the X session in order to install it. The method to do that depends on your distro (init vs systemd), and you may need to do some nouveau work-arounds as well. It's best to look up an install guide for your particular distro since it should include all of the caveats.
 
Old 12-29-2014, 11:02 AM   #6
sidzen
Member
 
Registered: Feb 2014
Location: GMT-7
Distribution: Slackware64, xenialpup64, Slacko5.7
Posts: 204

Rep: Reputation: 36
It sounds as if OP may need a CLI tutorial. Don't look to ubuntu documentation for how to become root. Once logged in as normally done, get to a prompt by opening Terminal.

NOTE: this is what I forgot to tell you, OP, about the commands issued in terminal -- use sudo before the command if in 'buntus. so it would be
PHP Code:
sudo apt-get update && sudo apt-cache search {search term
(use && to join sequential commands and issue them at once)

If you get tired of sudo and need to be root,
PHP Code:
sudo passwd root 
but one must be extra careful becoming root. I'm sure you'll hear it put like, "Thou shall not become root!" by 'buntuites, of which I was one until after Lucid Lynx. So, beware!

Suggestion: Learn how to navigate in and out of Console using the F keys and what to do should you find yourself without a GUI while there. What does
PHP Code:
init 3 
do? How about
PHP Code:
service {name of your dmstop 
'Bye for now.

Keep pluggin' away!
 
Old 12-30-2014, 04:14 AM   #7
Kuriibaa
Member
 
Registered: Jul 2014
Posts: 53

Original Poster
Rep: Reputation: Disabled
It is true that I'm a bit new with the terminal and describing stuff on it, but most of the commands you posted I know. I can do general update stuff and fully understand the sudo significance(I personally use it by default because I'd rather not form any bad habits and I'm not the most focused person all of the time, especially when stressing over how to fix OS-related stuff.

I've tried some driver switch in the software/updates app in Unity today, and that hasn't helped, either(was suggested in another forum I'm asking this question in.) That's my only current update regarding the status of Ubuntu on this machine.
 
Old 12-30-2014, 08:28 AM   #8
sidzen
Member
 
Registered: Feb 2014
Location: GMT-7
Distribution: Slackware64, xenialpup64, Slacko5.7
Posts: 204

Rep: Reputation: 36
suicidaleggroll's post still stands -- are you having problems with his instructions?
For instance, was X killed before trying a manual install?

Some other things -- has adding "nomodeset" to the end of the kernel line in GRUB been tried? Xrandr?
 
Old 12-30-2014, 06:20 PM   #9
Kuriibaa
Member
 
Registered: Jul 2014
Posts: 53

Original Poster
Rep: Reputation: Disabled
No problems with the instructions. I just tried this out and it recognized all my commands/installed the driver, but there's no difference in display. X was killed before attempting the install.

As for "nomodeset", I don't even know how to add that in GRUB--used to, I think, but forgot, as I probably only did it once to fix some random issue months ago. I've used xrandr before, too, but I don't recall how. Any suggested commands with those?

I'd forgotten about the DPI suggestion, and will check out the link posted to see if anything there helps as well.
 
Old 12-31-2014, 02:54 AM   #10
EDDY1
LQ Addict
 
Registered: Mar 2010
Location: Oakland,Ca
Distribution: wins7, Debian wheezy
Posts: 6,841

Rep: Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649
Most modern monitors have an auto adjust option, try it before making too many changes to your system.
 
Old 12-31-2014, 06:40 AM   #11
Head_on_a_Stick
Senior Member
 
Registered: Dec 2014
Location: London, England
Distribution: Debian stable (and OpenBSD-current)
Posts: 1,187

Rep: Reputation: 285Reputation: 285Reputation: 285
Quote:
Originally Posted by Kuriibaa View Post
As for "nomodeset", I don't even know how to add that in GRUB--used to, I think, but forgot, as I probably only did it once to fix some random issue months ago. I've used xrandr before, too, but I don't recall how. Any suggested commands with those?
Press "e" at the GRUB menu & put "nomodeset" at the end of the line starting with "linux" then press enter.

As for xrandr -- try using arandr instead, it's a GUI front-end for it.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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 Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] Rotate the monitor-display and the screen-desktop in KDE JZL240I-U Linux - Desktop 27 03-22-2011 11:03 AM
display in monitor is too big for the screen in X Grid_Iron Linux - Hardware 1 04-26-2007 10:08 AM
Desktop too big for monitor screen jwillar Linux - Hardware 1 11-11-2006 08:46 AM
no desktop display after login screen sunlinux Linux - Hardware 5 08-29-2006 05:40 AM
Fc3 - Desktop too big for screen SilverZero Linux - Newbie 5 11-18-2004 12:02 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 10:13 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration