19

I am using Ubuntu 14.04 LTS desktop version, I would like to use Ubuntu 14.04 Server.

Is it possible to migrate (change) from Ubuntu desktop to Ubuntu server without losing data from my system?

A J
  • 11,557

2 Answers2

28

Open your terminal and type:

sudo apt-get install tasksel

Then type sudo tasksel in terminal

enter image description here

It will open in terminal with options & there you can choose Ubuntu Server with space-bar and then continue. It will download and install Ubuntu Server tools.

Hope that helps.

Raja G
  • 105,327
  • 107
  • 262
  • 331
8
sudo apt-get install tasksel
sudo tasksel remove ubuntu-desktop
sudo tasksel install server
sudo apt-get update
sudo apt-get install linux-server linux-image-server
sudo apt-get purge lightdm

These commands can help you to competly convert an Ubuntu Desktop to Ubuntu Server. It work on Ubuntu 14.04 ;D

SamDev
  • 81