Current input timing is not supported by monitor

abasel

New Member
Dec 30, 2022
15
0
1
Hi, I am trying to install an new instance of Proxmox 7.3. I get to the install option, press entre and get the following on the monitor, "Current input timing is not supported by monitor........." I have tried all the work-arounds mentioned online (a number of people seem to have had this issue), with no success, and so was wondering if there was a proper fix somewhere, or if I could edit some config on the boot disk to fix this.
 
I have also just checked and the monitor (Dell P2012H) supports:
720 x 400 31.5
640 x 480 31.5
640 x 480 37.5
800 x 600 37.9
800 x 600 46.9
1024 x 768 48.4
1024 x 768 60.0
1152 x 864 67.5
1280 x 1024 64.0
1280 x 1024 80.0
1600 x 900 60.0
20230212_153448.jpg
 
Last edited:
I am starting to think that Proxmox might just not like my HP Proliant DL360 G6. I found an rackmounted KVM and no I simply get a blank screen after pressing install.
 
Thanks, yes I have just started to do that although I have not use the desktop environemnt. I can however now SSH in if I need to make changes :)
 
This is turning out to be too hard

Code:
Errors were encountered while processing:
 pve-manager
 proxmox-ve
E: Sub-process /usr/bin/dpkg returned an error code (1)
 
No, you don't lose anything doing it that way. However, the installer is easier to use, especially for new users.

There is another thing you can try using the installer iso; modifying the xorg.conf.

To do that:
  • when booting from the proxmox installer iso, select `Advanced Options` -> `Install in Debug Mode`
  • type exit so that you get into root@proxmox:/#
  • Type Xorg -configure to create a new `xorg.conf.new` file which will appear in your root directory. It will also say Using system config directory "/usr/share/X11/xorg.conf.d" (if it's not this path, change accordingly)
  • move the /xorg.conf.new file to the directory and rename it, doing mv /xorg.conf.new /usr/share/X11/xorg.conf.d/xorg.conf
  • move to that dir (cd /usr/share/X11/xorg.conf.d)
  • modify the xorg.conf file with nano (or any other text editor):
    • nano xorg.conf
    • under Section "Monitor", add Option "PreferredMode" "1024x768" (or any other resolution you want)
    • under Section "Screen" add a new SubSection Subsection "Display" Viewport 0 0 Modes "1024x768" EndSubSection
Together and correctly formattet this should look something like this:
Code:
.
.
.
Section "Monitor"
    Indentifier    "Monitor0""
    Option "PreferredMode" "800x600"
    VendorName    "Monitor Vendor"
    ModelName    "Monitor Model"
EndSection

.
.
.

Section "Screen"
    .
    .
    .
    SubSection "Display"
        Viewport    0 0
        Modes "1024x768"
    EndSubSection
EndSection

  • save and exit nano.
  • start the xserver with startx
Now it should work with your resolution
 
Last edited:
Unfortunately after pressing "Install in Debug Mode", some screens flash past and then the screen too goes black,.. think I will take a break for a while but thanks for your pointers.
 
Unfortunately after pressing "Install in Debug Mode", some screens flash past and then the screen too goes black,.. think I will take a break for a while but thanks for your pointers.
In that case, installing on top of Debian is your best bet. Or temporarily using a different monitor. Once Proxmox is installed, you don't really need a monitor anymore (unless debugging or something)

what happens when you enter the tty by pressing ctrl+alt+F2?
 
Last edited:
I just ran into this too.
I had 7.2 running a while on an HP DL385p g5 booting off an SSD instead of the DVD, 384MBRam, twin AMD Opteron procs std embedded VGA for KVM feeding an older acer 15" with VGA& DVI.
Toasted the MB SATA connector (oops)
New MB installed & figured why not load Proxmox 8.1 tooi? created USB - booted splash screens - GUI install-> Input not supported.
None of the many suggested fixes worked. Couldn't update either. Errors.
Happened to have an extra Nvidia Quad 400 card, put it in via DVI. rebooted off USB again. same issue under default GUI install.
rebooted again->advanced-> Terminal UI (Debug)...and it paused at the expected spots, but a CTRL-D and it continued
and fully loaded!

Long story short - try another video card & Debug Terminal UI.
 
At the boot screen Install Proxmox should be selected/highlighted, press "e"

delete quiet "splash = silent" and replace with "nomodeset"

Press ctrl+x to continue booting

It will likely get farther but still error out.

next type:

Code:
cat << EOF | tee --append /usr/share/X11/xorg.conf.d/10-quirks.conf

Section "Device"
    Identifier "Card0"
    Driver "fbdev"
EndSection
EOF

xinit -- -dpi 96 >/dev/tty2 2>&1

sources:
https://forum.proxmox.com/threads/generic-solution-when-install-gets-framebuffer-mode-fails.111577/
https://forum.proxmox.com/threads/g...ts-framebuffer-mode-fails.111577/#post-497833
 
  • Like
Reactions: mclarkit
At the boot screen Install Proxmox should be selected/highlighted, press "e"

delete quiet "splash = silent" and replace with "nomodeset"

Press ctrl+x to continue booting

It will likely get farther but still error out.

next type:

Code:
cat << EOF | tee --append /usr/share/X11/xorg.conf.d/10-quirks.conf

Section "Device"
    Identifier "Card0"
    Driver "fbdev"
EndSection
EOF

xinit -- -dpi 96 >/dev/tty2 2>&1

sources:
https://forum.proxmox.com/threads/generic-solution-when-install-gets-framebuffer-mode-fails.111577/
https://forum.proxmox.com/threads/g...ts-framebuffer-mode-fails.111577/#post-497833
This worked perfectly for me, thanks!!
 

About

The Proxmox community has been around for many years and offers help and support for Proxmox VE, Proxmox Backup Server, and Proxmox Mail Gateway.
We think our community is one of the best thanks to people like you!

Get your subscription!

The Proxmox team works very hard to make sure you are running the best software and getting stable updates and security enhancements, as well as quick enterprise support. Tens of thousands of happy customers have a Proxmox subscription. Get yours easily in our online shop.

Buy now!