Difference between revisions of "Ubuntu LXDE Desktop"

From Ever changing code
Jump to navigation Jump to search
Line 3: Line 3:
* LXDE as light weight desktop environment
* LXDE as light weight desktop environment
* Firefox, Network Manager as only necessary applications
* Firefox, Network Manager as only necessary applications
= Installing LXDE on Ubuntu =
Installed lubuntu-core
sudo apt-get install lxde-core
It then had none of the extra software install. Originally I tried with <code>--no-install-recommends</code> but this left it too bare and seemingly with missing dependencies. After doing this I installed '''lxappearance''' and '''obconf''' to allow me to change the themes easily
sudo apt-get install lxappearance obconf
Install firefox without any recommended software as the addons are for Gnome.
sudo apt-get install firefox --no-install-recommends
Select display manager or use StartX if none available
sudo update-alternatives --config x-session-manager
Install startx if no display managers is available
sudo apt-get install xinit
Start LXDE
startx
Optional. If you have errors in xsession-errors to clear up
sudo apt-get install gtk2-engines-pixbuf
Network Manager needs configuring after bare LXDE has been installed: [https://help.ubuntu.com/community/Lubuntu/Documentation/MinimalInstall#Unmanaged_Wired_Network Unmanaged_Wired_Network]. The nm-system-settings.conf is now called NetworkManager.conf as written below:
Change Network Manager settings Start an LXTerminal session, then issue:
sudo vi /etc/NetworkManager/NetworkManager.conf
In section [ifupdown] find the line managed=false and replace it with managed=true. Save and quit. Get back to LXTerminal and issue:
sudo service network-manager restart
After a short while you should see "Connection established" message above the Network Manager applet tray icon.
= Running as VMware Guest =
Install VMware tools using ESXi, VM Player or VM Workstation menu. Then copy mounted CD, extract and install tolls.
mkdir ~/vmtools
cp /media/username/* ~/vmtools/
cd ~/vmtools/
tar -xzvf ./VMwareTools-9.6.1-1378637.tar.gz
cd vmware-tools-distrib/
Run installation script with all default options
./vmware-install.pl
You need to restart X sessions before any mouse or graphic changes take effect. Invoking vm-tools:
/usr/bin/vmware-toolbox-cmd
TO enable advanced features rg guest resolution fit, drag and drop, copy/paste:
# Manually start <tt>/usr/bin/vmware-user</tt>
# Log out anf log back into your desktop session
# Restart your X session


= References =
= References =
Line 9: Line 46:
*[https://help.ubuntu.com/community/Lubuntu/Documentation/MinimalInstall#Unmanaged_Wired_Network  Lubuntu/Documentation/MinimalInstall] Network Manager section
*[https://help.ubuntu.com/community/Lubuntu/Documentation/MinimalInstall#Unmanaged_Wired_Network  Lubuntu/Documentation/MinimalInstall] Network Manager section
*[http://askubuntu.com/questions/243318/how-to-install-lubuntu-desktop-environment-and-only-the-desktop-environment How to install Lubuntu Desktop Environment and ONLY the desktop environment?]
*[http://askubuntu.com/questions/243318/how-to-install-lubuntu-desktop-environment-and-only-the-desktop-environment How to install Lubuntu Desktop Environment and ONLY the desktop environment?]
*[http://www.ubuntugeek.com/lxde-lightweight-x11-desktop-environment-for-ubuntu.html LXDE – Lightweight X11 Desktop Environment for Ubuntu]

Revision as of 16:55, 2 March 2014

This is light weight Ubuntu desktop guide for everyone who wants install minimum packages but have Graphic User Interface. The alternative choice is Lubuntu which comes pre built using [LXDE http://en.wikipedia.org/wiki/LXDE] (Lightweight X11 Desktop Environment) along with all recommended applications. The approach here is to achieve these objectives:

  • Use Ubuntu as a base system
  • LXDE as light weight desktop environment
  • Firefox, Network Manager as only necessary applications

Installing LXDE on Ubuntu

Installed lubuntu-core

sudo apt-get install lxde-core

It then had none of the extra software install. Originally I tried with --no-install-recommends but this left it too bare and seemingly with missing dependencies. After doing this I installed lxappearance and obconf to allow me to change the themes easily

sudo apt-get install lxappearance obconf

Install firefox without any recommended software as the addons are for Gnome.

sudo apt-get install firefox --no-install-recommends

Select display manager or use StartX if none available

sudo update-alternatives --config x-session-manager

Install startx if no display managers is available

sudo apt-get install xinit

Start LXDE

startx

Optional. If you have errors in xsession-errors to clear up

sudo apt-get install gtk2-engines-pixbuf

Network Manager needs configuring after bare LXDE has been installed: Unmanaged_Wired_Network. The nm-system-settings.conf is now called NetworkManager.conf as written below: Change Network Manager settings Start an LXTerminal session, then issue:

sudo vi /etc/NetworkManager/NetworkManager.conf

In section [ifupdown] find the line managed=false and replace it with managed=true. Save and quit. Get back to LXTerminal and issue:

sudo service network-manager restart

After a short while you should see "Connection established" message above the Network Manager applet tray icon.

Running as VMware Guest

Install VMware tools using ESXi, VM Player or VM Workstation menu. Then copy mounted CD, extract and install tolls.

mkdir ~/vmtools
cp /media/username/* ~/vmtools/
cd ~/vmtools/
tar -xzvf ./VMwareTools-9.6.1-1378637.tar.gz
cd vmware-tools-distrib/

Run installation script with all default options

./vmware-install.pl

You need to restart X sessions before any mouse or graphic changes take effect. Invoking vm-tools:

/usr/bin/vmware-toolbox-cmd

TO enable advanced features rg guest resolution fit, drag and drop, copy/paste:

  1. Manually start /usr/bin/vmware-user
  2. Log out anf log back into your desktop session
  3. Restart your X session

References