Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save prateekrajgautam/83978358ead5738a50cc3dd876cde121 to your computer and use it in GitHub Desktop.
Save prateekrajgautam/83978358ead5738a50cc3dd876cde121 to your computer and use it in GitHub Desktop.
Proxmox on Debian

Graphical or CLI

Identify the current target sudo systemctl get-default The result will likely display either the multi-user.target or graphical.target. Change targets manually Here's the command to launch the GUI from the multi-user.target: sudo systemctl isolate graphical.target Switch back by specifying the multi-user.target with this command: sudo systemctl isolate multi-user.target Set a default target sudo systemctl set-default multi-user.target Use the graphical.target argument to set the GUI as the default. sudo systemctl set-default graphical.target Reboot and confirm the appropriate target launched: sudo systemctl reboot`

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment