4

I want to run Ubuntu on a dedicated NAS I am building.

95% of the time I want to run it in as low power mode as possible (although I do want to run Crashplan on it), so I'd like to disable most X services and therefore the X window manager environment.

However sometimes when I log in, instead of using ssh, I'd quite like the ability to run the window manager and have a (Unity?) desktop. Is there an easy way to achieve all this?

user68186
  • 37,461
James B
  • 77

1 Answers1

2

You can install a simple window manager into Ubuntu Server, and start it only when you need it. I think it might be enough to install fluxbox, xinit, xterm (and the packages that they want)

sudo apt update && sudo apt upgrade
sudo apt install fluxbox xinit xterm

and you can start the graphical window manager with

startx

The following link is describing a system, where this is available via a text mode menu

help.ubuntu.com/community/Installation/UEFI-and-BIOS

but you can do it manually like it is described in this answer.

sudodus
  • 47,684