Jump to content

eloirotava

Members
  • Posts

    3
  • Joined

  • Last visited

Other groups

Support

1 Follower

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. It looks like the issue is likely related to display resolution settings if you can see the initial boot text but get a black screen with "no signal" once the GUI loads. Try the following steps: Switch to a TTY session If the system is running but the display is not working, press Ctrl + Alt + F1 (or F2, F3, etc.) to access a terminal. Check the current display settings If you can log in via SSH or TTY, try running: "xrandr" This will list the available resolutions. If the default resolution is not supported by your LCD panel, you may need to adjust it manually.
  2. On a headless machine, I use Xvfb (a virtual display server) and x11vnc to enable remote access. Here's what works for me: Xvfb :1 -screen 0 1280x720x16 & DISPLAY=:1 startx & x11vnc -display :1 -rfbport 5900 -forever & Make sure you have Xvfb and x11vnc installed! Xvfb :1 -screen 0 1280x720x16 → Starts a virtual display at :1 with a resolution of 1280x720 and 16-bit color depth. DISPLAY=:1 startx → Starts the X session using the virtual display. x11vnc -display :1 -rfbport 5900 -forever → Starts the VNC server on display :1, keeping the session active after disconnects.
  3. Hi! You should use netmask 255.255.255.0 instead of subnetmask. If NetworkManager is managing your interfaces, it might override manual settings. Try disabling it or configuring the static IP within nmcli. Let me know if you need more help! Thanks, Eloi.
×
×
  • Create New...

Important Information

Terms of Use - Privacy Policy - Guidelines