0

I had installed Lubuntu in my old computer. It's so old that I think I should not use any desktop environment.

Is there any way to boot without Any desktop environment? I had only Lubuntu on my computer thus I didn't install grub or boot loader. I don't want to remove the desktop environment for testing reasons or start single application as posted here. I want to boot into my Lubuntu normally, just without any desktop environment (e.g: LXDE), I want it like Ubuntu server.

Ravexina
  • 55,668
  • 25
  • 164
  • 183

2 Answers2

5

While your system is running use:

systemctl isolate multi-user.target

If you were happy with what you've got, set multi-user as your default systemd target:

sudo systemctl set-default multi-user.target

Alternatively you can kill the "X" or disable display manger service...

Ravexina
  • 55,668
  • 25
  • 164
  • 183
2

You can just enter runlevel 3 as default. if you are using systemd you can do this:

$ sudo systemctl set-default runlevel3.target

or:

$ sudo systemctl set-default multi-user.target
Ravexina
  • 55,668
  • 25
  • 164
  • 183