LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?

Notices


Reply
  Search this Thread
Old 04-08-2004, 11:40 AM   #1
marxist
LQ Newbie
 
Registered: Dec 2003
Posts: 26

Rep: Reputation: 15
Post Amitech monitor


I have an Amitech Monitor which worked without any problem until I installed the NVidia VGA drivers.

Now I can't set up a resolution above 1024 x 768. If I try to set it higher the Desktop sort of becomes larger than the monitor. I can't see it all, and when I move the cursor to the edges, I can scroll the Desktop.

Not sure how to explain, but I hope you understand what i mean

I use MDK 10, but had the same problem with 9.2.
I have another monitor (KFC) which works fine in high resolutions.

Thank you

-Holme

 
Old 04-08-2004, 11:46 AM   #2
JaseP
Senior Member
 
Registered: Jun 2002
Location: Eastern PA, USA
Distribution: K/Ubuntu 18.04-14.04, Scientific Linux 6.3-6.4, Android-x86, Pretty much all distros at one point...
Posts: 1,802

Rep: Reputation: 157Reputation: 157
You have a modelines problem...

the generic drivers you were using probably had a good monitor modelines section, while the current one has a refresh rate to resolution setting that's out of the range of your monitor...

Check on Google for a linux modelines calculator. Input your refresh rates and monitor resolution so that you can get the proper settings. Then edit your XF86Config or XF86Config-4 file (depending on which distro you use) to use those settings instead of the ones that it's defaulting to.
 
Old 04-08-2004, 12:06 PM   #3
marxist
LQ Newbie
 
Registered: Dec 2003
Posts: 26

Original Poster
Rep: Reputation: 15
Thank you for your answer.

I found a calculator at http://www.dkfz-heidelberg.de/spec/l...modeline2.cgi, but i have both XF86config and XF86Config-4, which one do I have to change?
 
Old 04-08-2004, 09:25 PM   #4
JaseP
Senior Member
 
Registered: Jun 2002
Location: Eastern PA, USA
Distribution: K/Ubuntu 18.04-14.04, Scientific Linux 6.3-6.4, Android-x86, Pretty much all distros at one point...
Posts: 1,802

Rep: Reputation: 157Reputation: 157
Might as well change them both,... Although I think that in Mandy, the XFree86Config-4 file is the file that is being used in an XFree86 version 4.3.X environment.
 
Old 04-09-2004, 06:27 PM   #5
marxist
LQ Newbie
 
Registered: Dec 2003
Posts: 26

Original Poster
Rep: Reputation: 15
I tried at http://xtiming.sourceforge.net/cgi-bin/xtiming.pl and at http://www.dkfz-heidelberg.de/spec/linux/modeline/ but none of them worked.

The specs. of my monitor are:

# 800 x 600 Non-Interlace, 100Hz
# 1024 x 768 Non-Interlace, 85Hz
# 1280 x 1024 Non-Interlace, 60Hz
# 30-70KHz horizontal scan frequency
# 50-150Hz vertical scan frequency
# 110MHz Dot Clock Frequency

I believe I have learned some about XFree86 as I worked with this problem, but I can't seem to solve it.

Last edited by marxist; 04-09-2004 at 06:29 PM.
 
Old 04-09-2004, 06:51 PM   #6
Aussie
Senior Member
 
Registered: Sep 2001
Location: Brisvegas, Antipodes
Distribution: Slackware
Posts: 4,590

Rep: Reputation: 58
Post the monitor section and the screens section of your XF86Config-4.
 
Old 04-09-2004, 07:04 PM   #7
marxist
LQ Newbie
 
Registered: Dec 2003
Posts: 26

Original Poster
Rep: Reputation: 15
Here goes:

Section "Monitor"
Identifier "monitor1"
HorizSync 30-70
VertRefresh 50-150

# V-freq: 76.31 Hz // h-freq: 69.10 KHz
Modeline "1152x864" 110.00 1152 1208 1344 1592 864 864 867 905

# Sony Vaio C1(X,XS,VE,VN)?
# 1024x480 @ 85.6 Hz, 48 kHz hsync
ModeLine "1024x480" 65.00 1024 1032 1176 1344 480 488 494 563 -hsync -vsync

# TV fullscreen mode or DVD fullscreen output.
# 768x576 @ 79 Hz, 50 kHz hsync
ModeLine "768x576" 50.00 768 832 846 1000 576 590 595 630

# 768x576 @ 100 Hz, 61.6 kHz hsync
ModeLine "768x576" 63.07 768 800 960 1024 576 578 590 616
EndSection

Section "Screen"
Identifier "screen1"
Device "device1"
Monitor "monitor1"
DefaultColorDepth 24

Subsection "Display"
Depth 8
Virtual 1024 768
EndSubsection

Subsection "Display"
Depth 15
Virtual 1024 768
EndSubsection

Subsection "Display"
Depth 16
Virtual 1024 768
EndSubsection

Subsection "Display"
Depth 24
Virtual 1152 864
EndSubsection
EndSection
 
Old 04-09-2004, 07:13 PM   #8
Aussie
Senior Member
 
Registered: Sep 2001
Location: Brisvegas, Antipodes
Distribution: Slackware
Posts: 4,590

Rep: Reputation: 58
Ok, try the following,
Code:
Section "Monitor"
    Identifier "monitor1"
    HorizSync 30-70
    VertRefresh 50-150   
EndSection

Section "Screen"
    Identifier "screen1"
    Device "device1"
    Monitor "monitor1"
    DefaultColorDepth 24
      
    Subsection "Display"
        Depth       24
        Modes      "1280x1024" "1024x768" "800x600"
    EndSubsection
EndSection
Replace the modes with what you need for your monitor, with the prefered mode first and the rest in decending order (left to right).
 
Old 04-09-2004, 07:31 PM   #9
marxist
LQ Newbie
 
Registered: Dec 2003
Posts: 26

Original Poster
Rep: Reputation: 15
Okay, now it looks as so:

Code:
Section "Monitor"
    Identifier "monitor1"
    HorizSync 30-70
    VertRefresh 50-150
EndSection

Section "Screen"
    Identifier "screen1"
    Device "device1"
    Monitor "monitor1"
    DefaultColorDepth 24
    
    Subsection "Display"
	Depth	24
	Modes	"1152x864" "1280x1024" "1024x768" "800x600"
    EndSubsection
EndSection

I'm still in 1024x768 mode. How's that?

Last edited by marxist; 04-09-2004 at 07:33 PM.
 
Old 04-09-2004, 07:41 PM   #10
Aussie
Senior Member
 
Registered: Sep 2001
Location: Brisvegas, Antipodes
Distribution: Slackware
Posts: 4,590

Rep: Reputation: 58
Are you sure that the monitor supports modes bigger than 1024x768?
Do you have a link to the monitor specs?

Last edited by Aussie; 04-09-2004 at 07:44 PM.
 
Old 04-09-2004, 08:02 PM   #11
marxist
LQ Newbie
 
Registered: Dec 2003
Posts: 26

Original Poster
Rep: Reputation: 15
Exclamation

I have used the resolution 1152x864 before I installed the NVidia drivers. Very strange.

The only specs are at this site: http://www.amitech.dk/support/starts...n=vis&aid=1775 but it's in danish. I believe the company is danish too.

Here are the specs. translated into my bad English :

BZ-772M:

General:

* Model BZ-772M
* 17"
* 1280 x 1024 (Non-Interlace) max resolution
* 0.27 mm Dot Pitch
* 15,7" visible screen size
* Analog RGB (15 pin D-sub) port
* Energy safe function
* Plug´n´Play
* TCO 95 low radiation
* build-in microphone
* On-Screen-Display (OSD)


Functions

* Light/Contrast
* Hight/Width
* Horizontal/Vertical placing
* Pincushion
* Trapez
* Unbalance
* Parallelogram
* Rotation
* Color balance
* OSD placing
* OSD timer
* Information
* Degauss
* Reset
* Language


Screen update

* 800 x 600 Non-Interlace, 100Hz
* 1024 x 768 Non-Interlace, 85Hz
* 1280 x 1024 Non-Interlace, 60Hz
* 30-70KHz horizontal scan frequency
* 50-150Hz vertical scan frequency
* 110MHz Dot Clock Frequence


Electrical values
* 100 - 240 AC Volt, 50 - 60 Hz
* ≤ 110W max use
* ≤ 5W standby use
* ≤ 5W softoff use

Dimensions / Weight
* Ca. 412(H) x 406(B) x 435(D) mm
* Weight ca. 15,5 kg


That's all I know...
 
Old 04-09-2004, 08:15 PM   #12
Aussie
Senior Member
 
Registered: Sep 2001
Location: Brisvegas, Antipodes
Distribution: Slackware
Posts: 4,590

Rep: Reputation: 58
Quote:
Originally posted by marxist
I have used the resolution 1152x864 before I installed the NVidia drivers. Very strange.
Ok try adding the following to your graphice device section section,
Code:
Option     "NoDDC"   "Yes"
 
Old 04-09-2004, 08:34 PM   #13
marxist
LQ Newbie
 
Registered: Dec 2003
Posts: 26

Original Poster
Rep: Reputation: 15
Hmm.. There was a change.

This time KDE tried to show a resolution of 1152x864, but in the usual screen-scrooling way. Just like when I try to force the resolution through.

Furthermore i received a lot of messages of programs which were crashed.
 
Old 04-09-2004, 08:38 PM   #14
marxist
LQ Newbie
 
Registered: Dec 2003
Posts: 26

Original Poster
Rep: Reputation: 15
Oh, and the "Device section looked like this:
Code:
Section "Device"
    Identifier "device1"
    VendorName "nVidia Corporation"
    BoardName "NVIDIA GeForce4 (generic)"
    Driver "nvidia"
    Option "DPMS"
    Option "NoDDC" "Yes"
EndSection
I also tried to remove the "DPMS" option, without any difference.
 
Old 04-09-2004, 08:42 PM   #15
Aussie
Senior Member
 
Registered: Sep 2001
Location: Brisvegas, Antipodes
Distribution: Slackware
Posts: 4,590

Rep: Reputation: 58
It's starting to look like 1152x864 is not fully supported by this monitor,
Quote:
Screen update

* 800 x 600 Non-Interlace, 100Hz
* 1024 x 768 Non-Interlace, 85Hz
* 1280 x 1024 Non-Interlace, 60Hz
* 30-70KHz horizontal scan frequency
* 50-150Hz vertical scan frequency
* 110MHz Dot Clock Frequence
Usually all the modes supported are mentioned in these specs, and usually you want to run your display at 75Hz or better to avoid flicker (unless you have a LCD monitor).
 
  


Reply



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
default monitor on nvidia / dual monitor setup fenderog SUSE / openSUSE 3 05-01-2009 05:36 PM
New monitor problems, Fedora Cora 3, Samsung 913N monitor gingermeatboy Linux - Hardware 2 08-23-2005 08:22 AM
Booting to wrong Monitor (w/ dual monitor setup) NeoNostalgia Linux - General 1 06-30-2004 01:49 AM
Monitor doesn't wake up after stanby and battery monitor problems (tm) Linux - Laptop and Netbook 2 03-23-2004 06:34 AM
Monitor problems -- changing resolution back w/o monitor Jiawen Linux - Hardware 5 03-17-2004 10:06 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

All times are GMT -5. The time now is 12:52 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