Notizia:
  • Rilasciata Precise Pangolin 12.04. Per ottenerla, visitate questa pagina, oppure provate il tour dal vivo con un browser web moderno.
  • Nuovo forum di Ubuntu-it, l'annuncio. È consigliato aggiornare il proprio profilo e controllare la sezione Gruppo Forum per problemi noti.
  • Rilasciata la versione italiana di Precise Pangolin 12.04. Per maggiori informazioni, consultare questa discussione.
  • Il vincitore del Concorso desktop del mese di aprile è Jerico. L'elenco dei precedenti vincitori è qui.
  • È uscito il numero 17 della Newsletter italiana di Ubuntu. Lo trovate a questo indirizzo.
  • È uscito il numero 59 di Full Circle Magazine in italiano. Lo trovate a questo indirizzo.

Risoluzione e frequenza monitor

Riconoscimento, installazione e configurazione delle periferiche.

Risoluzione e frequenza monitor

Messaggioda DeAndreon » martedì 6 gennaio 2009, 21:53

Ciao a tutti! Io ho una risoluzione 1024*768 a 75 mhz. Ho forzato ubuntu con il nvidia-settings per ottenerla perchè il mio monitor non viene riconosciuto correttamente, solo che vorrei passare alla 1280*1024 a 75 mhz perchè con xp ci va mentre con Ubuntu non so come metterla. Posto il mio xorg.conf:

# nvidia-settings: X configuration file generated by nvidia-settings
# nvidia-settings:  version 1.0  (buildd@palmer)  Mon Nov  3 08:46:46 UTC 2008

# xorg.conf (X.Org X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# Note that some configuration settings that could be done previously
# in this file, now are automatically configured by the server and settings
# here are ignored.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#  sudo dpkg-reconfigure -phigh xserver-xorg

Section "ServerLayout"
    Identifier    "Layout0"
    Screen      0  "Screen0" 0 0
EndSection

Section "Module"
    Load          "glx"
EndSection

Section "ServerFlags"
    Option        "Xinerama" "0"
EndSection

Section "Monitor"
    Identifier    "Configured Monitor"
EndSection

Section "Monitor"
    Identifier    "Monitor0"
    VendorName    "Unknown"
    ModelName      "CRT-1"
    HorizSync      28.0 - 75.0
    VertRefresh    43.0 - 75.0
EndSection

Section "Device"
    Identifier    "Configured Video Device"
    Driver        "nvidia"
    Option        "NoLogo" "True"
EndSection

Section "Device"
    Identifier    "Device0"
    Driver        "nvidia"
    VendorName    "NVIDIA Corporation"
    BoardName      "GeForce 7600 GS"
EndSection

Section "Screen"
    Identifier    "Default Screen"
    Device        "Configured Video Device"
    Monitor        "Configured Monitor"
    DefaultDepth    24
EndSection

Section "Screen"

# Removed Option "metamodes" "1024x768_60 +0+0"
# Removed Option "metamodes" "1024x768_60 +0+0; 1024x768_75 +0+0"
# Removed Option "metamodes" "1024x768_75 +0+0; 1024x768_60 +0+0"
# Removed Option "metamodes" "1280x1024_60 +0+0; 1024x768_60 +0+0"
# Removed Option "metamodes" "1024x768_75 +0+0; 1024x768_60 +0+0"
# Removed Option "metamodes" "1280x1024_60 +0+0; 1024x768_60 +0+0"
    Identifier    "Screen0"
    Device        "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    Option        "TwinView" "0"
    Option        "metamodes" "1024x768_75 +0+0; 1024x768_60 +0+0"
    SubSection    "Display"
        Depth      24
    EndSubSection
EndSection

Come devo fare?  :-\ Devo modificare qualcosa?(ho letto gli altri post)
Avatar utente
DeAndreon
Scoppiettante Seguace
Scoppiettante Seguace
 
Messaggi: 527
Iscrizione: dicembre 2008
Località: Ubuntulandia

Re: Risoluzione e frequenza monitor

Messaggioda Luka7 » martedì 6 gennaio 2009, 23:09

C'è un po' di casino nel file: sembra che tutti i campi siano doppi. Stai usando due monitor? Se non è così alcune opzioni si possono togliere.

Secondo me con una configurazione del genere dovresti riuscirci:

Codice: Seleziona tutto
# xorg.conf (X.Org X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# Note that some configuration settings that could be done previously
# in this file, now are automatically configured by the server and settings
# here are ignored.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh xserver-xorg

Section "ServerLayout"
    Identifier     "Layout0"
    Screen      0  "Screen0" 0 0
EndSection

Section "Module"
    Load           "glx"
EndSection

Section "ServerFlags"
    Option         "Xinerama" "0"
EndSection

Section "Monitor"
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "CRT-1"
    HorizSync       28.0 - 75.0
    VertRefresh     43.0 - 75.0
EndSection

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
    BoardName      "GeForce 7600 GS"
    Option         "NoLogo" "True"
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    Option         "TwinView" "0"
    Option         "metamodes" "1280x1024_75 +0+0; 1024x768_75 +0+0; 1024x768_60 +0+0"
    SubSection     "Display"
        Depth       24
    EndSubSection
EndSection

Avatar utente
Luka7
Scoppiettante Seguace
Scoppiettante Seguace
 
Messaggi: 559
Iscrizione: agosto 2007

Re: Risoluzione e frequenza monitor

Messaggioda Luka7 » martedì 6 gennaio 2009, 23:11

Ah, dimenticavo: Ho lasciato le opzioni relative al doppio schermo perché pare che servano per disabilitarlo. Se non funziona puoi provare a togliere tutte le opzioni relative e tenere un xorg.conf "standard" (il tuo è stato pesantemente modificato dal tool della nvidia)
Avatar utente
Luka7
Scoppiettante Seguace
Scoppiettante Seguace
 
Messaggi: 559
Iscrizione: agosto 2007

Re: Risoluzione e frequenza monitor

Messaggioda DeAndreon » mercoledì 7 gennaio 2009, 15:09

Faccio una copia dell'xorg.conf e provo. Nono, utilizzo un monitor Lcd captiva E1701 ma purtroppo non viene riconsciuto >:( E' stato modificato pesantemente dal tool nvidia perchè è stato l'unico modo per mettere la risoluzione del monitor a 1024*768 a 75 mhz. Provo con l'xorg che mi hai modificato e ti faccio sapere!
Avatar utente
DeAndreon
Scoppiettante Seguace
Scoppiettante Seguace
 
Messaggi: 527
Iscrizione: dicembre 2008
Località: Ubuntulandia

Re: Risoluzione e frequenza monitor

Messaggioda DeAndreon » mercoledì 7 gennaio 2009, 15:20

Niente, punto e da capo. Il tuo xorg.conf funziona. Vado con sudo nvidia-settings e imposto la risoluzione a 1280*1024 a 60mhz(l'unico valore che mi riporta il nvidia settings anche se io voglio 75mhz) e al successivo riavvio lui si mette in 1280*1024 a 60mhz ma dopo un pò si reimposta da solo alla 1024*768  ::) Non arrivo a capire perchè fa così >:(
Avatar utente
DeAndreon
Scoppiettante Seguace
Scoppiettante Seguace
 
Messaggi: 527
Iscrizione: dicembre 2008
Località: Ubuntulandia

Re: Risoluzione e frequenza monitor

Messaggioda Luka7 » mercoledì 7 gennaio 2009, 16:08

il problema potrebbe essere legato al fatto che il tuo xorg utilizza le metamodes per impostare la risoluzione. io finora ho visto le metamodes solo quando venivano usati due schermi, ma immagino che funzionino anche con uno solo.

Il problema è che per questioni di compatibilità l'nvidia mette come metamodes anche delle risoluzioni più basse. Io le ho lasciate, se vuoi si può provare a toglierle.  questo xorg dovrebbe andare SOLAMENTE con 1280x1024:

Codice: Seleziona tutto
# xorg.conf (X.Org X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# Note that some configuration settings that could be done previously
# in this file, now are automatically configured by the server and settings
# here are ignored.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh xserver-xorg

Section "ServerLayout"
    Identifier     "Layout0"
    Screen      0  "Screen0" 0 0
EndSection

Section "Module"
    Load           "glx"
EndSection

Section "ServerFlags"
    Option         "Xinerama" "0"
EndSection

Section "Monitor"
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "CRT-1"
    HorizSync       28.0 - 75.0
    VertRefresh     43.0 - 75.0
EndSection

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
    BoardName      "GeForce 7600 GS"
    Option         "NoLogo" "True"
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    Option         "TwinView" "0"
    Option         "metamodes" "1280x1024_75 +0+0"
    SubSection     "Display"
        Depth       24
    EndSubSection
EndSection

Avatar utente
Luka7
Scoppiettante Seguace
Scoppiettante Seguace
 
Messaggi: 559
Iscrizione: agosto 2007

Re: Risoluzione e frequenza monitor

Messaggioda DeAndreon » mercoledì 7 gennaio 2009, 23:01

Niente da fare, è cocciuto >:( Vabbè, tanto comunque provando quel poco che mi ha fatto provare la 1280*1024 ho capito che non fa per me(troppo piccoli i caratteri ed eccessivamente luminosa). Mi va bene così ;) Grazie lo stesso per il tuo aiuto (b2b)
Avatar utente
DeAndreon
Scoppiettante Seguace
Scoppiettante Seguace
 
Messaggi: 527
Iscrizione: dicembre 2008
Località: Ubuntulandia

Re: Risoluzione e frequenza monitor

Messaggioda Luka7 » mercoledì 7 gennaio 2009, 23:46

Io con la 1280x1024 mi trovo benissimo. Se vuoi si può provare con un xorg puro (senza le porzioni specifiche per i driver nvidia) e vedere come va. Io purtroppo sono messo come te (uso due schermi e quindi sono obbligato) e quindi dovrei documentarmi un attimo

Se preferisci rimanere così, però, non c'è problema ;)
Avatar utente
Luka7
Scoppiettante Seguace
Scoppiettante Seguace
 
Messaggi: 559
Iscrizione: agosto 2007


Torna a Driver e periferiche

Chi c’è in linea

Visualizzano questa pagina: AARyuzakiKK, fabiotra, paologaffu, socialubuntuadm, SuperStep e 16 ospiti

cron