Find the answer to your Linux question:
Page 1 of 3 1 2 3 LastLast
Results 1 to 10 of 23
i need to ajust the size of the screen and such, but there is only one choice under the menu for screen resolution. i have ubuntu...
  1. #1
    Linux Enthusiast crashandburn0420's Avatar
    Join Date
    Jun 2005
    Location
    Naugatuck, CT
    Posts
    590

    Screen resolution

    i need to ajust the size of the screen and such, but there is only one choice under the menu for screen resolution. i have ubuntu

  2. #2

  3. #3
    Linux Enthusiast crashandburn0420's Avatar
    Join Date
    Jun 2005
    Location
    Naugatuck, CT
    Posts
    590
    thanks but i dont know the root password;i never set one. i tried my password and nothing and nothing works.

  4. #4
    Linux Enthusiast aysiu's Avatar
    Join Date
    Jul 2005
    Posts
    633
    There is no root. When you're prompted for a password, it should be your password.

    Type
    sudo gedit /etc/X11/xorg.conf

    What happens?

  5. #5
    Linux Enthusiast crashandburn0420's Avatar
    Join Date
    Jun 2005
    Location
    Naugatuck, CT
    Posts
    590
    it says
    # /etc/X11/xorg.conf (xorg 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 /etc/X11/xorg.conf manual page.
    # (Type "man /etc/X11/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.
    #
    # If you have edited this file but would like it to be automatically updated
    # again, run the following commands:
    #
    # cp /etc/X11/xorg.conf /etc/X11/xorg.conf.custom
    # sudo sh -c 'md5sum /etc/X11/xorg.conf >/var/lib/xfree86/xorg.conf.md5sum'
    # sudo dpkg-reconfigure xserver-xorg

    Section "Files"
    FontPath "unix/:7100" # local font server
    # if the local font server has problems, we can fall back on these
    FontPath "/usr/lib/X11/fonts/misc"
    FontPath "/usr/lib/X11/fonts/cyrillic"
    FontPath "/usr/lib/X11/fonts/100dpi/:unscaled"
    FontPath "/usr/lib/X11/fonts/75dpi/:unscaled"
    FontPath "/usr/lib/X11/fonts/Type1"
    FontPath "/usr/lib/X11/fonts/CID"
    FontPath "/usr/lib/X11/fonts/100dpi"
    FontPath "/usr/lib/X11/fonts/75dpi"
    # paths to defoma fonts
    FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
    FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/CID"
    EndSection

    Section "Module"
    Load "bitmap"
    Load "dbe"
    Load "ddc"
    Load "dri"
    Load "extmod"
    Load "freetype"
    Load "glx"
    Load "int10"
    Load "record"
    Load "type1"
    Load "vbe"
    EndSection

    Section "InputDevice"
    Identifier "Generic Keyboard"
    Driver "keyboard"
    Option "CoreKeyboard"
    Option "XkbRules" "xorg"
    Option "XkbModel" "pc104"
    Option "XkbLayout" "us"
    EndSection

    Section "InputDevice"
    Identifier "Configured Mouse"
    Driver "mouse"
    Option "CorePointer"
    Option "Device" "/dev/input/mice"
    Option "Protocol" "ImPS/2"
    Option "Emulate3Buttons" "true"
    Option "ZAxisMapping" "4 5"
    EndSection

    Section "Device"
    Identifier "Intel Corporation 82845G/GL[Brookdale-G]/GE Chipset Integrated Graphics Device"
    Driver "i810"
    BusID "PCI:0:2:0"
    EndSection

    Section "Monitor"
    Identifier "hp mx704"
    Option "DPMS"
    EndSection

    Section "Screen"
    Identifier "Default Screen"
    Device "Intel Corporation 82845G/GL[Brookdale-G]/GE Chipset Integrated Graphics Device"
    Monitor "hp mx704"
    DefaultDepth 24
    SubSection "Display"
    Depth 1
    Modes "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 4
    Modes "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 8
    Modes "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 15
    Modes "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 16
    Modes "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 24
    Modes "1024x768" "800x600" "640x480"
    EndSubSection
    EndSection

    Section "ServerLayout"
    Identifier "Default Layout"
    Screen "Default Screen"
    InputDevice "Generic Keyboard"
    InputDevice "Configured Mouse"
    EndSection

    Section "DRI"
    Mode 0666
    EndSection
    and i have a hp pavilion mx704 monitor i think its about 17"

  6. #6
    Linux Enthusiast aysiu's Avatar
    Join Date
    Jul 2005
    Posts
    633
    Before doing anything else, make sure you back up your xorg.conf file. That way, in case you mess it up, you can replace it with the old file.

    To do so, type this in the console:

    sudo cp /etc/X11/xorg.conf /etc/X11/xorg.conf_backup

    Then, you can retype the command I gave you before.

    Okay. See this section?

    Section "Monitor"
    Identifier "hp mx704"
    Option "DPMS"
    EndSection
    I went to the HP site to find out what your monitor specifications are:

    http://h10025.www1.hp.com/ewfrf/wc/d...name=c00039593

    So you should add in these two lines to the "Monitor" section:

    HorizSync 30-70
    VertRefresh 50-140
    Now, I'm assuming you really do have the 17" and not the 15". Otherwise, you have to put in the 15" horizontal and vertical synchronization ranges, which are listed in the HP link above.

  7. #7
    Linux Enthusiast crashandburn0420's Avatar
    Join Date
    Jun 2005
    Location
    Naugatuck, CT
    Posts
    590
    should it look like this
    Section "Monitor"
    Identifier "hp mx704"
    Option "DPMS"
    HorizSync 30-70
    VertRefresh 50-140
    EndSection

  8. #8

  9. #9
    Linux Enthusiast crashandburn0420's Avatar
    Join Date
    Jun 2005
    Location
    Naugatuck, CT
    Posts
    590
    it didnt do anything

  10. #10
    Linux Enthusiast aysiu's Avatar
    Join Date
    Jul 2005
    Posts
    633
    So you rebooted and you still didn't get another screen resolution option?

Page 1 of 3 1 2 3 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •