How to enable xterm console on proxmox

Hosting an Evernode involves setting up and maintaining a linux machine which runs the evernode software and participates in network consensus. By participating, you help maintain the network's decentralized infrastructure while potentially earning rewards. Detailed tutorials and community support are available to assist node operators.
Forum rules
Welcome to the Hosting An Evernode Forum! To ensure a positive and productive environment, please adhere to the following guidelines.

Treat all members with respect and courtesy. Post content relevant to hosting an Evernode, avoiding spamming, self-promotion, or irrelevant topics. Aim to provide clear, informative, and constructive contributions. Discussions of illegal illicit activities are strictly prohibited. Protect your privacy and that of others by not sharing personal information publicly and reporting any suspicious activity to moderators. Failure to adhere to these rules may result in warnings, post deletions, or account suspension. Let’s work together to build a supportive and knowledgeable Evernode community!
Post Reply
proxmoxer
Posts: 18
Joined: Sun Apr 06, 2025 9:31 pm

How to enable xterm console on proxmox

Post by proxmoxer »

This requires modification in your grub file, the grub file is what linux reads when it boots up. If you screw it up, linux won't boot. In that scenario you need to boot into the recovery mode and correct the errors.

Step 1.
Add a serial port when your VM is running (click your VM, click Hardware, click Add and pick Serial port, default settings are good).
Image
Image


Step 2.
Log into its console and open the grubfile

Code: Select all

sudo nano /etc/default/grub
Image
Image

Step 3.
Find the line GRUB_CMDLINE_LINUX_DEFAULT and add following in it: quiet splash console=tty0 console=ttyS0,115200n8
Image

Full line looks like this:

Code: Select all

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash console=tty0 console=ttyS0,115200n8"
Save and exit by hitting CTRL + O (yes save) CTRL + X

Step 3.

Code: Select all

sudo update-grub
Image

Step 4.

Code: Select all

sudo systemctl enable serial-getty@ttyS0.service
Image

Step 5.
Reboot and pray that it works :lol:
Image

Step 6.
You need to shutdown and then start again to activate the serial port you added.
Image
Image
Image

Console look like this:
Image
Post Reply